Add patches to tcc-0.9.26 for pnut compatiblity

This commit is contained in:
Laurent Huberdeau 2025-03-30 22:46:49 -04:00
parent 2057d551e0
commit 8e3e9c16e9
8 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,5 @@
#ifdef PNUT_CC
a = 0; b = 9; c = 26;
#else
sscanf(TCC_VERSION, "%d.%d.%d", &a, &b, &c);
#endif