summaryrefslogtreecommitdiff
path: root/include/global.h
diff options
context:
space:
mode:
authorMarcus Huderle <huderlem@gmail.com>2018-04-06 17:14:07 -0700
committerGitHub <noreply@github.com>2018-04-06 17:14:07 -0700
commit18a6fb5c3fcdc852a8ee805ba02b2807938e1de8 (patch)
tree8b31e761c5b2b03e2b5200baec6755f6a3273fe5 /include/global.h
parented5847cb41c48357d83b92823e08393a1ca54bdd (diff)
parent9e4bf55716fb5a27bc2f6eee4a489e48327eac3f (diff)
Merge pull request #586 from PikalaxALT/nakamura
Nakamura debug menu
Diffstat (limited to 'include/global.h')
-rw-r--r--include/global.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/global.h b/include/global.h
index 0949c87cb..4437b7feb 100644
--- a/include/global.h
+++ b/include/global.h
@@ -1,6 +1,8 @@
#ifndef GUARD_GLOBAL_H
#define GUARD_GLOBAL_H
+#include <string.h>
+#include <stdlib.h>
#include "config.h" // we need to define config before gba headers as print stuff needs the functions nulled before defines.
#include "gba/gba.h"
@@ -14,10 +16,6 @@
#define INCBIN_S8 {0}
#define INCBIN_S16 {0}
#define INCBIN_S32 {0}
-void *memcpy (void *, const void *, size_t);
-void *memset (void *, int, size_t);
-int strcmp (const char *, const char *);
-#define abs(a) ((a) >= 0 ? (a) : -(a))
#endif
// Prevent cross-jump optimization.