Files
2024-09-05 17:44:58 -06:00

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