[git commit master 1/1] stdlib.h: move MB_CUR_MAX = 1 from wchar-stub.h

Peter S. Mazinger ps.m at gmx.net
Wed Mar 9 14:06:17 UTC 2011


commit: http://git.uclibc.org/uClibc/commit/?id=d57b631e82529b2c880f5d7e4fbcd88042803f80
branch: http://git.uclibc.org/uClibc/commit/?id=refs/heads/master

Signed-off-by: Peter S. Mazinger <ps.m at gmx.net>
---
 include/stdlib.h     |    4 +++-
 include/wchar-stub.h |    1 -
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/include/stdlib.h b/include/stdlib.h
index 6afc321..c533bd5 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -143,9 +143,11 @@ __END_NAMESPACE_C99
 extern size_t __ctype_get_mb_cur_max (void) __THROW __wur;
 #else
 #ifdef __UCLIBC_HAS_WCHAR__
-#define	MB_CUR_MAX	(_stdlib_mb_cur_max ())
+# define	MB_CUR_MAX	(_stdlib_mb_cur_max ())
 extern size_t _stdlib_mb_cur_max (void) __THROW __wur;
 libc_hidden_proto(_stdlib_mb_cur_max)
+#else
+# define	MB_CUR_MAX	1
 #endif
 #endif
 
diff --git a/include/wchar-stub.h b/include/wchar-stub.h
index 0b0aa29..918c78d 100644
--- a/include/wchar-stub.h
+++ b/include/wchar-stub.h
@@ -7,7 +7,6 @@
 #ifndef _WCHAR_H
 #define _WCHAR_H
 
-#define MB_CUR_MAX 1
 typedef unsigned int wint_t;
 #define WEOF (0xffffffffu)
 
-- 
1.7.3.4



More information about the uClibc-cvs mailing list