From 30af8f30f75b1d245618e98ab9a977c4886a5c09 Mon Sep 17 00:00:00 2001 From: "Tim J. Robbins" Date: Tue, 25 May 2004 12:41:02 +0000 Subject: [PATCH] Revert to rev. 1.36 until issues with -Wredundant-decls are sorted out. --- include/wchar.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/include/wchar.h b/include/wchar.h index 18398c49b49c..b8bb90a14a4b 100644 --- a/include/wchar.h +++ b/include/wchar.h @@ -171,14 +171,6 @@ wchar_t *wmemset(wchar_t *, wchar_t, size_t); int wprintf(const wchar_t * __restrict, ...); int wscanf(const wchar_t * __restrict, ...); -extern struct __sFILE *__stdinp; -extern struct __sFILE *__stdoutp; - -#define getwc(fp) fgetwc(fp) -#define getwchar() fgetwc(__stdinp) -#define putwc(wc, fp) fputwc(wc, fp) -#define putwchar(wc) fputwc(wc, __stdoutp) - #if __ISO_C_VISIBLE >= 1999 int vfwscanf(struct __sFILE * __restrict, const wchar_t * __restrict, __va_list);