changeset 1813:9e16d9bc8891

<inttypes.h>: Include it here instead. <config.h>: Include it here too.
author Jim Meyering <jim@meyering.net>
date Sun, 25 Apr 1999 19:20:18 +0000
parents 2a52bf4a60c7
children e8f03a041d0e
files lib/human.h
diffstat 1 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lib/human.h
+++ b/lib/human.h
@@ -1,6 +1,14 @@
 #ifndef HUMAN_H_
 # define HUMAN_H_ 1
 
+# if HAVE_CONFIG_H
+#  include <config.h>
+# endif
+
+# if HAVE_INTTYPES_H
+#  include <inttypes.h>
+# endif
+
 /* A conservative bound on the maximum length of a human-readable string.
    The output can be the product of the largest uintmax_t and the largest int,
    so add their sizes before converting to a bound on digits.  */