source: src/examples/includes.c @ 9421588a

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 9421588a was b63e376, checked in by Peter A. Buhr <pabuhr@…>, 8 years ago

update refrat with new keywords, update examples, update separators for quoted strings

  • Property mode set to 100644
File size: 2.8 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.c --
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 : Wed Mar  2 23:28:02 2016
13// Update Count     : 328
14//
15
16// ***********************************************
17// USE -std=c99 WITH gxx TO GET SAME OUTPUT AS cfa
18// ***********************************************
19
20#ifdef __CFA__
21extern "C" {
22#endif // __CFA__
23
24#if 1
25#define _GNU_SOURCE
26#include <aio.h>
27#include <a.out.h>
28#include <aliases.h>
29#include <alloca.h>
30#include <ansidecl.h>
31#include <ar.h>
32#include <argp.h>
33#include <argz.h>
34#include <assert.h>
35#include <bfd.h>
36#include <bfdlink.h>
37#include <byteswap.h>
38#include <cblas.h>
39#include <cblas_f77.h>
40#include <complex.h>
41#include <cpio.h>
42#include <crypt.h>
43#include <ctype.h>
44#include <curses.h>
45#include <demangle.h>
46#include <dialog.h>
47#include <dirent.h>
48#include <dis-asm.h>
49#include <dlfcn.h>
50#include <dlg_colors.h>
51#include <dlg_config.h>
52#include <dlg_keys.h>
53#include <elf.h>
54#include <endian.h>
55#include <envz.h>
56#include <err.h>
57#include <errno.h>
58#if 0
59#include <error.h>
60#endif
61#include <eti.h>
62#include <evdns.h>
63#include <event.h>
64#include <evhttp.h>
65#if 0
66#include <evrpc.h>
67#include <evutil.h>
68#include <execinfo.h>
69#include <expat.h>
70#include <expat_config.h>
71#include <expat_external.h>
72#include <fcntl.h>
73#include <features.h>
74#include <fenv.h>
75#include <float.h>
76#include <fmtmsg.h>
77#include <fnmatch.h>
78#include <form.h>
79#include <fpu_control.h>
80#include <fstab.h>
81//#include <ft2build.h>
82#include <fts.h>
83#include <ftw.h>
84#include <gconv.h>
85//#include <gcrypt.h>
86//#include <gcrypt-module.h>
87#include <getopt.h>
88//#include <gettext-po.h>
89#include <glob.h>
90//#include <gmp.h>                      // infinite loop
91////#include <gmpxx.h>
92//#include <gmp-x86_64.h>
93#include <gnu-versions.h>
94//#include <gpg-error.h>
95#include <grp.h>
96#include <gshadow.h>
97#include <iconv.h>
98#include <idna.h>
99#include <idn-free.h>
100#include <idn-int.h>
101#include <ieee754.h>
102#include <ifaddrs.h>
103#include <inttypes.h>
104#include <iso646.h>
105#include <jerror.h>
106//#include <jmorecfg.h>
107//#include <jpegint.h>
108//#include <jpeglib.h>
109#include <limits.h>
110#include <locale.h>
111#include <math.h>
112#include <ncurses.h>
113#include <setjmp.h>
114#include <signal.h>
115#include <stdarg.h>
116#include <stdbool.h>
117#include <stddef.h>
118#include <stdlib.h>
119#include <stdio.h>
120#include <string.h>
121#include <tgmath.h>
122#include <time.h>
123#include <unistd.h>
124#include <wchar.h>
125#include <wctype.h>
126#endif // 0
127
128#else
129
130//#define _GNU_SOURCE
131#include <error.h>
132
133#endif // 0
134
135#ifdef __CFA__
136} // extern "C"
137#endif // __CFA__
138
139// Local Variables: //
140// tab-width: 4 //
141// compile-command: "cfa includes.c" //
142// End: //
Note: See TracBrowser for help on using the repository browser.