diff options
-rw-r--r-- | lib/human.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/human.h b/lib/human.h index de54bf8e9..c7cee833c 100644 --- 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. */ |