Hello
In VC++ I can disable some kind of warnings with #pragma warnings disable...
Are there such method in Pelles C?
help file is a your friend:
#pragma warn( { push | pop | { enable | disable }[:] number ... } ) [2.90]
commandline:
The /Wd option disables the compiler warning specified by number. The warning number is displayed in the warning message from the compiler as #number
Thank you mr. Cat, all works.