diff options
author | Paul Smith <psmith@gnu.org> | 2000-06-13 05:22:52 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2000-06-13 05:22:52 +0000 |
commit | 4972b017b63f3ce324bfa65a1b46a2a173baf463 (patch) | |
tree | d4bac994ae10ea2290d195dfe12978a8bfcda2ea /make.h | |
parent | 4a5550c8225d762f684d4047e20cc45274b6a785 (diff) | |
download | gunmake-4972b017b63f3ce324bfa65a1b46a2a173baf463.tar.gz |
* Some timestamp fixes from Paul Eggert.
* Fix compilation on Linux; use libintl.h and not gettext.h when using
the system gettext.
Diffstat (limited to 'make.h')
-rw-r--r-- | make.h | 10 |
1 files changed, 3 insertions, 7 deletions
@@ -286,14 +286,10 @@ extern char *alloca (); # endif /* HAVE_ALLOCA_H. */ #endif /* GCC. */ -#ifdef ST_MTIM_NSEC -# if HAVE_INTTYPES_H -# include <inttypes.h> -# endif -# define FILE_TIMESTAMP uintmax_t -#else -# define FILE_TIMESTAMP time_t +#if HAVE_INTTYPES_H +# include <inttypes.h> #endif +#define FILE_TIMESTAMP uintmax_t /* ISDIGIT offers the following features: - Its arg may be any int or unsigned int; it need not be an unsigned char. |