[iQue] Build some C files with EGCS (#2396)

This commit is contained in:
cadmic
2025-01-02 00:35:22 -08:00
committed by GitHub
parent ffc9f2d4f1
commit 9dafc2f2e4
19 changed files with 121 additions and 37 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ __attribute__((noreturn)) void __assert(const char* assertion, const char* file,
// Static/compile-time assertions
#if !defined(__sgi) && (defined(__GNUC__) || (__STDC_VERSION__ >= 201112L))
#if !defined(__sgi) && (__GNUC__ >= 5 || __STDC_VERSION__ >= 201112L)
# define static_assert(cond, msg) _Static_assert(cond, msg)
#else
# ifndef GLUE