summaryrefslogtreecommitdiff
path: root/src/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/stddef.h
blob: b0b97c32c1dbe82dddc3bb5a4f33e62525b7a967 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _MSL_STDDEF_H_
#define _MSL_STDDEF_H_

#include <cstddef>

#ifdef __cplusplus
extern "C" {

namespace std {
    using ::ptrdiff_t;
    using ::size_t;
}

};
#endif

#endif