summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKEKW555 <152369890+KEKW555@users.noreply.github.com>2024-01-06 23:21:04 +0530
committerGitHub <noreply@github.com>2024-01-06 23:21:04 +0530
commitff469a54cfc5a1c11aac53f31b960d882c7f19da (patch)
tree3ce4f403adde95737de7ff6cd10e3aebf3693478
parent743f3f3080fa917130ff63edab33adb348aaf317 (diff)
Remove generic macro for argument list safety
-rw-r--r--include/global.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/global.h b/include/global.h
index dcb2a5b8..00db197e 100644
--- a/include/global.h
+++ b/include/global.h
@@ -130,10 +130,6 @@ typedef union {
} HALF_U;
} SplitDWord;
-typedef u64 (*MultiReturnFunctionType)();
-
-#define MULTI_RETURN_FUNCTION_CALL(func, ...) ((SplitDWord)((*(MultiReturnFunctionType)(&func))(__VA_ARGS__)))
-
union SplitWord {
s32 WORD;
u32 WORD_U;