mirror of
https://github.com/encounter/ogws.git
synced 2026-03-30 11:33:37 -07:00
15 lines
214 B
Plaintext
15 lines
214 B
Plaintext
#ifndef MSL_CPP_CSTDDEF_H
|
|
#define MSL_CPP_CSTDDEF_H
|
|
#include <stddef.h>
|
|
#ifdef __cplusplus
|
|
|
|
namespace std {
|
|
using ::intptr_t;
|
|
using ::ptrdiff_t;
|
|
using ::size_t;
|
|
using ::uintptr_t;
|
|
} // namespace std
|
|
|
|
#endif
|
|
#endif
|