summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAetias <aetias@outlook.com>2024-10-12 16:16:17 +0200
committerAetias <aetias@outlook.com>2024-10-12 16:16:17 +0200
commit74a29deff311fb7bc51028ae9bf4272d7835cb8c (patch)
tree5e0c551c877abb1bf04c79a111e5a9325191d73e /include
parentb2f57385a053a3d9bbb8166b0b139430e8db5fb2 (diff)
Remove `elfkill`
Diffstat (limited to 'include')
-rw-r--r--include/global.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/global.h b/include/global.h
index 838b1732..4bb45910 100644
--- a/include/global.h
+++ b/include/global.h
@@ -7,8 +7,6 @@
#define SET_FLAG(arr, pos) ((arr)[((u32)(pos)) >> 5] |= 1 << ((pos) & 0x1f))
#define RESET_FLAG(arr, pos) ((arr)[((u32)(pos)) >> 5] &= ~(1 << ((pos) & 0x1f)))
-// KILL(name) causes a function to be excluded from the output ROM, see elfkill.cpp
-#define KILL(name)
// Prevent the IDE from reporting errors that the compiler/linker won't report
#ifdef __INTELLISENSE__