home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
DMAKE38C.ZIP
/
UNIX
/
COHERENT
/
STDLIB.H
< prev
next >
Wrap
C/C++ Source or Header
|
1992-01-23
|
346b
|
20 lines
#ifndef _STDLIB_INCLUDED_
#define _STDLIB_INCLUDED_
extern /*GOTO*/ _exit();
extern /*GOTO*/ exit();
extern /*GOTO*/ abort();
extern int system();
extern char *getenv();
extern char *calloc();
extern char *malloc();
extern char *realloc();
extern free();
extern int errno;
#ifndef EIO
# include <errno.h>
#endif
#endif /* _STDLIB_INCLUDED_ */