From 532edba58aff47517cb89063d1fe539fe04fa0d1 Mon Sep 17 00:00:00 2001 From: Diego Argueta Date: Mon, 11 Sep 2023 07:13:42 -0700 Subject: [PATCH] Disable argument width macro on TCC Fixes issue #97 --- munit.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/munit.h b/munit.h index 8460a45..d9ae23e 100644 --- a/munit.h +++ b/munit.h @@ -131,7 +131,7 @@ extern "C" { # define MUNIT_UNUSED #endif -#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) && !defined(__PGI) +#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) && !defined(__PGI) && !defined(__TINYC__) # define MUNIT_ARRAY_PARAM(name) name #else # define MUNIT_ARRAY_PARAM(name)