mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-20 22:17:40 -05:00
20 lines
346 B
C
20 lines
346 B
C
#ifndef _MSL_VA_LIST_H
|
|
#define _MSL_VA_LIST_H
|
|
|
|
_MSL_BEGIN_NAMESPACE_STD
|
|
_MSL_BEGIN_EXTERN_C
|
|
|
|
#ifndef _MSL_VA_LIST_TYPE
|
|
#define _MSL_VA_LIST_TYPE char *
|
|
#endif
|
|
|
|
#ifndef _MSL_VA_LIST_DEFINED
|
|
typedef _MSL_VA_LIST_TYPE va_list;
|
|
#define _MSL_VA_LIST_DEFINED
|
|
#endif
|
|
|
|
_MSL_END_EXTERN_C
|
|
_MSL_END_NAMESPACE_STD
|
|
|
|
#endif
|