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

#include <cstddef>

#ifdef __cplusplus
extern "C" {
#endif

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

#ifdef __cplusplus
};
#endif

#endif