1 /* RCS $Id: stdlib.h,v 1.1.1.1 2000-09-22 15:33:36 hr Exp $
7 -- Specially needed pieces of interface to the standard C lib.
10 -- Dennis Vadura, dvadura@dmake.wticorp.com
13 -- http://dmake.wticorp.com/
16 -- Copyright (c) 1996,1997 by WTI Corp. All rights reserved.
18 -- This program is NOT free software; you can redistribute it and/or
19 -- modify it under the terms of the Software License Agreement Provided
20 -- in the file <distribution-root>/readme/license.txt.
23 -- Use cvs log to obtain detailed change logs.
27 #ifndef _STDLIB_INCLUDED_
28 #define _STDLIB_INCLUDED_
30 extern /*GOTO*/ _exit();
31 extern /*GOTO*/ exit();
32 extern /*GOTO*/ abort();
34 extern char *getenv();
35 extern char *calloc();
36 extern char *malloc();
37 extern char *realloc();
40 /* The AIX compiler dies on illegal redefinition of free */
50 #endif /* _STDLIB_INCLUDED_ */