source: tests/include/includes.cfa @ 50d8d4d

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 50d8d4d was e5e5af9, checked in by Peter A. Buhr <pabuhr@…>, 3 years ago

add expat.h because attribute-location problem is fixed

  • Property mode set to 100644
File size: 3.5 KB
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// includes.cfa --
8//
9// Author           : Peter A. Buhr
10// Created On       : Wed May 27 17:56:53 2015
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Mon Mar 15 14:13:01 2021
13// Update Count     : 747
14//
15
16#ifdef __CFA__
17extern "C" {
18#endif // __CFA__
19
20//#define _GNU_SOURCE
21#include <aio.h>
22#include <aliases.h>
23#include <alloca.h>
24#include <ar.h>
25#include <argp.h>
26#include <argz.h>
27#include <assert.h>
28#include <byteswap.h>
29#include <complex.h>
30#include <cpio.h>
31#include <crypt.h>
32#include <ctype.h>
33#include <curses.h>
34#include <dirent.h>
35#include <dlfcn.h>
36#include <elf.h>
37#include <endian.h>
38#include <envz.h>
39#include <err.h>
40#include <errno.h>
41#include <error.h>
42#include <eti.h>
43#include <execinfo.h>
44#include <expat.h>
45#include <expat_external.h>
46#include <fcntl.h>
47#include <features.h>
48#include <fenv.h>
49#include <fmtmsg.h>
50#include <fnmatch.h>
51#include <form.h>
52#include <fstab.h>
53#include <fts.h>
54#include <ftw.h>
55#include <sys/types.h>
56//#include <gawkapi.h>                                                                  // CFA bug #240 nested anonymous enum fails
57#include <gconv.h>
58#include <getopt.h>
59#include <glob.h>
60#include <gnumake.h>
61#include <gnu-versions.h>
62#include <grp.h>
63#include <gshadow.h>
64#include <iconv.h>
65#include <ifaddrs.h>
66#include <inttypes.h>
67#include <langinfo.h>
68#include <lastlog.h>
69#include <libgen.h>
70#include <libintl.h>
71#include <limits.h>
72//#include <link.h>                                                                             // CFA bug #240 nested anonymous enum fails
73#include <locale.h>
74#include <ltdl.h>
75//#include <malloc.h>                                                                   // cannot include in extern "C" because of CFA #include_next
76#include <math.h>
77#include <mcheck.h>
78#include <memory.h>
79#include <menu.h>
80#include <mntent.h>
81#include <monetary.h>
82#include <mqueue.h>
83#include <ncurses_dll.h>
84#include <netdb.h>
85#include <nl_types.h>
86#include <nss.h>
87#include <obstack.h>
88#include <panel.h>
89#include <paths.h>
90#include <poll.h>
91#include <printf.h>
92#include <pthread.h>
93#include <pty.h>
94#include <pwd.h>
95#include <regex.h>
96#include <resolv.h>
97#include <re_comp.h>
98#include <sched.h>
99#include <search.h>
100#include <semaphore.h>
101#include <setjmp.h>
102#include <sgtty.h>
103#include <shadow.h>
104#include <signal.h>
105#include <spawn.h>
106#include <stab.h>
107#include <stdc-predef.h>
108#include <stdint.h>
109#include <stdio.h>
110#include <stdio_ext.h>
111#include <stdlib.h>
112#include <string.h>
113#include <strings.h>
114#include <sudo_plugin.h>
115#include <syscall.h>
116#include <sysexits.h>
117#include <syslog.h>
118#include <tar.h>
119#include <term.h>
120#include <termcap.h>
121#include <termio.h>
122#include <termios.h>
123// #include <term_entry.h>                                                              // conflicts with search.h on some machines
124#include <tgmath.h>
125//#include <threads.h>                                                                  // does not exist
126#include <thread_db.h>
127#include <time.h>
128#include <ttyent.h>
129#include <uchar.h>
130#include <ucontext.h>
131#include <ulimit.h>
132#include <unctrl.h>
133#include <unistd.h>
134#include <utime.h>
135#include <utmp.h>
136#include <utmpx.h>
137#include <values.h>
138#pragma GCC diagnostic push
139#pragma GCC diagnostic ignored "-Wattributes"
140#include <wait.h>
141#pragma GCC diagnostic pop
142#include <wchar.h>
143#include <wctype.h>
144#include <wordexp.h>
145
146#if 0
147#endif // 0
148
149#ifdef __CFA__
150} // extern "C"
151#endif // __CFA__
152
153int main( int argc, char const *argv[] ) {
154        #pragma message( "Compiled" )                                           // force non-empty .expect file
155}
156
157// Local Variables: //
158// tab-width: 4 //
159// compile-command: "cfa includes.cfa" //
160// End: //
Note: See TracBrowser for help on using the repository browser.