]>
git.saurik.com Git - bison.git/blob - src/system.h
1 /* system-dependent definitions for Bison.
2 Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
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)
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.
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. */
18 #ifndef BISON_SYSTEM_H
19 #define BISON_SYSTEM_H
25 /* AIX requires this to be the first thing in the file. */
27 # define alloca(Size) __builtin_alloca (Size)
35 # ifndef alloca /* predefined by HP cc +Olibcalls */
47 # include <sys/types.h>
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. */
59 # define EXIT_FAILURE 1
63 # define EXIT_SUCCESS 0
70 #if defined(STDC_HEADERS) || defined(HAVE_STRING_H)
72 /* An ANSI string.h and pre-ANSI memory.h might conflict. */
73 # if !defined(STDC_HEADERS) && defined(HAVE_MEMORY_H)
75 # endif /* not STDC_HEADERS and HAVE_MEMORY_H */
76 #else /* not STDC_HEADERS and not HAVE_STRING_H */
78 /* memory.h and strings.h conflict on some systems. */
79 #endif /* not STDC_HEADERS and not HAVE_STRING_H */
86 /* From xstrndup.c. */
87 char *xstrndup (const char *s
, size_t n
);
95 extern int time_report
;
98 /*---------------------.
99 | Missing prototypes. |
100 `---------------------*/
102 #if defined HAVE_DECL_STPCPY && !HAVE_DECL_STPCPY
103 char *stpcpy (char *dest
, const char *src
);
106 #if defined HAVE_DECL_STRCHR && !HAVE_DECL_STRCHR
107 char *strchr (const char *s
, int c
);
110 #if defined HAVE_DECL_STRSPN && !HAVE_DECL_STRSPN
111 size_t strspn (const char *s
, const char *accept
);
114 #if defined HAVE_DECL_STRNLEN && !HAVE_DECL_STRNLEN
115 size_t strnlen (const char *s
, size_t maxlen
);
118 #if defined HAVE_DECL_MEMCHR && !HAVE_DECL_MEMCHR
119 void *memchr (const void *s
, int c
, size_t n
);
122 #if defined HAVE_DECL_MEMRCHR && !HAVE_DECL_MEMRCHR
123 void *memrchr (const void *s
, int c
, size_t n
);
132 /* Use this to suppress gcc's `...may be used before initialized'
135 # define IF_LINT(Code) Code
137 # define IF_LINT(Code) /* empty */
140 #ifndef __attribute__
141 /* This feature is available in gcc versions 2.5 and later. */
142 # if !defined (__GNUC__) || __GNUC__ < 2 || \
143 (__GNUC__ == 2 && __GNUC_MINOR__ < 5) || __STRICT_ANSI__
144 # define __attribute__(Spec) /* empty */
148 /* The __-protected variants of `format' and `printf' attributes
149 are accepted by gcc versions 2.6.4 (effectively 2.7) and later. */
150 #if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7)
151 # define __format__ format
152 # define __printf__ printf
155 #ifndef ATTRIBUTE_NORETURN
156 # define ATTRIBUTE_NORETURN __attribute__ ((__noreturn__))
159 #ifndef ATTRIBUTE_UNUSED
160 # define ATTRIBUTE_UNUSED __attribute__ ((__unused__))
171 # define setlocale(Category, Locale)
175 #define _(Msgid) gettext (Msgid)
176 #define N_(Msgid) (Msgid)
179 /*-------------------------------.
180 | Fix broken compilation flags. |
181 `-------------------------------*/
184 # define LOCALEDIR "/usr/local/share/locale"
193 # include <stdbool.h>
195 typedef enum {false = 0, true = 1} bool;
203 # define obstack_chunk_alloc xmalloc
204 # define obstack_chunk_free free
205 # include "obstack.h"
207 #define obstack_sgrow(Obs, Str) \
208 obstack_grow (Obs, Str, strlen (Str))
210 #define obstack_fgrow1(Obs, Format, Arg1) \
213 sprintf (buf, Format, Arg1); \
214 obstack_grow (Obs, buf, strlen (buf)); \
217 #define obstack_fgrow2(Obs, Format, Arg1, Arg2) \
220 sprintf (buf, Format, Arg1, Arg2); \
221 obstack_grow (Obs, buf, strlen (buf)); \
224 #define obstack_fgrow3(Obs, Format, Arg1, Arg2, Arg3) \
227 sprintf (buf, Format, Arg1, Arg2, Arg3); \
228 obstack_grow (Obs, buf, strlen (buf)); \
231 #define obstack_fgrow4(Obs, Format, Arg1, Arg2, Arg3, Arg4) \
234 sprintf (buf, Format, Arg1, Arg2, Arg3, Arg4); \
235 obstack_grow (Obs, buf, strlen (buf)); \
240 /*-----------------------------------------.
241 | Extensions to use for the output files. |
242 `-----------------------------------------*/
246 # define EXT_TAB "_tab"
247 # define EXT_OUTPUT ".output"
251 # define EXT_TAB "_tab"
252 # define EXT_OUTPUT ".out"
255 # define EXT_TAB ".tab"
256 # define EXT_OUTPUT ".output"
257 # endif /* ! MSDOS */
260 #ifndef DEFAULT_TMPDIR
261 # define DEFAULT_TMPDIR "/tmp"
266 /*---------------------.
267 | Free a linked list. |
268 `---------------------*/
270 #define LIST_FREE(Type, List) \
272 Type *_node, *_next; \
273 for (_node = List; _node; _node = _next) \
275 _next = _node->next; \
281 /*---------------------------------------------.
282 | Debugging memory allocation (must be last). |
283 `---------------------------------------------*/
286 # define DMALLOC_FUNC_CHECK
287 # include <dmalloc.h>
288 # endif /* WITH_DMALLOC */
290 #endif /* ! BISON_SYSTEM_H */