Files

17 lines
235 B
Plaintext
Raw Permalink Normal View History

2023-06-19 10:40:14 -04:00
#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