]> pd.if.org Git - pdclib/blob - functions/_PDCLIB/multiinclude.c
Initial checkin.
[pdclib] / functions / _PDCLIB / multiinclude.c
1 /* $Id$ */
2
3 /* Release $Name$ */
4
5 /* multiinclude
6
7    This file is part of the Public Domain C Library (PDCLib).
8    Permission is granted to use, modify, and / or redistribute at will.
9 */
10
11 /* -------------------------------------------------------------------------- */
12
13 /* This is a dummy file that tests the standard headers for idempotency (i.e.,
14    checks that nothing bad happens if you include them more than once).
15 */
16
17 #include <complex.h>
18 #include <ctype.h>
19 #include <errno.h>
20 #include <fenv.h>
21 #include <float.h>
22 #include <inttypes.h>
23 #include <iso646.h>
24 #include <limits.h>
25 #include <locale.h>
26 #include <math.h>
27 #include <setjmp.h>
28 #include <signal.h>
29 #include <stdarg.h>
30 #include <stdbool.h>
31 #include <stddef.h>
32 #include <stdint.h>
33 #include <stdio.h>
34 #include <stdlib.h>
35 #include <string.h>
36 #include <tgmath.h>
37 #include <time.h>
38 /*#include <wchar.h>*/ /* glibc <wchar.h> relies on <stdio.h> being glibc, too. */
39 #include <wctype.h>
40
41 #include <complex.h>
42 #include <ctype.h>
43 #include <errno.h>
44 #include <fenv.h>
45 #include <float.h>
46 #include <inttypes.h>
47 #include <iso646.h>
48 #include <limits.h>
49 #include <locale.h>
50 #include <math.h>
51 #include <setjmp.h>
52 #include <signal.h>
53 #include <stdarg.h>
54 #include <stdbool.h>
55 #include <stddef.h>
56 #include <stdint.h>
57 #include <stdio.h>
58 #include <stdlib.h>
59 #include <string.h>
60 #include <tgmath.h>
61 #include <time.h>
62 /*#include <wchar.h>*/ /* glibc <wchar.h> relies on <stdio.h> being glibc, too. */
63 #include <wctype.h>
64
65 #ifdef TEST
66
67 int main()
68 {
69     return 0;
70 }
71
72 #endif