File: xstdlib.h

package info (click to toggle)
robotour 3.1.1-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,596 kB
  • ctags: 2,972
  • sloc: cpp: 17,705; sh: 3,060; ansic: 2,778; makefile: 144
file content (18 lines) | stat: -rwxr-xr-x 357 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* xstdlib.h: has standard library function prototypes */
#ifndef XSTDLIB_H
#define XSTDLIB_H

#include <sys/types.h>

/* Prototypes for standard library functions */
extern char *calloc();
extern void  exit();
extern char *getenv();
extern char *index();
extern char *malloc();
extern char *strchr();
extern char *strrchr();
#define remove unlink


#endif