[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[commits] r3935 - in /trunk/libc: ChangeLog.eglibc bits/wchar.h



Author: jimb
Date: Wed Oct 24 13:52:07 2007
New Revision: 3935

Log:
* bits/wchar.h (__WCHAR_MIN): Add missing underscores to name.

Modified:
    trunk/libc/ChangeLog.eglibc
    trunk/libc/bits/wchar.h

Modified: trunk/libc/ChangeLog.eglibc
==============================================================================
--- trunk/libc/ChangeLog.eglibc (original)
+++ trunk/libc/ChangeLog.eglibc Wed Oct 24 13:52:07 2007
@@ -1,3 +1,7 @@
+2007-10-23  Jim Blandy  <jimb@xxxxxxxxxxxxxxxx>
+
+	* bits/wchar.h (__WCHAR_MIN): Add missing underscores to name.
+
 2007-10-07  Jim Blandy  <jimb@xxxxxxxxxxxxxxxx>
 
 	Implement the OPTION_EGLIBC_CXX_TESTS option group.

Modified: trunk/libc/bits/wchar.h
==============================================================================
--- trunk/libc/bits/wchar.h (original)
+++ trunk/libc/bits/wchar.h Wed Oct 24 13:52:07 2007
@@ -30,14 +30,14 @@
 /* GCC may also define __WCHAR_UNSIGNED__.
    Use L'\0' to give the expression the correct (unsigned) type.  */
 #ifdef __WCHAR_UNSIGNED__
-#define WCHAR_MIN       L'\0'
+#define __WCHAR_MIN       L'\0'
 
 /* Failing that, rely on the preprocessor's knowledge of the
    signedness of wchar_t.  */
 #elif L'\0' - 1 > 0
-#define WCHAR_MIN       L'\0'
+#define __WCHAR_MIN       L'\0'
 #else
-#define WCHAR_MIN       (-WCHAR_MAX - 1)
+#define __WCHAR_MIN       (-__WCHAR_MAX - 1)
 #endif
 
 #endif	/* bits/wchar.h */