summaryrefslogtreecommitdiff
path: root/src/boot_O2/printutils.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/boot_O2/printutils.c')
-rw-r--r--src/boot_O2/printutils.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/boot_O2/printutils.c b/src/boot_O2/printutils.c
deleted file mode 100644
index 3fb8cf367..000000000
--- a/src/boot_O2/printutils.c
+++ /dev/null
@@ -1,17 +0,0 @@
-#include "global.h"
-
-s32 PrintUtils_VPrintf(PrintCallback* pfn, const char* fmt, va_list args) {
- return _Printf(*pfn, pfn, fmt, args);
-}
-
-s32 PrintUtils_Printf(PrintCallback* pfn, const char* fmt, ...) {
- s32 ret;
- va_list args;
- va_start(args, fmt);
-
- ret = PrintUtils_VPrintf(pfn, fmt, args);
-
- va_end(args);
-
- return ret;
-}