usr/src/head/wctype.h
changeset 12790 e1c710858516
parent 0 68f95e015346
--- a/usr/src/head/wctype.h	Mon Aug 16 16:22:01 2010 -0700
+++ b/usr/src/head/wctype.h	Wed Aug 18 14:41:42 2010 -0700
@@ -95,6 +95,14 @@
 	wchar_t *code;		/* conversion code */
 };
 
+
+#ifdef	_ILLUMOS_PRIVATE
+extern	int __iswrune(wint_t);
+extern	wint_t __nextwctype(wint_t, wctype_t);
+#define	iswrune(c)		__iswrune(c)
+#define	nextwctype(c, t)	__nextwctype(c, t)
+#endif
+
 /* character classification functions */
 
 /* iswascii is still a macro */