1 #if !defined(ARGS_H)
2 #define ARGS_H		1
3 
4 #if defined(__STDC__) || defined(__cplusplus) || defined(c_plusplus)
5 #include <stdlib.h>
6 #include <stddef.h>
7 #define ARGS(plist)	plist
8 #define NEW_STYLE	1
9 #define VOID		void
10 
11 #ifndef EXIT_SUCCESS
12 #define EXIT_SUCCESS	0
13 #endif
14 
15 #ifndef EXIT_FAILURE
16 #define EXIT_FAILURE	1
17 #endif
18 
19 #else
20 #define ARGS(plist)	()
21 #define EXIT_FAILURE	1
22 #define EXIT_SUCCESS	0
23 #define NEW_STYLE	0
24 #define VOID
25 #define const
26 #endif
27 
28 #endif /* ARGS_H */
29