aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/ds/arm9/source/portdefs.h
diff options
context:
space:
mode:
Diffstat (limited to 'backends/platform/ds/arm9/source/portdefs.h')
-rw-r--r--backends/platform/ds/arm9/source/portdefs.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/backends/platform/ds/arm9/source/portdefs.h b/backends/platform/ds/arm9/source/portdefs.h
index 8a14420907..58d4df9020 100644
--- a/backends/platform/ds/arm9/source/portdefs.h
+++ b/backends/platform/ds/arm9/source/portdefs.h
@@ -38,7 +38,6 @@ typedef signed int s32;
#include "nds/jtypes.h"
-
// Somebody removed these from scummsys.h, but they're still required, so I'm adding them here
// in the hope that they'll stay.
#include <stdio.h>
@@ -47,7 +46,6 @@ typedef signed int s32;
#include <stdarg.h>
#include <ctype.h>
#include <math.h>
-#include <time.h>
#define double float
@@ -76,8 +74,6 @@ int consolePrintf(const char* s, ...);
//#define debug(fmt, ...) consolePrintf(fmt, ##__VA_ARGS__)
//#define debug(fmt, ...) debug(0, fmt, ##__VA_ARGS__)
-#define time(t) DS_time(t)
-//#define memcpy(dest, src, size) DS_memcpy(dest, src, size)
#define ITCM_DATA __attribute__((section(".itcm")))
@@ -86,11 +82,4 @@ int consolePrintf(const char* s, ...);
// a more conventional form of input where the menus can be clicked on.
#define LURE_CLICKABLE_MENUS
-//#include "common/array.h"
-//#include "common/str.h"
-
-time_t DS_time(time_t* t);
-time_t DS_time(long* t);
-void* DS_memcpy(void* s1, void const* s2, size_t n);
-
#endif