From 3619568a645e92383cd7dfb4a6bb334c24803733 Mon Sep 17 00:00:00 2001 From: "Tim J. Robbins" Date: Sat, 28 Sep 2002 07:43:44 +0000 Subject: Remove masking macros for getwc(), putwc(), putwchar() and getwchar(). Although there was nothing wrong with getwc() and putwc(), getwchar() and putwchar() assumed that had been included before , which is not allowed by the standard. --- include/wchar.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'include') diff --git a/include/wchar.h b/include/wchar.h index 6a0de5e53ba0..6a85b4df7f73 100644 --- a/include/wchar.h +++ b/include/wchar.h @@ -186,9 +186,4 @@ size_t wcslcpy(wchar_t *, const wchar_t *, size_t); #endif __END_DECLS -#define getwc(fp) fgetwc(fp) -#define getwchar() fgetwc(stdin) -#define putwc(wc, fp) fputwc((wc), (fp)) -#define putwchar(wc) fputwc((wc), stdout) - #endif /* !_WCHAR_H_ */ -- cgit v1.3