Fix typo in putwc().

Noticed by:	stefanf
This commit is contained in:
Tim J. Robbins 2004-06-07 10:31:10 +00:00
parent 7a1a900c65
commit f05d1a4641
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=130185

View File

@ -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