]> git.saurik.com Git - bison.git/blob - src/system.h
Let --trace have arguments.
[bison.git] / src / system.h
1 /* system-dependent definitions for Bison.
2 Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
7 any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
17
18 #ifndef BISON_SYSTEM_H
19 #define BISON_SYSTEM_H
20
21 #ifdef HAVE_CONFIG_H
22 # include <config.h>
23 #endif
24
25 #include <stdio.h>
26
27 #include <assert.h>
28
29 #if HAVE_STDLIB_H
30 # include <stdlib.h>
31 #endif
32
33 /* The following test is to work around the gross typo in
34 systems like Sony NEWS-OS Release 4.0C, whereby EXIT_FAILURE
35 is defined to 0, not 1. */
36 #if !EXIT_FAILURE
37 # undef EXIT_FAILURE
38 # define EXIT_FAILURE 1
39 #endif
40
41 #ifndef EXIT_SUCCESS
42 # define EXIT_SUCCESS 0
43 #endif
44
45 #if HAVE_UNISTD_H
46 # include <unistd.h>
47 #endif
48
49 #if defined(STDC_HEADERS) || defined(HAVE_STRING_H)
50 # include <string.h>
51 /* An ANSI string.h and pre-ANSI memory.h might conflict. */
52 # if !defined(STDC_HEADERS) && defined(HAVE_MEMORY_H)
53 # include <memory.h>
54 # endif /* not STDC_HEADERS and HAVE_MEMORY_H */
55 #else /* not STDC_HEADERS and not HAVE_STRING_H */
56 # include <strings.h>
57 /* memory.h and strings.h conflict on some systems. */
58 #endif /* not STDC_HEADERS and not HAVE_STRING_H */
59
60 #if defined(STDC_HEADERS) || defined(HAVE_CTYPE_H)
61 # include <ctype.h>
62 #endif
63
64 #include <errno.h>
65 #ifndef errno
66 extern int errno;
67 #endif
68
69 /* AIX requires this to be the first thing in the file. */
70 #ifndef __GNUC__
71 # if HAVE_ALLOCA_H
72 # include <alloca.h>
73 # else
74 # ifdef _AIX
75 #pragma alloca
76 # else
77 # ifndef alloca /* predefined by HP cc +Olibcalls */
78 char *alloca ();
79 # endif
80 # endif
81 # endif
82 #endif
83
84 #ifndef PARAMS
85 # if defined PROTOTYPES || defined __STDC__
86 # define PARAMS(Args) Args
87 # else
88 # define PARAMS(Args) ()
89 # endif
90 #endif
91
92 #if HAVE_LIMITS_H
93 # include <limits.h>
94 #endif
95 #ifndef SHRT_MIN
96 # define SHRT_MIN (-32768)
97 #endif
98 #ifndef SHRT_MAX
99 # define SHRT_MAX 32767
100 #endif
101
102 # include "xalloc.h"
103
104 /* From xstrndup.c. */
105 char *xstrndup PARAMS ((const char *s, size_t n));
106
107 /* Finding `mallinfo' where available. */
108 #if HAVE_MALLOC_H
109 # include <malloc.h>
110 #endif
111
112
113 /* Find `times' where available. */
114 #if HAVE_SYS_TIMES_H
115 # include <sys/times.h>
116 #endif
117
118
119 /*---------------------.
120 | Missing prototypes. |
121 `---------------------*/
122
123 #if !HAVE_DECL_STPCPY
124 char *stpcpy PARAMS ((char *dest, const char *src));
125 #endif
126
127 #if !HAVE_DECL_STRCHR
128 char *strchr(const char *s, int c);
129 #endif
130
131 #if !HAVE_DECL_STRSPN
132 size_t strspn(const char *s, const char *accept);
133 #endif
134
135 #if !HAVE_DECL_STRNLEN
136 size_t strnlen PARAMS ((const char *s, size_t maxlen));
137 #endif
138
139 #if !HAVE_DECL_MEMCHR
140 void *memchr PARAMS ((const void *s, int c, size_t n));
141 #endif
142
143 #if !HAVE_DECL_MEMRCHR
144 void *memrchr PARAMS ((const void *s, int c, size_t n));
145 #endif
146
147
148
149 /*-----------------.
150 | GCC extensions. |
151 `-----------------*/
152
153 #ifndef __attribute__
154 /* This feature is available in gcc versions 2.5 and later. */
155 # if !defined (__GNUC__) || __GNUC__ < 2 || \
156 (__GNUC__ == 2 && __GNUC_MINOR__ < 5) || __STRICT_ANSI__
157 # define __attribute__(Spec) /* empty */
158 # endif
159 #endif
160
161 /* The __-protected variants of `format' and `printf' attributes
162 are accepted by gcc versions 2.6.4 (effectively 2.7) and later. */
163 #if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7)
164 # define __format__ format
165 # define __printf__ printf
166 #endif
167
168 #ifndef ATTRIBUTE_NORETURN
169 # define ATTRIBUTE_NORETURN __attribute__ ((__noreturn__))
170 #endif
171
172 #ifndef ATTRIBUTE_UNUSED
173 # define ATTRIBUTE_UNUSED __attribute__ ((__unused__))
174 #endif
175
176 /*------.
177 | NLS. |
178 `------*/
179
180 #ifdef HAVE_LOCALE_H
181 # include <locale.h>
182 #endif
183 #ifndef HAVE_SETLOCALE
184 # define setlocale(Category, Locale)
185 #endif
186
187 #include "gettext.h"
188 #define _(Msgid) gettext (Msgid)
189 #define N_(Msgid) (Msgid)
190
191
192 /*-------------------------------.
193 | Fix broken compilation flags. |
194 `-------------------------------*/
195
196 #ifndef LOCALEDIR
197 # define LOCALEDIR "/usr/local/share/locale"
198 #endif
199
200
201 /*-----------.
202 | Booleans. |
203 `-----------*/
204
205 #ifndef TRUE
206 # define TRUE (1)
207 # define FALSE (0)
208 #endif
209 typedef int bool;
210
211
212 /*-----------.
213 | Obstacks. |
214 `-----------*/
215
216 # define obstack_chunk_alloc xmalloc
217 # define obstack_chunk_free free
218 # include "obstack.h"
219
220 #define obstack_sgrow(Obs, Str) \
221 obstack_grow (Obs, Str, strlen (Str))
222
223 #define obstack_fgrow1(Obs, Format, Arg1) \
224 do { \
225 char buf[4096]; \
226 sprintf (buf, Format, Arg1); \
227 obstack_grow (Obs, buf, strlen (buf)); \
228 } while (0)
229
230 #define obstack_fgrow2(Obs, Format, Arg1, Arg2) \
231 do { \
232 char buf[4096]; \
233 sprintf (buf, Format, Arg1, Arg2); \
234 obstack_grow (Obs, buf, strlen (buf)); \
235 } while (0)
236
237 #define obstack_fgrow3(Obs, Format, Arg1, Arg2, Arg3) \
238 do { \
239 char buf[4096]; \
240 sprintf (buf, Format, Arg1, Arg2, Arg3); \
241 obstack_grow (Obs, buf, strlen (buf)); \
242 } while (0)
243
244 #define obstack_fgrow4(Obs, Format, Arg1, Arg2, Arg3, Arg4) \
245 do { \
246 char buf[4096]; \
247 sprintf (buf, Format, Arg1, Arg2, Arg3, Arg4); \
248 obstack_grow (Obs, buf, strlen (buf)); \
249 } while (0)
250
251
252
253 /*-----------------------------------------.
254 | Extensions to use for the output files. |
255 `-----------------------------------------*/
256
257 #ifdef VMS
258 /* VMS. */
259 # define EXT_TAB "_tab"
260 # define EXT_OUTPUT ".output"
261 #else /* ! VMS */
262 # ifdef MSDOS
263 /* MS DOS. */
264 # define EXT_TAB "_tab"
265 # define EXT_OUTPUT ".out"
266 # else /* ! MSDOS */
267 /* Standard. */
268 # define EXT_TAB ".tab"
269 # define EXT_OUTPUT ".output"
270 # endif /* ! MSDOS */
271 #endif /* ! VMS */
272
273 #ifndef DEFAULT_TMPDIR
274 # define DEFAULT_TMPDIR "/tmp"
275 #endif
276
277
278
279 /*---------------------.
280 | Free a linked list. |
281 `---------------------*/
282
283 #define LIST_FREE(Type, List) \
284 do { \
285 Type *_node, *_next; \
286 for (_node = List; _node; _node = _next) \
287 { \
288 _next = _node->next; \
289 XFREE (_node); \
290 } \
291 } while (0)
292
293
294 /*---------------------------------------------.
295 | Debugging memory allocation (must be last). |
296 `---------------------------------------------*/
297
298 # if WITH_DMALLOC
299 # define DMALLOC_FUNC_CHECK
300 # include <dmalloc.h>
301 # endif /* WITH_DMALLOC */
302
303 #endif /* ! BISON_SYSTEM_H */