1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#ifndef MSL_CSTDLIB_H_ #define MSL_CSTDLIB_H_ #include <abort_exit.h> #include <arith.h> #include <strtoul.h> #ifdef __cplusplus extern "C" { namespace std { using ::strtol; using ::strtoul; using ::div; using ::exit; using ::abort; using ::atoi; using ::atof; } }; #endif #endif