diff options
author | tjr <tjr@FreeBSD.org> | 2004-05-25 12:41:02 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2004-05-25 12:41:02 +0000 |
commit | e9ed4fbdf86ade6a102a6712852074416e9df1d2 (patch) | |
tree | 542c79db2a0fec1b72657fdbf30a6b918b4f9703 /include/wchar.h | |
parent | d789d7a8c7048122b4950ad05b338b348d8cefb5 (diff) | |
download | FreeBSD-src-e9ed4fbdf86ade6a102a6712852074416e9df1d2.zip FreeBSD-src-e9ed4fbdf86ade6a102a6712852074416e9df1d2.tar.gz |
Revert to rev. 1.36 until issues with -Wredundant-decls are sorted out.
Diffstat (limited to 'include/wchar.h')
-rw-r--r-- | include/wchar.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/wchar.h b/include/wchar.h index 18398c4..b8bb90a 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); |