source: src/examples/includes.c @ f9cebb5

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

changes for switch and choose statements

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