Displaying 2 results from an estimated 2 matches for "wokan".
Did you mean:
hokan
2007 Sep 12
0
Two GCC warnings flags you should enable ASAP
...his helps.
Cheers,
Erik
--
-----------------------------------------------------------------
Erik de Castro Lopo
-----------------------------------------------------------------
"I don't think any MS Exec will ever die of old age. Satan
doesn't need the competition."
-- Digital Wokan on LinuxToday.com
2007 Sep 12
3
Two GCC warnings flags you should enable ASAP
Josh,
There are two GCC warning flags you should enable for all the
C code ASAP. From the gcc man page:
-Wmissing-prototypes (C only)
Warn if a global function is defined without a previous prototype
declaration. This warning is issued even if the definition itself
provides a prototype. The aim is to detect global functions that
fail to be declared in header files.