mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-20 22:17:40 -05:00
26 lines
407 B
C
26 lines
407 B
C
#ifndef _MSL_SIZE_T_H
|
|
#define _MSL_SIZE_T_H
|
|
|
|
#include <ansi_params.h>
|
|
|
|
#ifndef RC_INVOKED
|
|
|
|
_MSL_BEGIN_NAMESPACE_STD
|
|
_MSL_BEGIN_EXTERN_C
|
|
|
|
#ifndef _MSL_SIZE_T_TYPE
|
|
#define _MSL_SIZE_T_TYPE __typeof__(sizeof(0))
|
|
#endif
|
|
|
|
#ifndef _MSL_SIZE_T_DEFINED
|
|
#define _MSL_SIZE_T_DEFINED
|
|
typedef _MSL_SIZE_T_TYPE size_t;
|
|
#endif
|
|
|
|
_MSL_END_EXTERN_C
|
|
_MSL_END_NAMESPACE_STD
|
|
|
|
#endif
|
|
|
|
#endif
|