#ifndef _MSL_STDLIB_H_
#define _MSL_STDLIB_H_

#include <cstdlib>

#ifdef __cplusplus
extern "C" {
#endif

namespace std {
    using ::strtol;
    using ::strtoul;
    using ::div;
    using ::exit;
    using ::abort;
    using ::atoi;
    using ::atof;
}

#ifdef __cplusplus
};
#endif

#endif
