summaryrefslogtreecommitdiff
path: root/src/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/cstdlib
blob: a98bcf8b618e1aa6ee79e96f093db7ba4d7a14c7 (plain)
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