Turn on a implicit-function-declaration warning by default.

A non declared function leads to a seriuos problems. And while
gcc don't turn this warning on lets tcc do it. This warning
can be turned off by -Wno-implicit-function-declaration option.
And autor must explicitly do this if program must be compiled
with this warning off.
This commit is contained in:
seyko
2015-03-03 16:32:25 +03:00
parent 7f36abd3f2
commit b5f88b593a
4 changed files with 5 additions and 0 deletions

View File

@ -1,4 +1,5 @@
#include <stdio.h>
#include <stdlib.h> // atoi()
int fib(n)
{