diff options
author | Jim Meyering <jim@meyering.net> | 2003-06-06 22:37:23 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-06-06 22:37:23 +0000 |
commit | 61185901300c497552e6699702f66086d96d0ea0 (patch) | |
tree | eae2e50197b7cb8129f6b2fead59bda5fd8c4bc7 | |
parent | c6fdfa80ffd1affd64c6fcfca1c1d5ae8f59932e (diff) | |
download | coreutils-61185901300c497552e6699702f66086d96d0ea0.tar.xz |
Include <stdio.h>, once again, for declaration of sprintf.
-rw-r--r-- | lib/human.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/human.c b/lib/human.c index 558263473..a838e8c41 100644 --- a/lib/human.c +++ b/lib/human.c @@ -54,6 +54,8 @@ char *getenv (); # include <strings.h> #endif +#include <stdio.h> + #include "gettext.h" #define _(msgid) gettext (msgid) |