hollyhock
Loading...
Searching...
No Matches
stdlib.h
1#ifdef __cplusplus
2#define _GLIBCXX_INCLUDE_NEXT_C_HEADERS
3#include_next <stdlib.h>
4#undef _GLIBCXX_INCLUDE_NEXT_C_HEADERS
5
6#undef setenv
7#undef itoa
8
9extern "C++"
10{
11namespace std
12{
13 using ::setenv;
14 using ::itoa;
15} // namespace std
16
17using std::setenv;
18using std::itoa;
19} // extern C++
20
21#endif // __cplusplus
22#include_next <stdlib.h>