summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStefan Sperling <stsp@cvs.openbsd.org>2011-04-24 08:54:07 +0000
committerStefan Sperling <stsp@cvs.openbsd.org>2011-04-24 08:54:07 +0000
commit349ffb0c555d576987bae3da9583737558f38799 (patch)
treecdabe4e5c8263b5f447096241a7f2299ba651143 /include
parent80cf522be022df20b49026ae68240e744813d2d2 (diff)
Back out wprintf until we've determined what to do for gcc2 and gcc3 arches.
Diffstat (limited to 'include')
-rw-r--r--include/wchar.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/include/wchar.h b/include/wchar.h
index 2705a44766c..12322dbf5af 100644
--- a/include/wchar.h
+++ b/include/wchar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: wchar.h,v 1.13 2011/04/24 07:46:58 stsp Exp $ */
+/* $OpenBSD: wchar.h,v 1.14 2011/04/24 08:54:02 stsp Exp $ */
/* $NetBSD: wchar.h,v 1.16 2003/03/07 07:11:35 tshiozak Exp $ */
/*-
@@ -172,14 +172,6 @@ wint_t putwchar(wchar_t);
int fwide(FILE *, int);
-int fwprintf(FILE * __restrict, const wchar_t * __restrict, ...);
-int swprintf(wchar_t * __restrict, size_t, const wchar_t * __restrict, ...);
-int vfwprintf(FILE * __restrict, const wchar_t * __restrict, __va_list);
-int vswprintf(wchar_t * __restrict, size_t, const wchar_t * __restrict,
- __va_list);
-int vwprintf(const wchar_t * __restrict, __va_list);
-int wprintf(const wchar_t * __restrict, ...);
-
#define getwc(f) fgetwc(f)
#define getwchar() getwc(stdin)
#define putwc(wc, f) fputwc((wc), (f))