Pelles C forum

C language => Beginner questions => Topic started by: akko on February 20, 2007, 06:01:59 PM

Title: Suppress warning #2027 ?
Post by: akko on February 20, 2007, 06:01:59 PM
Is it possible to suppress individual warnings?
I don't want to declare prototypes because nearly all functions are just void.
The output is cluttered with about 100 warnings which I don't need at all.
Title: Suppress warning #2027 ?
Post by: Sanguis on February 20, 2007, 06:46:07 PM
Use:
Code: [Select]
#pragma warn(disable: 2027)