I get lots of easily preventable warnings when compiling tuxnes. Stuff
like:
emu.c:1185: warning: no previous prototype for `set_homedir'
emu.c:1200: warning: no previous prototype for `prep_conf_dir'
Some of these may cause bugs or slower performance. (For instance in
this case, most likely these functions should be static.)
To find these run make as
make CFLAGS="-g -O -Wall -Werror -Wcast-align -Wmissing-prototypes
-Wmissing-declarations"
-jason
|