From: Akim Demaille Date: Wed, 23 Oct 2002 16:30:50 +0000 (+0000) Subject: * src/system.h: Include sys/types. X-Git-Tag: BISON-1_875~391 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/27b0ffea3e94600ddb0e4066cce525a49789da8e?ds=sidebyside * src/system.h: Include sys/types. Reported by Bert Deknuydt. --- diff --git a/ChangeLog b/ChangeLog index 6ab35602..28bd565f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-10-22 Akim Demaille + + * src/system.h: Include sys/types. + Reported by Bert Deknuydt. + 2002-10-23 Paul Eggert * configure.ac (AC_PROG_LEX): Use instead of AM_PROG_LEX. @@ -18,7 +23,7 @@ http://mail.gnu.org/pipermail/bug-bison/2002-October/001769.html and I hope it also fixes this bug report: http://mail.gnu.org/pipermail/bug-bison/2002-October/001748.html - + * doc/bison.texinfo: Minor spelling and typographical fixes. Use @acronym consistently. Standardize on "Yacc" instead of "YACC", "Algol" instead of "ALGOL". Give a bit more history about BNF. @@ -45,7 +50,7 @@ (complaint_issued): Renamed from complain_message_count; likewise. * src/main.c (main): Use exit to exit with failure. - + * src/complain.c (fatal_at, fatal): Use EXIT_FAILURE and EXIT_SUCCESS rather than 1 and 0. * src/main.c (main): Likewise. diff --git a/THANKS b/THANKS index b7fc3126..20cff397 100644 --- a/THANKS +++ b/THANKS @@ -9,6 +9,7 @@ Andreas Schwab schwab@suse.de Arnold Robbins arnold@skeeve.com Art Haas ahaas@neosoft.com Benoit Perrot benoit.perrot@epita.fr +Bert Deknuydt Bert.Deknuydt@esat.kuleuven.ac.be Bruce Lilly blilly@erols.com Charles-Henri de Boysson deboys_c@epita.fr Cris Bailiff c.bailiff+bison@awayweb.com diff --git a/src/system.h b/src/system.h index 69f385cc..3dcd007b 100644 --- a/src/system.h +++ b/src/system.h @@ -43,6 +43,10 @@ char *alloca (); #include +#if HAVE_SYS_TYPES_H +# include +#endif + #if HAVE_STDLIB_H # include #endif