Workaround for broken Tru64 inttypes.h.

This commit is contained in:
Micah Cowan 2007-10-18 22:55:39 -07:00
parent 5e699b03cf
commit cb155a6b5d
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2007-10-18 Steven Schweda <sms@antinode.org>
* sysdep.h: #include <stdint.h> as well as <inttypes.h>, to work
around a glitch on Tru64 systems.
2007-10-18 Micah Cowan <micah@cowan.name>
* Makefile.am: version.c should not be distributed. Removed

View File

@ -111,6 +111,8 @@ void *alloca (size_t);
#include <sys/stat.h>
#ifdef HAVE_INTTYPES_H
/* Compaq C V6.5-303 (dtk) on HP Tru64 UNIX V5.1B (Rev. 2650) needs: */
# include <stdint.h>
# include <inttypes.h>
#endif