summaryrefslogtreecommitdiff
path: root/include/gba/defines.h
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2018-04-07 22:49:37 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2018-04-07 22:49:37 -0400
commit83bb25e7af1837d41177d84f1b03d83b42b9478c (patch)
tree291c3d1502ba75445aad0aa95b9fc68f88b7bf97 /include/gba/defines.h
parent978bdaaa050420289374ddc23aa0017df06e4000 (diff)
through DebugMenu_807786C; use macro NAKED instead of __attribute__((naked))
Diffstat (limited to 'include/gba/defines.h')
-rw-r--r--include/gba/defines.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/gba/defines.h b/include/gba/defines.h
index 7fd429d9e..26e0c873f 100644
--- a/include/gba/defines.h
+++ b/include/gba/defines.h
@@ -8,6 +8,8 @@
#define IWRAM_DATA __attribute__((section("iwram_data")))
#define EWRAM_DATA __attribute__((section("ewram_data")))
+#define UNUSED __attribute__((unused))
+#define NAKED __attribute__((naked))
#define ALIGNED(n) __attribute__((aligned(n)))