source: src/examples/includes.c @ 94980502

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newstringwith_gc
Last change on this file since 94980502 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
RevLine 
[86bd7c1f]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//
[784deab]9// Author           : Peter A. Buhr
[86bd7c1f]10// Created On       : Wed May 27 17:56:53 2015
11// Last Modified By : Peter A. Buhr
[b63e376]12// Last Modified On : Wed Mar  2 23:28:02 2016
13// Update Count     : 328
[86bd7c1f]14//
15
[784deab]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>
[6c3744e]28#include <aliases.h>
[42dcae7]29#include <alloca.h>
[6c3744e]30#include <ansidecl.h>
31#include <ar.h>
[784deab]32#include <argp.h>
33#include <argz.h>
[42dcae7]34#include <assert.h>
[784deab]35#include <bfd.h>
36#include <bfdlink.h>
37#include <byteswap.h>
38#include <cblas.h>
39#include <cblas_f77.h>
[42dcae7]40#include <complex.h>
[784deab]41#include <cpio.h>
42#include <crypt.h>
43#include <ctype.h>
44#include <curses.h>
[b63e376]45#include <demangle.h>
46#include <dialog.h>
[784deab]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>
[42dcae7]57#include <errno.h>
[784deab]58#if 0
[b63e376]59#include <error.h>
60#endif
[784deab]61#include <eti.h>
[b63e376]62#include <evdns.h>
[784deab]63#include <event.h>
[b63e376]64#include <evhttp.h>
65#if 0
[784deab]66#include <evrpc.h>
67#include <evutil.h>
68#include <execinfo.h>
[b63e376]69#include <expat.h>
[784deab]70#include <expat_config.h>
71#include <expat_external.h>
72#include <fcntl.h>
73#include <features.h>
[42dcae7]74#include <fenv.h>
75#include <float.h>
[784deab]76#include <fmtmsg.h>
77#include <fnmatch.h>
[b63e376]78#include <form.h>
[784deab]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>
[b63e376]85//#include <gcrypt.h>
[784deab]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>
[42dcae7]103#include <inttypes.h>
104#include <iso646.h>
[784deab]105#include <jerror.h>
106//#include <jmorecfg.h>
107//#include <jpegint.h>
108//#include <jpeglib.h>
[42dcae7]109#include <limits.h>
[784deab]110#include <locale.h>
[b63e376]111#include <math.h>
[784deab]112#include <ncurses.h>
[42dcae7]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>
[784deab]120#include <string.h>
[42dcae7]121#include <tgmath.h>
[784deab]122#include <time.h>
[42dcae7]123#include <unistd.h>
[784deab]124#include <wchar.h>
125#include <wctype.h>
126#endif // 0
127
[17cd4eb]128#else
[784deab]129
130//#define _GNU_SOURCE
131#include <error.h>
132
[17cd4eb]133#endif // 0
[42dcae7]134
[784deab]135#ifdef __CFA__
136} // extern "C"
137#endif // __CFA__
138
[42dcae7]139// Local Variables: //
[86bd7c1f]140// tab-width: 4 //
141// compile-command: "cfa includes.c" //
[42dcae7]142// End: //
Note: See TracBrowser for help on using the repository browser.