source: src/examples/includes.c @ 102b0cd

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 102b0cd was 7937abf, checked in by Peter A. Buhr <pabuhr@…>, 8 years ago

update examples with new keywords, more formatting changes in documentation

  • 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
[7937abf]12// Last Modified On : Wed Apr 13 22:30:02 2016
13// Update Count     : 370
[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
[7937abf]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>
[784deab]33#include <argz.h>
[7937abf]34//#include <assert.h>
[784deab]35#include <bfd.h>
[7937abf]36#if 0
[784deab]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>
[b63e376]46#include <demangle.h>
47#include <dialog.h>
[784deab]48#include <dirent.h>
49#include <dis-asm.h>
50#include <dlfcn.h>
51#include <dlg_colors.h>
52#include <dlg_config.h>
53#include <dlg_keys.h>
54#include <elf.h>
55#include <endian.h>
56#include <envz.h>
57#include <err.h>
[42dcae7]58#include <errno.h>
[b63e376]59#include <error.h>
[784deab]60#include <eti.h>
[b63e376]61#include <evdns.h>
[784deab]62#include <event.h>
[b63e376]63#include <evhttp.h>
[7937abf]64#endif
[b63e376]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
[7937abf]131#include <bfd.h>
132//#include <error.h>
[784deab]133
[17cd4eb]134#endif // 0
[42dcae7]135
[784deab]136#ifdef __CFA__
137} // extern "C"
138#endif // __CFA__
139
[42dcae7]140// Local Variables: //
[86bd7c1f]141// tab-width: 4 //
142// compile-command: "cfa includes.c" //
[42dcae7]143// End: //
Note: See TracBrowser for help on using the repository browser.