diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-02-14 09:28:28 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-02-14 09:28:28 +0000 |
commit | 89a480a8435286e84e25457e503112976cb98098 (patch) | |
tree | 7a592d5ea8cc24b9d1d4e7bd49fb2c8ad91f699a /include/stdlib.h | |
parent | c2ca92378f1ae22c1c8bf3b03aa3635f46fcc240 (diff) | |
download | uClibc-alpine-89a480a8435286e84e25457e503112976cb98098.tar.bz2 uClibc-alpine-89a480a8435286e84e25457e503112976cb98098.tar.xz |
Disable a lingering bit of wide char junk
Diffstat (limited to 'include/stdlib.h')
-rw-r--r-- | include/stdlib.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index ab7baca5c..302f2819a 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -130,10 +130,11 @@ __extension__ typedef struct #define EXIT_SUCCESS 0 /* Successful exit status. */ +#if 0 /* Maximum length of a multibyte character in the current locale. */ #define MB_CUR_MAX (__ctype_get_mb_cur_max ()) extern size_t __ctype_get_mb_cur_max (void) __THROW; - +#endif /* Convert a string to a floating-point number. */ extern double atof (__const char *__nptr) __THROW __attribute_pure__; |