]> git.saurik.com Git - bison.git/blame - src/system.h
Update from Bruno Haible's 2003-04-14 patch to gnulib.
[bison.git] / src / system.h
CommitLineData
87aabbff 1/* System-dependent definitions for Bison.
45aa0550
PE
2
3 Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
a0f6b076
AD
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
8 any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software Foundation,
17 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18
d968a24b
JT
19#ifndef BISON_SYSTEM_H
20#define BISON_SYSTEM_H
21
56100c60 22#if HAVE_CONFIG_H
d968a24b
JT
23# include <config.h>
24#endif
25
deedb0b7 26#include <stddef.h>
ceed8467
AD
27#include <stdio.h>
28
87aabbff
PE
29/* Verify a requirement at compile-time (unlike assert, which is runtime). */
30#define verify(name, assertion) struct name {char name[(assertion) ? 1 : -1];}
340ef489 31
27b0ffea
AD
32#if HAVE_SYS_TYPES_H
33# include <sys/types.h>
34#endif
35
499daa50 36#if HAVE_STDLIB_H
a0f6b076 37# include <stdlib.h>
5fcfb6e7
RS
38#endif
39
0f37a994
AD
40/* The following test is to work around the gross typo in
41 systems like Sony NEWS-OS Release 4.0C, whereby EXIT_FAILURE
42 is defined to 0, not 1. */
43#if !EXIT_FAILURE
44# undef EXIT_FAILURE
45# define EXIT_FAILURE 1
46#endif
47
48#ifndef EXIT_SUCCESS
49# define EXIT_SUCCESS 0
50#endif
51
499daa50 52#if HAVE_UNISTD_H
a0f6b076 53# include <unistd.h>
7bb4d914
JT
54#endif
55
5fcfb6e7 56#if defined(STDC_HEADERS) || defined(HAVE_STRING_H)
a0f6b076 57# include <string.h>
5fcfb6e7 58/* An ANSI string.h and pre-ANSI memory.h might conflict. */
a0f6b076
AD
59# if !defined(STDC_HEADERS) && defined(HAVE_MEMORY_H)
60# include <memory.h>
61# endif /* not STDC_HEADERS and HAVE_MEMORY_H */
5fcfb6e7 62#else /* not STDC_HEADERS and not HAVE_STRING_H */
a0f6b076 63# include <strings.h>
5fcfb6e7
RS
64/* memory.h and strings.h conflict on some systems. */
65#endif /* not STDC_HEADERS and not HAVE_STRING_H */
f2d78a99 66
930393cf 67#include <limits.h>
62a3e4f0 68
deedb0b7
PE
69#if HAVE_UINTPTR_T
70# if HAVE_INTTYPES_H
71# include <inttypes.h>
72# else
73# if HAVE_STDINT_H
74# include <stdint.h>
75# endif
76# endif
77#else
78/* This isn't perfect, but it's good enough for Bison, which needs
79 only to hash pointers. */
80typedef size_t uintptr_t;
81#endif
82
982cc302 83#include <xalloc.h>
deedb0b7
PE
84#define CALLOC(P, N) ((P) = xcalloc (N, sizeof *(P)))
85#define MALLOC(P, N) ((P) = xmalloc ((N) * sizeof *(P)))
86#define REALLOC(P, N) ((P) = xrealloc (P, (N) * sizeof *(P)))
b77b9ee0 87
a4b36db4 88/* From xstrndup.c. */
a737b216 89char *xstrndup (const char *str, size_t size);
a4b36db4 90
273a74fa 91
b77b9ee0
AD
92/*---------------------.
93| Missing prototypes. |
94`---------------------*/
95
56100c60 96#if defined HAVE_DECL_STPCPY && !HAVE_DECL_STPCPY
930393cf 97char *stpcpy (char *dest, const char *src);
b77b9ee0
AD
98#endif
99
56100c60 100#if defined HAVE_DECL_STRCHR && !HAVE_DECL_STRCHR
a737b216 101char *strchr (const char *str, int ch);
ec2da99f
AD
102#endif
103
56100c60 104#if defined HAVE_DECL_STRSPN && !HAVE_DECL_STRSPN
a737b216 105size_t strspn (const char *str, const char *accept);
ec2da99f
AD
106#endif
107
56100c60 108#if defined HAVE_DECL_STRNLEN && !HAVE_DECL_STRNLEN
a737b216 109size_t strnlen (const char *str, size_t maxlen);
b77b9ee0
AD
110#endif
111
56100c60 112#if defined HAVE_DECL_MEMCHR && !HAVE_DECL_MEMCHR
a737b216 113void *memchr (const void *str, int ch, size_t size);
22312b71
AD
114#endif
115
56100c60 116#if defined HAVE_DECL_MEMRCHR && !HAVE_DECL_MEMRCHR
a737b216 117void *memrchr (const void *str, int ch, size_t size);
ec2da99f
AD
118#endif
119
b77b9ee0
AD
120
121
a0f6b076
AD
122/*-----------------.
123| GCC extensions. |
124`-----------------*/
125
48e28efa
PE
126/* Use this to suppress gcc's `...may be used before initialized'
127 warnings. */
128#ifdef lint
129# define IF_LINT(Code) Code
130#else
131# define IF_LINT(Code) /* empty */
132#endif
133
a0f6b076
AD
134#ifndef __attribute__
135/* This feature is available in gcc versions 2.5 and later. */
44ea3fbd
MA
136# if !defined (__GNUC__) || __GNUC__ < 2 || \
137(__GNUC__ == 2 && __GNUC_MINOR__ < 5) || __STRICT_ANSI__
a0f6b076
AD
138# define __attribute__(Spec) /* empty */
139# endif
e9955c83
AD
140#endif
141
a0f6b076
AD
142/* The __-protected variants of `format' and `printf' attributes
143 are accepted by gcc versions 2.6.4 (effectively 2.7) and later. */
e9955c83
AD
144#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7)
145# define __format__ format
146# define __printf__ printf
a0f6b076
AD
147#endif
148
e9955c83
AD
149#ifndef ATTRIBUTE_NORETURN
150# define ATTRIBUTE_NORETURN __attribute__ ((__noreturn__))
151#endif
152
153#ifndef ATTRIBUTE_UNUSED
154# define ATTRIBUTE_UNUSED __attribute__ ((__unused__))
155#endif
a0f6b076
AD
156
157/*------.
158| NLS. |
159`------*/
160
56100c60 161#if HAVE_LOCALE_H
f2d78a99
RS
162# include <locale.h>
163#endif
56100c60 164#if !HAVE_SETLOCALE
f2d78a99
RS
165# define setlocale(Category, Locale)
166#endif
167
982cc302 168#include <gettext.h>
e0327bc8
AD
169#define _(Msgid) gettext (Msgid)
170#define N_(Msgid) (Msgid)
f2d78a99 171
a0f6b076
AD
172
173/*-------------------------------.
174| Fix broken compilation flags. |
175`-------------------------------*/
176
8a278a04 177#ifndef LOCALEDIR
a0f6b076 178# define LOCALEDIR "/usr/local/share/locale"
8a278a04 179#endif
d968a24b 180
ceed8467 181
015acc48
AD
182/*-----------.
183| Booleans. |
184`-----------*/
185
f61aad93 186#include <stdbool.h>
8c7ebe49
AD
187
188
189/*-----------.
190| Obstacks. |
191`-----------*/
192
342b8b6e
AD
193# define obstack_chunk_alloc xmalloc
194# define obstack_chunk_free free
982cc302 195# include <obstack.h>
8c7ebe49 196
ff4423cc
AD
197#define obstack_sgrow(Obs, Str) \
198 obstack_grow (Obs, Str, strlen (Str))
8c7ebe49
AD
199
200#define obstack_fgrow1(Obs, Format, Arg1) \
201do { \
202 char buf[4096]; \
203 sprintf (buf, Format, Arg1); \
204 obstack_grow (Obs, buf, strlen (buf)); \
205} while (0)
dd60faec
AD
206
207#define obstack_fgrow2(Obs, Format, Arg1, Arg2) \
208do { \
209 char buf[4096]; \
210 sprintf (buf, Format, Arg1, Arg2); \
211 obstack_grow (Obs, buf, strlen (buf)); \
212} while (0)
896fe5c1
AD
213
214#define obstack_fgrow3(Obs, Format, Arg1, Arg2, Arg3) \
215do { \
216 char buf[4096]; \
217 sprintf (buf, Format, Arg1, Arg2, Arg3); \
218 obstack_grow (Obs, buf, strlen (buf)); \
219} while (0)
7de3329e 220
ff4423cc
AD
221#define obstack_fgrow4(Obs, Format, Arg1, Arg2, Arg3, Arg4) \
222do { \
223 char buf[4096]; \
224 sprintf (buf, Format, Arg1, Arg2, Arg3, Arg4); \
225 obstack_grow (Obs, buf, strlen (buf)); \
226} while (0)
227
7de3329e 228
7de3329e 229
381fb12e
AD
230/*-----------------------------------------.
231| Extensions to use for the output files. |
232`-----------------------------------------*/
7de3329e
AD
233
234#ifdef VMS
235 /* VMS. */
982cc302
PE
236# define TAB_EXT "_tab"
237# define OUTPUT_EXT ".output"
7de3329e
AD
238#else /* ! VMS */
239# ifdef MSDOS
240 /* MS DOS. */
982cc302
PE
241# define TAB_EXT "_tab"
242# define OUTPUT_EXT ".out"
7de3329e
AD
243# else /* ! MSDOS */
244 /* Standard. */
982cc302
PE
245# define TAB_EXT ".tab"
246# define OUTPUT_EXT ".output"
7de3329e
AD
247# endif /* ! MSDOS */
248#endif /* ! VMS */
55b96341 249
381fb12e
AD
250#ifndef DEFAULT_TMPDIR
251# define DEFAULT_TMPDIR "/tmp"
252#endif
253
254
255
381fb12e
AD
256/*---------------------.
257| Free a linked list. |
258`---------------------*/
259
300f275f
AD
260#define LIST_FREE(Type, List) \
261do { \
262 Type *_node, *_next; \
263 for (_node = List; _node; _node = _next) \
264 { \
265 _next = _node->next; \
266 XFREE (_node); \
267 } \
268} while (0)
269
381fb12e
AD
270
271/*---------------------------------------------.
272| Debugging memory allocation (must be last). |
273`---------------------------------------------*/
342b8b6e
AD
274
275# if WITH_DMALLOC
276# define DMALLOC_FUNC_CHECK
277# include <dmalloc.h>
278# endif /* WITH_DMALLOC */
279
a4b36db4 280#endif /* ! BISON_SYSTEM_H */