Skip to content

Commit

Permalink
Disable argument width macro on TCC
Browse files Browse the repository at this point in the history
Fixes issue nemequ#97
  • Loading branch information
dargueta authored Sep 11, 2023
1 parent fbbdf14 commit 532edba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion munit.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 532edba

Please sign in to comment.