]>
git.saurik.com Git - bison.git/blob - src/system.h
1 /* System-dependent definitions for Bison.
3 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 Free Software
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software Foundation,
18 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
20 #ifndef BISON_SYSTEM_H
21 #define BISON_SYSTEM_H
34 # include <sys/types.h>
42 # include <inttypes.h>
49 /* This isn't perfect, but it's good enough for Bison, which needs
50 only to hash pointers. */
51 typedef size_t uintptr_t;
58 /*---------------------.
59 | Missing prototypes. |
60 `---------------------*/
69 /* Use this to suppress gcc's `...may be used before initialized'
72 # define IF_LINT(Code) Code
74 # define IF_LINT(Code) /* empty */
78 /* This feature is available in gcc versions 2.5 and later. */
79 # if !defined (__GNUC__) || __GNUC__ < 2 || \
80 (__GNUC__ == 2 && __GNUC_MINOR__ < 5) || __STRICT_ANSI__
81 # define __attribute__(Spec) /* empty */
85 /* The __-protected variants of `format' and `printf' attributes
86 are accepted by gcc versions 2.6.4 (effectively 2.7) and later. */
87 #if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7)
88 # define __format__ format
89 # define __printf__ printf
92 #ifndef ATTRIBUTE_NORETURN
93 # define ATTRIBUTE_NORETURN __attribute__ ((__noreturn__))
96 #ifndef ATTRIBUTE_UNUSED
97 # define ATTRIBUTE_UNUSED __attribute__ ((__unused__))
107 #define _(Msgid) gettext (Msgid)
108 #define N_(Msgid) (Msgid)
111 /*-------------------------------.
112 | Fix broken compilation flags. |
113 `-------------------------------*/
116 # define LOCALEDIR "/usr/local/share/locale"
131 #define obstack_chunk_alloc xmalloc
132 #define obstack_chunk_free free
135 #define obstack_sgrow(Obs, Str) \
136 obstack_grow (Obs, Str, strlen (Str))
138 #define obstack_fgrow1(Obs, Format, Arg1) \
141 sprintf (buf, Format, Arg1); \
142 obstack_grow (Obs, buf, strlen (buf)); \
145 #define obstack_fgrow2(Obs, Format, Arg1, Arg2) \
148 sprintf (buf, Format, Arg1, Arg2); \
149 obstack_grow (Obs, buf, strlen (buf)); \
152 #define obstack_fgrow3(Obs, Format, Arg1, Arg2, Arg3) \
155 sprintf (buf, Format, Arg1, Arg2, Arg3); \
156 obstack_grow (Obs, buf, strlen (buf)); \
159 #define obstack_fgrow4(Obs, Format, Arg1, Arg2, Arg3, Arg4) \
162 sprintf (buf, Format, Arg1, Arg2, Arg3, Arg4); \
163 obstack_grow (Obs, buf, strlen (buf)); \
168 /*-----------------------------------------.
169 | Extensions to use for the output files. |
170 `-----------------------------------------*/
173 # define OUTPUT_EXT ".output"
177 # define TAB_EXT ".tab"
180 #ifndef DEFAULT_TMPDIR
181 # define DEFAULT_TMPDIR "/tmp"
186 /*---------------------.
187 | Free a linked list. |
188 `---------------------*/
190 #define LIST_FREE(Type, List) \
192 Type *_node, *_next; \
193 for (_node = List; _node; _node = _next) \
195 _next = _node->next; \
201 /*---------------------------------------------.
202 | Debugging memory allocation (must be last). |
203 `---------------------------------------------*/
206 # define DMALLOC_FUNC_CHECK
207 # include <dmalloc.h>
208 # endif /* WITH_DMALLOC */
210 #endif /* ! BISON_SYSTEM_H */