summaryrefslogtreecommitdiff
path: root/include/wchar.h
diff options
context:
space:
mode:
authorTim J. Robbins <tjr@FreeBSD.org>2004-06-07 10:31:10 +0000
committerTim J. Robbins <tjr@FreeBSD.org>2004-06-07 10:31:10 +0000
commitf05d1a464164c0fd72c4925e8c917d15feb456c7 (patch)
tree859aa0ff9de953f141389e9cef23e3a0d271be15 /include/wchar.h
parent7a1a900c6564d33139c3f4722287416b805075ec (diff)
downloadsrc-test2-f05d1a464164c0fd72c4925e8c917d15feb456c7.tar.gz
src-test2-f05d1a464164c0fd72c4925e8c917d15feb456c7.zip
Fix typo in putwc().
Noticed by: stefanf
Notes
Notes: svn path=/head/; revision=130185
Diffstat (limited to 'include/wchar.h')
-rw-r--r--include/wchar.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wchar.h b/include/wchar.h
index 5bfac56df5e1..67f582cd0c18 100644
--- a/include/wchar.h
+++ b/include/wchar.h
@@ -180,7 +180,7 @@ extern struct __sFILE *__stderrp;
#define getwc(fp) fgetwc(fp)
#define getwchar() fgetwc(__stdinp)
-#define putwc(wc, fp) fputwc(x, fp)
+#define putwc(wc, fp) fputwc(wc, fp)
#define putwchar(wc) fputwc(wc, __stdoutp)
#if __ISO_C_VISIBLE >= 1999