summaryrefslogtreecommitdiff
path: root/src/audio
diff options
context:
space:
mode:
authorcadmic <cadmic24@gmail.com>2025-01-13 05:32:25 -0800
committerGitHub <noreply@github.com>2025-01-13 08:32:25 -0500
commitbdc6b5015374cdedcc7b599d3774537bc2802ae1 (patch)
tree36a761b84d1efb5ead691646ed64b9cf94939188 /src/audio
parentdbfa95fd01d486ab709d74428c5f666dcc0208ee (diff)
[iQue] Define EGCS macro instead of relying on `__GNUC__` (#2423)
* [iQue] Define EGCS macro instead of relying on __GNUC__ * Revert longlong.h
Diffstat (limited to 'src/audio')
-rw-r--r--src/audio/general.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/audio/general.c b/src/audio/general.c
index cb87548fa..2a639275b 100644
--- a/src/audio/general.c
+++ b/src/audio/general.c
@@ -8,8 +8,6 @@
#define AUDIO_PRINTF osSyncPrintf
#elif IDO_PRINTF_WORKAROUND
#define AUDIO_PRINTF(args) (void)0
-#elif defined(__GNUC__) && __GNUC__ < 3
-#define AUDIO_PRINTF(format, args...) (void)0
#else
#define AUDIO_PRINTF(format, ...) (void)0
#endif