1 /* The <ansi.h> header attempts to decide whether the compiler has enough
2 * conformance to Standard C for Minix to take advantage of. If so, the
3 * symbol _ANSI is defined (as 31459). Otherwise _ANSI is not defined
4 * here, but it may be defined by applications that want to bend the rules.
5 * The magic number in the definition is to inhibit unnecessary bending
6 * of the rules. (For consistency with the new '#ifdef _ANSI" tests in
7 * the headers, _ANSI should really be defined as nothing, but that would
8 * break many library routines that use "#if _ANSI".)
10 * If _ANSI ends up being defined, a macro
12 * _PROTOTYPE(function, params)
14 * is defined. This macro expands in different ways, generating either
15 * ANSI Standard C prototypes or old-style K&R (Kernighan & Ritchie)
16 * prototypes, as needed. Finally, some programs use _CONST, _VOIDSTAR etc
17 * in such a way that they are portable over both ANSI and K&R compilers.
18 * The appropriate macros are defined here.
25 #define _ANSI 31459 /* compiler claims full ANSI conformance */
29 #define _ANSI 31459 /* gcc conforms enough even in non-ANSI mode */
34 /* Keep everything for ANSI prototypes. */
35 #define _PROTOTYPE(function, params) function params
36 #define _ARGS(params) params
38 #define _VOIDSTAR void *
41 #define _VOLATILE volatile
46 /* Throw away the parameters for K&R prototypes. */
47 #define _PROTOTYPE(function, params) function()
48 #define _ARGS(params) ()
50 #define _VOIDSTAR void *
58 /* This should be defined as restrict when a C99 compiler is used. */
61 /* Setting any of _MINIX, _POSIX_C_SOURCE or _POSIX2_SOURCE implies
62 * _POSIX_SOURCE. (Seems wrong to put this here in ANSI space.)
64 #if defined(_MINIX) || _POSIX_C_SOURCE > 0 || defined(_POSIX2_SOURCE)
66 #define _POSIX_SOURCE 1