diff src/text.h @ 912:e10cdc51a200

[xemacs-hg @ 2002-07-09 11:58:12 by michaels] 2002-07-08 Mike Sperber <mike@xemacs.org> * text.h: Only include wchar.h if we have it; define wcslen prototype if we don't. * config.h.in: Add stub for HAVE_WCHAR_H. * sysdep.c (wcslen): Added definition for systems which don't have it.
author michaels
date Tue, 09 Jul 2002 11:58:12 +0000
parents 804517e16990
children e22b0213b713
line wrap: on
line diff
--- a/src/text.h	Tue Jul 09 11:57:49 2002 +0000
+++ b/src/text.h	Tue Jul 09 11:58:12 2002 +0000
@@ -33,7 +33,11 @@
 #ifndef INCLUDED_text_h_
 #define INCLUDED_text_h_
 
+#ifdef HAVE_WCHAR_H
 #include <wchar.h>
+#else
+size_t wcslen(const wchar_t *);
+#endif
 
 /* ---------------------------------------------------------------------- */
 /*                     Super-basic character properties                   */