summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2010-12-22 13:57:50 -0500
committerEric S. Raymond <esr@thyrsus.com>2010-12-22 13:57:50 -0500
commit92f78e5c9e2101e44628f4a2ae17ed6edcb98f66 (patch)
tree356aa18b11192f4f415d627af4396048356f2e96
parent61f7df9874d389437035131b665b66eea43f16bc (diff)
downloaddeheader-92f78e5c9e2101e44628f4a2ae17ed6edcb98f66.tar.gz
deheader-92f78e5c9e2101e44628f4a2ae17ed6edcb98f66.tar.bz2
deheader-92f78e5c9e2101e44628f4a2ae17ed6edcb98f66.tar.xz
deheader-92f78e5c9e2101e44628f4a2ae17ed6edcb98f66.zip
Typo fix.
-rwxr-xr-xdeheader14
1 files changed, 7 insertions, 7 deletions
diff --git a/deheader b/deheader
index 605d6b9..6b7df63 100755
--- a/deheader
+++ b/deheader
@@ -1044,14 +1044,14 @@ requirements = (
# vfork - create new process; share virtual memory
("vfork()", ["<unistd.h>"]),
# vfprintf, vprintf, vsnprintf, vsprintf - format output of a stdarg argument list
- (r"vfprintf()", ["<stdarg.h>", "<stdio>"]),
- (r"vprintf()", ["<stdarg.h>", "<stdio>"]),
- (r"vsnprintf()", ["<stdarg.h>", "<stdio>"]),
- (r"vsprintf()", ["<stdarg.h>", "<stdio>"]),
+ (r"vfprintf()", ["<stdarg.h>", "<stdio.h>"]),
+ (r"vprintf()", ["<stdarg.h>", "<stdio.h>"]),
+ (r"vsnprintf()", ["<stdarg.h>", "<stdio.h>"]),
+ (r"vsprintf()", ["<stdarg.h>", "<stdio.h>"]),
# vfwprintf, vwprintf, vswprintf - wide-character formatted output of a stdarg argument list
- (r"vwprintf()", ["<stdarg.h>", "<stdio>", "<wchar.h>"]),
- (r"vfwprintf()", ["<stdarg.h>", "<stdio>", "<wchar.h>"]),
- (r"vswprintf()", ["<stdarg.h>", "<stdio>", "<wchar.h>"]),
+ (r"vwprintf()", ["<stdarg.h>", "<stdio.h>", "<wchar.h>"]),
+ (r"vfwprintf()", ["<stdarg.h>", "<stdio.h>", "<wchar.h>"]),
+ (r"vswprintf()", ["<stdarg.h>", "<stdio.h>", "<wchar.h>"]),
# wchar.h - wide-character types
(r"wcrtomb()", ["<wchar.h>"]), # SuSv2 erroneously says <stdio.h>
(r"wcscat()", ["<wchar.h>"]),