Conversation
need to poke at xploremoar compile flags 'cause gcc got quite more picky between *checks* 12.2 and 15.2 apparently

is there a --Wstfu-this-is-old-shite-i-know-thanks flag or something like that
1
0
1
--std=gnu99 --fpermissive seem to do the job, dunno why older versions didn't care nor why the -w gets ignored

also k&r c is valid c, fuck whoever decided otherwise, i'm not rewriting the clone implementation of the at&t regexp mess that ships with the code
2
0
1

@evv42 fpermissive is a godsend. but even with it enabled i’ve had a bunch of trouble compiling older code :/

1
0
0
@domi i tend to easily give up when the compiler's annoying, this project has been very lucky to not have any major roadblock when i wasn't too deep into poking at it
0
0
1

@evv42 GCC 15 defaults to -std=gnu23. C23 removes implicit int and K&R-style non-prototype function definitions (although the latter is only a warning by default)

0
0
0