summaryrefslogtreecommitdiff
path: root/src/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/stdlib.h
blob: 3d8239713a3e1674dcaacbb2a4378ddad7c20de4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#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