1 // cstdlib standard header
2 #pragma once
3 #ifndef _CSTDLIB_
4 #define _CSTDLIB_
5 #include <yvals.h>
6
7 #ifdef _STD_USING
8  #undef _STD_USING
9   #include <stdlib.h>
10  #define _STD_USING
11
12 #else /* _STD_USING */
13  #include <stdlib.h>
14 #endif /* _STD_USING */
15
16 #ifndef RC_INVOKED
17  #if _GLOBAL_USING
18
19 _STD_BEGIN
20
21 using ::size_t; using ::div_t; using ::ldiv_t;
22
23 using ::abort; using ::abs; using ::atexit;
24 using ::atof; using ::atoi; using ::atol;
25 using ::bsearch; using ::calloc; using ::div;
26 using ::exit; using ::free; using ::getenv;
Lines 27 ... 36 are skipped.
37 #endif /* RC_INVOKED */
38
39 #endif /* _CSTDLIB_ */
40
41 /*
42  * Copyright (c) 1992-2007 by P.J. Plauger.  ALL RIGHTS RESERVED.
43  * Consult your license regarding permissions and restrictions.
44  V5.03:0009 */
45