#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
