You are on page 1of 1

Data Definitions

Example Files:

ex_extee.c

Also See:

#ifdef, #ifndef

#IGNORE_WARNINGS
Syntax:

#ignore_warnings ALL
#IGNORE_WARNINGS NONE
#IGNORE_WARNINGS warnings

Elements:

warnings is one or more warning numbers separated by


commas

Purpose:

This function will suppress warning messages from the


compiler. ALL indicates no warning will be generated.
NONE indicates all warnings will be generated. If numbers
are listed then those warnings are suppressed.

Examples:

#ignore_warnings 203
while(TRUE) {
#ignore_warnings NONE

Example Files:

None

Also See:

Warning messages

45

You might also like