diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2021-07-25 13:23:02 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2021-07-25 13:23:02 -0400 |
commit | 5e0e326b75402a36c4d31502b8b5a05b862ac23c (patch) | |
tree | 1b5807c1efb72dbdd9d01f329cefb41171913a64 /arm9/lib/include/OS_printf.h | |
parent | 1f9d4503c898f9138422215132b53224571a281a (diff) | |
parent | 68d7aa47cc52ef822220e0e35890863d7cad479f (diff) |
Merge remote-tracking branch 'origin/master' into pikalax_work
Diffstat (limited to 'arm9/lib/include/OS_printf.h')
-rw-r--r-- | arm9/lib/include/OS_printf.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/arm9/lib/include/OS_printf.h b/arm9/lib/include/OS_printf.h deleted file mode 100644 index acb7f8c7..00000000 --- a/arm9/lib/include/OS_printf.h +++ /dev/null @@ -1,15 +0,0 @@ -#ifndef NITRO_OS_PRINTF_H_ -#define NITRO_OS_PRINTF_H_ - -#define OS_Warning( ... ) ((void)0) -#define OS_TPanic(...) OS_Terminate() -#define OS_TWarning(...) ((void)0) - -#include "nitro/types.h" - -s32 OS_SPrintf(s8 *buffer, const s8 *format, ...); -s32 OS_VSPrintf(s8 *buffer, const s8 *format, void *args); -s32 OS_SNPrintf(s8 *buffer, s32 bufsz, const s8 *format, ...); -s32 OS_VSNPrintf(s8 *buffer, s32 bufsz, const s8 *format, void *args); - -#endif //NITRO_OS_PRINTF_H_ |