Re: [Tinycc-devel] some problems after recent commit

2025-09-18 Thread grischka via Tinycc-devel
On 08.09.2025 21:31, Herman ten Brugge via Tinycc-devel wrote: I found two new problems with recent commit. Thanks for checking. Should be fixed. There are maybe more problems that I did not find yet. You found a lot already ... ;) -- gr ___ Ti

[Tinycc-devel] some problems after recent commit

2025-09-08 Thread Herman ten Brugge via Tinycc-devel
I found two new problems with recent commit. first one: int main(void) {   char *f(char *s); } char *f(char *s) {   return s; } results in: error: incompatible types for redefinition of 'f' second one: #include int main(void) {   _Static_assert(1, "");   _Static_assert(!NULL, ""); } results