* include/c_std/bits/std_cstdlib.h (mblen): Protect against macro.

From-SVN: r38574
This commit is contained in:
Alexandre Oliva 2001-01-01 00:06:50 +00:00 committed by Alexandre Oliva
parent 6ec9201068
commit 2b872543ba
2 changed files with 7 additions and 0 deletions

View File

@ -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.

View File

@ -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);