summaryrefslogtreecommitdiff
path: root/stdio-common
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-06-12 15:06:16 +0000
committerUlrich Drepper <drepper@redhat.com>2003-06-12 15:06:16 +0000
commitef427aab8b632098b726884138d76c900563070e (patch)
tree310e0afd8e5aa56fee39954213d2b9788e1cf572 /stdio-common
parent693ca688a4aace60031b518cf31b2ae83285a42d (diff)
Include stdlib.h and sys/param.h.
Diffstat (limited to 'stdio-common')
-rw-r--r--stdio-common/printf-parsemb.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/stdio-common/printf-parsemb.c b/stdio-common/printf-parsemb.c
index 0d01d5693e..4a651cfedc 100644
--- a/stdio-common/printf-parsemb.c
+++ b/stdio-common/printf-parsemb.c
@@ -1,4 +1,4 @@
-/* Internal header for parsing printf format strings.
+/* Helper functions for parsing printf format strings.
Copyright (C) 1995-1999, 2000, 2002, 2003 Free Software Foundation, Inc.
This file is part of th GNU C Library.
@@ -19,7 +19,9 @@
#include <ctype.h>
#include <limits.h>
+#include <stdlib.h>
#include <string.h>
+#include <sys/param.h>
#include <wchar.h>
#include <wctype.h>