]> gcc.gnu.org Git - gcc.git/blame - gcc/tsystem.h
builtins.def: Add ctype builtins.
[gcc.git] / gcc / tsystem.h
CommitLineData
2e39bdbe
KG
1/* Get common system includes and various definitions and declarations
2 based on target macros.
16b97540 3 Copyright (C) 2000, 2001 Free Software Foundation, Inc.
2e39bdbe 4
1322177d 5This file is part of GCC.
2e39bdbe 6
1322177d
LB
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9Software Foundation; either version 2, or (at your option) any later
10version.
2e39bdbe 11
1322177d
LB
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
2e39bdbe
KG
16
17You should have received a copy of the GNU General Public License
1322177d
LB
18along with GCC; see the file COPYING. If not, write to the Free
19Software Foundation, 59 Temple Place - Suite 330, Boston, MA
2002111-1307, USA. */
2e39bdbe 21
77c915d8
DT
22/* As a special exception, if you link this library with other files,
23 some of which are compiled with GCC, to produce an executable,
24 this library does not by itself cause the resulting executable
25 to be covered by the GNU General Public License.
26 This exception does not however invalidate any other reasons why
27 the executable file might be covered by the GNU General Public License. */
28
88657302
RH
29#ifndef GCC_TSYSTEM_H
30#define GCC_TSYSTEM_H
2e39bdbe 31
16b97540
KG
32/* System headers (e.g. stdio.h, stdlib.h, unistd.h) sometimes
33 indirectly include getopt.h. Our -I flags will cause gcc's gnu
34 getopt.h to be included, not the platform's copy. In the default
35 case, gnu getopt.h will provide us with a no-argument prototype
36 which will generate -Wstrict-prototypes warnings. None of the
37 target files actually use getopt, so it is safe to tell gnu
38 getopt.h we never need this prototype. */
39#ifndef HAVE_DECL_GETOPT
40#define HAVE_DECL_GETOPT 1
41#endif
42
15e5ad76 43/* GCC supplies these headers. */
2e39bdbe 44#include <stddef.h>
15e5ad76 45#include <float.h>
2e39bdbe
KG
46
47#ifdef inhibit_libc
48
49#ifndef malloc
50extern void *malloc (size_t);
51#endif
52
53#ifndef free
54extern void free (void *);
55#endif
56
57#ifndef atexit
58extern int atexit (void (*)(void));
59#endif
60
7e7de68b
DE
61#ifndef abort
62extern void abort (void) __attribute__ ((__noreturn__));
63#endif
64
488c98d8
KH
65#ifndef strlen
66extern size_t strlen (const char *);
67#endif
68
2e39bdbe
KG
69#else /* ! inhibit_libc */
70/* We disable this when inhibit_libc, so that gcc can still be built without
71 needing header files first. */
72/* ??? This is not a good solution, since prototypes may be required in
73 some cases for correct code. */
74
2ba84f36 75/* GCC supplies this header. */
2e39bdbe
KG
76#include <stdarg.h>
77
2ba84f36 78/* All systems have this header. */
2e39bdbe
KG
79#include <stdio.h>
80
2ba84f36 81/* All systems have this header. */
2e39bdbe
KG
82#include <sys/types.h>
83
2ba84f36 84/* All systems have this header. */
2e39bdbe
KG
85#include <errno.h>
86
87#ifndef errno
88extern int errno;
89#endif
90
2ba84f36 91/* GCC (fixproto) guarantees these system headers exist. */
cbbf876b 92#include <string.h>
2e39bdbe
KG
93#include <stdlib.h>
94#include <unistd.h>
95
2ba84f36 96/* GCC supplies this header. */
2e39bdbe
KG
97#include <limits.h>
98
cbbf876b 99/* GCC (fixproto) guarantees this system headers exists. */
2e39bdbe 100#include <time.h>
2e39bdbe
KG
101
102#endif /* inhibit_libc */
103
104/* Define a generic NULL if one hasn't already been defined. */
105#ifndef NULL
106#define NULL 0
107#endif
108
88657302 109#endif /* ! GCC_TSYSTEM_H */
This page took 1.527632 seconds and 5 git commands to generate.