dmake/dmake/unix/xenix/stdlib.h
2017-05-14 19:59:26 -05:00

25 lines
428 B
C

#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();
#ifndef _AIX
/* The AIX compiler dies on illegal redefinition of free */
extern free();
#endif
extern int errno;
#ifndef EIO
# include <errno.h>
#endif
#endif /* _STDLIB_INCLUDED_ */