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
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