source: src/examples/includes.c @ a61fea9a

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 a61fea9a was a61fea9a, checked in by Peter A. Buhr <pabuhr@…>, 9 years ago

enable AM_MAINTAINER_MODE, add operator ?{}, formatting

  • Property mode set to 100644
File size: 1.6 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//
9// Author           : Richard C. Bilson
10// Created On       : Wed May 27 17:56:53 2015
11// Last Modified By : Peter A. Buhr
[a61fea9a]12// Last Modified On : Wed Jun  3 23:48:26 2015
13// Update Count     : 6
[86bd7c1f]14//
15
[6c3744e]16#if 1
17//#include <aio.h>              // FAILS -- includes locale.h
18#include <aliases.h>
[42dcae7]19#include <alloca.h>
[6c3744e]20#include <ansidecl.h>
21#include <ar.h>
22//#include <argp.h>             // FAILS -- includes locale.h
23//#include <argz.h>             // FAILS -- includes locale.h
[42dcae7]24#include <assert.h>
[6c3744e]25#include <bfd.h>                // contains structure field "type"
[42dcae7]26#include <complex.h>
[6c3744e]27//#include <ctype.h>            // FAILS -- includes locale.h
[42dcae7]28#include <errno.h>
29#include <fenv.h>
30#include <float.h>
31#include <inttypes.h>
32#include <iso646.h>
33#include <limits.h>
[6c3744e]34//#include <locale.h>           // FAILS -- "no reasonable alternatives for applying ... Name: ?+? ..."
35#include <math.h>               // contains structure field "type"
[42dcae7]36#include <setjmp.h>
37#include <signal.h>
38#include <stdarg.h>
39#include <stdbool.h>
40#include <stddef.h>
41#include <stdlib.h>
42#include <stdio.h>
[6c3744e]43//#include <string.h>           // FAILS -- includes locale.h
[42dcae7]44#include <tgmath.h>
[6c3744e]45//#include <time.h>             // FAILS -- includes locale.h
[42dcae7]46#include <unistd.h>
[6c3744e]47//#include <wchar.h>            // FAILS -- includes locale.h
48//#include <wctype.h>           // FAILS -- includes locale.h
[42dcae7]49#include <curses.h>
[17cd4eb]50#else
[a61fea9a]51#include <curses.h>
[17cd4eb]52#endif // 0
[42dcae7]53
54// Local Variables: //
[86bd7c1f]55// tab-width: 4 //
56// compile-command: "cfa includes.c" //
[42dcae7]57// End: //
Note: See TracBrowser for help on using the repository browser.