merge the formfield patch from ooo-build
[ooovba.git] / dmake / qssl / stdlib.h
blobe41861c6bc15bb3ffb9e6ec029fc2eed3b28b006
1 /* RCS $Id: stdlib.h,v 1.1.1.1 2000-09-22 15:33:30 hr Exp $
2 --
3 -- SYNOPSIS
4 -- stdlib interface
5 --
6 -- DESCRIPTION
7 -- Specially needed pieces of interface to the standard C lib.
8 --
9 -- AUTHOR
10 -- Dennis Vadura, dvadura@dmake.wticorp.com
12 -- WWW
13 -- http://dmake.wticorp.com/
15 -- COPYRIGHT
16 -- Copyright (c) 1996,1997 by WTI Corp. All rights reserved.
17 --
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.
22 -- LOG
23 -- Use cvs log to obtain detailed change logs.
25 #ifndef _STDLIB_INCLUDED_
26 #define _STDLIB_INCLUDED_
28 extern /*GOTO*/ _exit();
29 extern /*GOTO*/ exit();
30 extern /*GOTO*/ abort();
31 extern int system();
32 extern char *getenv();
33 extern char *calloc();
34 extern char *malloc();
35 extern char *realloc();
37 #ifndef _AIX
38 /* The AIX compiler dies on illegal redefinition of free */
39 extern free();
40 #endif
42 extern int errno;
44 #ifndef EIO
45 # include <errno.h>
46 #endif
48 #endif /* _STDLIB_INCLUDED_ */