Revert to rev. 1.36 until issues with -Wredundant-decls are sorted out.

This commit is contained in:
Tim J. Robbins 2004-05-25 12:41:02 +00:00
parent 8a4979c259
commit 30af8f30f7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=129713

View File

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