From f9660f90394bae4e63d20005c592fd96ef967d0d Mon Sep 17 00:00:00 2001 From: Aiden Gall Date: Tue, 14 Oct 2025 19:24:44 +0100 Subject: use __noinline__ to avoid possible name collision --- tco.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tco.h b/tco.h index 897f2fa..4dd8bd2 100644 --- a/tco.h +++ b/tco.h @@ -14,7 +14,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ #if defined(__GNUC__) || defined(__clang__) -#define coroutine __attribute__((noinline)) +#define coroutine __attribute__((__noinline__)) #else #define coroutine #endif -- cgit v1.2.3