Allow the checking of definition modules

This commit is contained in:
ceriel
1988-01-22 12:04:27 +00:00
parent 03e1f5dc93
commit ca166d25e9
4 changed files with 13 additions and 8 deletions

View File

@@ -20,10 +20,11 @@
#define W_ORDINARY 1
#define W_STRICT 2
#define W_OLDFASHIONED 4
#define W_ALWAYS 010 /* always given */
#define W_ALL (W_ORDINARY|W_STRICT|W_OLDFASHIONED)
#define W_ALL (W_ORDINARY|W_STRICT|W_OLDFASHIONED|W_ALWAYS)
#define W_INITIAL (W_ORDINARY | W_OLDFASHIONED)
#define W_INITIAL (W_ORDINARY | W_OLDFASHIONED | W_ALWAYS)
/* The bit mask itself: */
extern int warning_classes;