summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--src/system.h4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 6f2f561bc..f6817ff1c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-07-02 Paul Eggert <eggert@cs.ucla.edu>
+
+ * src/system.h: Include <stdint.h> unconditionally, since we
+ now assume the stdint module.
+
2006-07-01 Paul Eggert <eggert@cs.ucla.edu>
* NEWS: With no operand, 'tail -f' now silently ignores the '-f'
diff --git a/src/system.h b/src/system.h
index 7ddbd7dbe..644c03c8a 100644
--- a/src/system.h
+++ b/src/system.h
@@ -334,9 +334,7 @@ enum
#if HAVE_INTTYPES_H
# include <inttypes.h>
#endif
-#if HAVE_STDINT_H
-# include <stdint.h>
-#endif
+#include <stdint.h>
#if ULONG_MAX_LT_ULLONG_MAX
# define LONGEST_MODIFIER "ll"