source: src/tests/stdincludes.c@ fc1ef62

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since fc1ef62 was 39c7fd0, checked in by Peter A. Buhr <pabuhr@…>, 8 years ago

add test for C11 standard include files

  • Property mode set to 100644
File size: 1.3 KB
Line 
1// -*- Mode: C++ -*-
2//
3// Cforall Version 1.0.0 Copyright (C) 2017 University of Waterloo
4//
5// The contents of this file are covered under the licence agreement in the
6// file "LICENCE" distributed with Cforall.
7//
8// stdincludes.c --
9//
10// Author : Peter A. Buhr
11// Created On : Tue Aug 29 08:26:14 2017
12// Last Modified By : Peter A. Buhr
13// Last Modified On : Tue Aug 29 08:52:11 2017
14// Update Count : 4
15//
16
17// C11 standard headers
18
19#include <assert.h>
20#include <complex.h>
21#include <ctype.h>
22#include <errno.h>
23#include <fenv.h>
24#include <float.h>
25#include <inttypes.h>
26//#include <iso646.h> // does not exist on linux
27#include <limits.h>
28#include <locale.h>
29#include <malloc.h> // extra
30#include <math.h>
31#include <setjmp.h>
32#include <signal.h>
33#include <stdalign.h>
34#include <stdarg.h>
35#include <stdatomic.h>
36#include <stdbool.h>
37#include <stddef.h>
38#include <stdint.h>
39#include <stdio.h>
40#include <stdlib.h>
41#include <stdnoreturn.h>
42#include <string.h>
43#include <tgmath.h>
44#include <time.h>
45#include <uchar.h>
46#include <unistd.h> // extra
47#include <wchar.h>
48#include <wctype.h>
49
50int main() {}
51
52// Local Variables: //
53// tab-width: 4 //
54// compile-command: "cfa stdincludes.c" //
55// End: //
Note: See TracBrowser for help on using the repository browser.