renamed msl_c -> MSL_C

This commit is contained in:
Zen64
2022-03-19 23:44:14 -04:00
parent 6e4adde5d2
commit 1303dd683e
217 changed files with 15997 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#ifndef MSL_COMMON_SRC_PRINTF_H
#define MSL_COMMON_SRC_PRINTF_H
#include "Runtime.PPCEABI.H/__va_arg.h"
#include "dolphin/types.h"
extern "C" size_t sprintf(const char*, const char*, ...);
extern "C" size_t snprintf(const char*, size_t, const char*, ...);
extern "C" size_t vsnprintf(char*, size_t, const char*, va_list);
extern "C" size_t vprintf(const char*, va_list);
extern "C" size_t printf(const char*, ...);
#endif /* MSL_COMMON_SRC_PRINTF_H */