home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
dmake40.zip
/
unix
/
coherent
/
stdlib.h
< prev
next >
Wrap
C/C++ Source or Header
|
1994-10-23
|
365b
|
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_ */