mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
25 lines
354 B
Plaintext
25 lines
354 B
Plaintext
#ifndef _MSL_CSTDARG
|
|
#define _MSL_CSTDARG
|
|
|
|
#include <ansi_params.h>
|
|
|
|
#if !_MSL_USING_MW_C_HEADERS
|
|
#include <stdarg.h>
|
|
|
|
#if _MSL_PUT_THIRD_PARTY_C_IN_STD
|
|
#include <msl_cpp_std_stdarg.h>
|
|
#endif
|
|
#else
|
|
|
|
#include <va_list.h>
|
|
|
|
#if __dest_os == __arm_bare
|
|
#include <stdarg.ARM.h>
|
|
#else
|
|
#error Unknown platform
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|