I was trying to get rid of all of the warnings on my program so I compiled with
Code:
gcc main.c -o main.exe -W -Wall -ansi
I did this and corrected some things but now all that I have left is to get rid of the implicit declarations. I have a bunch of warnings such as
Code:
main.c:421: warning: implicit declaration of function 'toupper'
I have these for a few functions. How do I get rid of them?
~Sven