]> git.saurik.com Git - bison.git/blame - src/system.h
(symbol_user_token_number_set, symbol_make_alias, symbol_pack):
[bison.git] / src / system.h
CommitLineData
a0f6b076 1/* system-dependent definitions for Bison.
04c5cba2 2 Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
a0f6b076
AD
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
d968a24b
JT
18#ifndef BISON_SYSTEM_H
19#define BISON_SYSTEM_H
20
56100c60 21#if HAVE_CONFIG_H
d968a24b
JT
22# include <config.h>
23#endif
24
04c5cba2
PE
25/* AIX requires this to be the first thing in the file. */
26#ifdef __GNUC__
27# define alloca(Size) __builtin_alloca (Size)
28#else
29# if HAVE_ALLOCA_H
30# include <alloca.h>
31# else
32# ifdef _AIX
33 #pragma alloca
34# else
35# ifndef alloca /* predefined by HP cc +Olibcalls */
36char *alloca ();
37# endif
38# endif
39# endif
40#endif
41
ceed8467
AD
42#include <stdio.h>
43
340ef489
AD
44#include <assert.h>
45
27b0ffea
AD
46#if HAVE_SYS_TYPES_H
47# include <sys/types.h>
48#endif
49
499daa50 50#if HAVE_STDLIB_H
a0f6b076 51# include <stdlib.h>
5fcfb6e7
RS
52#endif
53
0f37a994
AD
54/* The following test is to work around the gross typo in
55 systems like Sony NEWS-OS Release 4.0C, whereby EXIT_FAILURE
56 is defined to 0, not 1. */
57#if !EXIT_FAILURE
58# undef EXIT_FAILURE
59# define EXIT_FAILURE 1
60#endif
61
62#ifndef EXIT_SUCCESS
63# define EXIT_SUCCESS 0
64#endif
65
499daa50 66#if HAVE_UNISTD_H
a0f6b076 67# include <unistd.h>
7bb4d914
JT
68#endif
69
5fcfb6e7 70#if defined(STDC_HEADERS) || defined(HAVE_STRING_H)
a0f6b076 71# include <string.h>
5fcfb6e7 72/* An ANSI string.h and pre-ANSI memory.h might conflict. */
a0f6b076
AD
73# if !defined(STDC_HEADERS) && defined(HAVE_MEMORY_H)
74# include <memory.h>
75# endif /* not STDC_HEADERS and HAVE_MEMORY_H */
5fcfb6e7 76#else /* not STDC_HEADERS and not HAVE_STRING_H */
a0f6b076 77# include <strings.h>
5fcfb6e7
RS
78/* memory.h and strings.h conflict on some systems. */
79#endif /* not STDC_HEADERS and not HAVE_STRING_H */
f2d78a99 80
a0f6b076 81#include <errno.h>
930393cf 82#include <limits.h>
62a3e4f0 83
342b8b6e 84# include "xalloc.h"
b77b9ee0 85
a4b36db4 86/* From xstrndup.c. */
930393cf 87char *xstrndup (const char *s, size_t n);
a4b36db4 88
273a74fa 89
1509d42f
AD
90/*----------------.
91| Using timevar. |
92`----------------*/
93
94#include "timevar.h"
95extern int time_report;
273a74fa
AD
96
97
b77b9ee0
AD
98/*---------------------.
99| Missing prototypes. |
100`---------------------*/
101
56100c60 102#if defined HAVE_DECL_STPCPY && !HAVE_DECL_STPCPY
930393cf 103char *stpcpy (char *dest, const char *src);
b77b9ee0
AD
104#endif
105
56100c60 106#if defined HAVE_DECL_STRCHR && !HAVE_DECL_STRCHR
930393cf 107char *strchr (const char *s, int c);
ec2da99f
AD
108#endif
109
56100c60 110#if defined HAVE_DECL_STRSPN && !HAVE_DECL_STRSPN
930393cf 111size_t strspn (const char *s, const char *accept);
ec2da99f
AD
112#endif
113
56100c60 114#if defined HAVE_DECL_STRNLEN && !HAVE_DECL_STRNLEN
930393cf 115size_t strnlen (const char *s, size_t maxlen);
b77b9ee0
AD
116#endif
117
56100c60 118#if defined HAVE_DECL_MEMCHR && !HAVE_DECL_MEMCHR
930393cf 119void *memchr (const void *s, int c, size_t n);
22312b71
AD
120#endif
121
56100c60 122#if defined HAVE_DECL_MEMRCHR && !HAVE_DECL_MEMRCHR
930393cf 123void *memrchr (const void *s, int c, size_t n);
ec2da99f
AD
124#endif
125
b77b9ee0
AD
126
127
a0f6b076
AD
128/*-----------------.
129| GCC extensions. |
130`-----------------*/
131
48e28efa
PE
132/* Use this to suppress gcc's `...may be used before initialized'
133 warnings. */
134#ifdef lint
135# define IF_LINT(Code) Code
136#else
137# define IF_LINT(Code) /* empty */
138#endif
139
a0f6b076
AD
140#ifndef __attribute__
141/* This feature is available in gcc versions 2.5 and later. */
44ea3fbd
MA
142# if !defined (__GNUC__) || __GNUC__ < 2 || \
143(__GNUC__ == 2 && __GNUC_MINOR__ < 5) || __STRICT_ANSI__
a0f6b076
AD
144# define __attribute__(Spec) /* empty */
145# endif
e9955c83
AD
146#endif
147
a0f6b076
AD
148/* The __-protected variants of `format' and `printf' attributes
149 are accepted by gcc versions 2.6.4 (effectively 2.7) and later. */
e9955c83
AD
150#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7)
151# define __format__ format
152# define __printf__ printf
a0f6b076
AD
153#endif
154
e9955c83
AD
155#ifndef ATTRIBUTE_NORETURN
156# define ATTRIBUTE_NORETURN __attribute__ ((__noreturn__))
157#endif
158
159#ifndef ATTRIBUTE_UNUSED
160# define ATTRIBUTE_UNUSED __attribute__ ((__unused__))
161#endif
a0f6b076
AD
162
163/*------.
164| NLS. |
165`------*/
166
56100c60 167#if HAVE_LOCALE_H
f2d78a99
RS
168# include <locale.h>
169#endif
56100c60 170#if !HAVE_SETLOCALE
f2d78a99
RS
171# define setlocale(Category, Locale)
172#endif
173
9208d17f 174#include "gettext.h"
e0327bc8
AD
175#define _(Msgid) gettext (Msgid)
176#define N_(Msgid) (Msgid)
f2d78a99 177
a0f6b076
AD
178
179/*-------------------------------.
180| Fix broken compilation flags. |
181`-------------------------------*/
182
8a278a04 183#ifndef LOCALEDIR
a0f6b076 184# define LOCALEDIR "/usr/local/share/locale"
8a278a04 185#endif
d968a24b 186
ceed8467 187
015acc48
AD
188/*-----------.
189| Booleans. |
190`-----------*/
191
78b88816
PE
192#if HAVE_STDBOOL_H
193# include <stdbool.h>
194#else
195typedef enum {false = 0, true = 1} bool;
015acc48 196#endif
8c7ebe49
AD
197
198
199/*-----------.
200| Obstacks. |
201`-----------*/
202
342b8b6e
AD
203# define obstack_chunk_alloc xmalloc
204# define obstack_chunk_free free
205# include "obstack.h"
8c7ebe49 206
ff4423cc
AD
207#define obstack_sgrow(Obs, Str) \
208 obstack_grow (Obs, Str, strlen (Str))
8c7ebe49
AD
209
210#define obstack_fgrow1(Obs, Format, Arg1) \
211do { \
212 char buf[4096]; \
213 sprintf (buf, Format, Arg1); \
214 obstack_grow (Obs, buf, strlen (buf)); \
215} while (0)
dd60faec
AD
216
217#define obstack_fgrow2(Obs, Format, Arg1, Arg2) \
218do { \
219 char buf[4096]; \
220 sprintf (buf, Format, Arg1, Arg2); \
221 obstack_grow (Obs, buf, strlen (buf)); \
222} while (0)
896fe5c1
AD
223
224#define obstack_fgrow3(Obs, Format, Arg1, Arg2, Arg3) \
225do { \
226 char buf[4096]; \
227 sprintf (buf, Format, Arg1, Arg2, Arg3); \
228 obstack_grow (Obs, buf, strlen (buf)); \
229} while (0)
7de3329e 230
ff4423cc
AD
231#define obstack_fgrow4(Obs, Format, Arg1, Arg2, Arg3, Arg4) \
232do { \
233 char buf[4096]; \
234 sprintf (buf, Format, Arg1, Arg2, Arg3, Arg4); \
235 obstack_grow (Obs, buf, strlen (buf)); \
236} while (0)
237
7de3329e 238
7de3329e 239
381fb12e
AD
240/*-----------------------------------------.
241| Extensions to use for the output files. |
242`-----------------------------------------*/
7de3329e
AD
243
244#ifdef VMS
245 /* VMS. */
246# define EXT_TAB "_tab"
247# define EXT_OUTPUT ".output"
7de3329e
AD
248#else /* ! VMS */
249# ifdef MSDOS
250 /* MS DOS. */
251# define EXT_TAB "_tab"
252# define EXT_OUTPUT ".out"
7de3329e
AD
253# else /* ! MSDOS */
254 /* Standard. */
255# define EXT_TAB ".tab"
256# define EXT_OUTPUT ".output"
7de3329e
AD
257# endif /* ! MSDOS */
258#endif /* ! VMS */
55b96341 259
381fb12e
AD
260#ifndef DEFAULT_TMPDIR
261# define DEFAULT_TMPDIR "/tmp"
262#endif
263
264
265
381fb12e
AD
266/*---------------------.
267| Free a linked list. |
268`---------------------*/
269
300f275f
AD
270#define LIST_FREE(Type, List) \
271do { \
272 Type *_node, *_next; \
273 for (_node = List; _node; _node = _next) \
274 { \
275 _next = _node->next; \
276 XFREE (_node); \
277 } \
278} while (0)
279
381fb12e
AD
280
281/*---------------------------------------------.
282| Debugging memory allocation (must be last). |
283`---------------------------------------------*/
342b8b6e
AD
284
285# if WITH_DMALLOC
286# define DMALLOC_FUNC_CHECK
287# include <dmalloc.h>
288# endif /* WITH_DMALLOC */
289
a4b36db4 290#endif /* ! BISON_SYSTEM_H */