diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-06-01 19:59:03 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-06-01 19:59:03 +0200 |
commit | 493d0cc28b0d0fa1dc571ffc876b554376ccdd47 (patch) | |
tree | 3ec057a08c2aad5cf43f55ca94e3b243e409f698 /libc/stdlib | |
parent | c526740e06e1f7cc0a4747e319c18cde93523482 (diff) |
remove MJN only debug messages
Diffstat (limited to 'libc/stdlib')
-rw-r--r-- | libc/stdlib/drand48-iter.c | 3 | ||||
-rw-r--r-- | libc/stdlib/stdlib.c | 11 |
2 files changed, 0 insertions, 14 deletions
diff --git a/libc/stdlib/drand48-iter.c b/libc/stdlib/drand48-iter.c index b4b7b33b0..1ddf40204 100644 --- a/libc/stdlib/drand48-iter.c +++ b/libc/stdlib/drand48-iter.c @@ -26,9 +26,6 @@ /* Global state for non-reentrant functions. */ struct drand48_data __libc_drand48_data; -#ifdef __UCLIBC_MJN3_ONLY__ -#warning turn int __drand48_iterate into void -#endif /* __UCLIBC_MJN3_ONLY__ */ int __drand48_iterate (unsigned short int xsubi[3], struct drand48_data *buffer) { uint64_t X; diff --git a/libc/stdlib/stdlib.c b/libc/stdlib/stdlib.c index 6c887eabc..075e6e5d6 100644 --- a/libc/stdlib/stdlib.c +++ b/libc/stdlib/stdlib.c @@ -70,12 +70,6 @@ #else /* __UCLIBC_HAS_LOCALE__ */ -#ifdef __UCLIBC_MJN3_ONLY__ -#ifdef L_mblen -/* emit only once */ -#warning devel checks -#endif -#endif #ifdef __CTYPE_HAS_8_BIT_LOCALES #error __CTYPE_HAS_8_BIT_LOCALES is defined! #endif @@ -821,11 +815,6 @@ size_t _stdlib_mb_cur_max(void) #ifdef __CTYPE_HAS_UTF_8_LOCALES return __UCLIBC_CURLOCALE->mb_cur_max; #else -#ifdef __CTYPE_HAS_8_BIT_LOCALES -#ifdef __UCLIBC_MJN3_ONLY__ -#warning need to change this when/if transliteration is implemented -#endif -#endif return 1; #endif } |