* zzcat.c: compilation fix for missing headers.

This commit is contained in:
Sam Hocevar 2008-07-16 09:51:58 +00:00 committed by sam
parent 612d830111
commit d5734170b3

View File

@ -19,6 +19,11 @@
/* Needed for O_RDONLY on HP-UX */ /* Needed for O_RDONLY on HP-UX */
#define _INCLUDE_POSIX_SOURCE #define _INCLUDE_POSIX_SOURCE
#if defined HAVE_STDINT_H
# include <stdint.h>
#elif defined HAVE_INTTYPES_H
# include <inttypes.h>
#endif
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <fcntl.h> #include <fcntl.h>
@ -29,7 +34,6 @@
# include <sys/mman.h> # include <sys/mman.h>
#endif #endif
#include <stdlib.h> #include <stdlib.h>
#include <stdint.h>
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>