mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-26 21:33:59 +08:00
* include/c_std/bits/std_cstdlib.h (mblen): Protect against macro.
From-SVN: r38574
This commit is contained in:
parent
6ec9201068
commit
2b872543ba
@ -1,3 +1,7 @@
|
||||
2000-12-31 Alexandre Oliva <aoliva@redhat.com>
|
||||
|
||||
* include/c_std/bits/std_cstdlib.h (mblen): Protect against macro.
|
||||
|
||||
2000-12-23 Benjamin Kosnik <bkoz@redhat.com>
|
||||
|
||||
* src/Makefile.am (CSTD_INCLUDES): Change from CSHADOW_INCLUDES.
|
||||
|
@ -85,6 +85,9 @@ namespace std
|
||||
extern "C" long int labs(long int);
|
||||
extern "C" div_t div(int, int);
|
||||
extern "C" ldiv_t ldiv(long int, long int);
|
||||
#ifdef mblen
|
||||
#undef mblen
|
||||
#endif
|
||||
extern "C" int mblen(const char*, size_t);
|
||||
extern "C" int mbtowc(wchar_t*, const char*, size_t);
|
||||
extern "C" int wctomb(char*, wchar_t);
|
||||
|
Loading…
Reference in New Issue
Block a user