mirror of
https://github.com/encounter/ogws-dtk.git
synced 2026-03-30 11:33:39 -07:00
17 lines
235 B
Plaintext
17 lines
235 B
Plaintext
#ifndef MSL_CPP_CSTDLIB_H
|
|
#define MSL_CPP_CSTDLIB_H
|
|
#include <stdlib.h>
|
|
#ifdef __cplusplus
|
|
|
|
namespace std {
|
|
using ::abs;
|
|
using ::atof;
|
|
using ::mbstowcs;
|
|
using ::mbtowc;
|
|
using ::rand;
|
|
using ::wcstombs;
|
|
} // namespace std
|
|
|
|
#endif
|
|
#endif
|