The C Preprocessor: Richard M. Stallman, Zachary Weinberg
The C Preprocessor: Richard M. Stallman, Zachary Weinberg
Table of Contents
1 Overview . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1.1 Character sets . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1.2 Initial processing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
1.3 Tokenization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
1.4 The preprocessing language . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
2 Header Files . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
2.1 Include Syntax . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
2.2 Include Operation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
2.3 Search Path. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
2.4 Once-Only Headers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
2.5 Computed Includes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
2.6 Wrapper Headers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
2.7 System Headers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
3 Macros . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
3.1 Object-like Macros . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
3.2 Function-like Macros . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
3.3 Macro Arguments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
3.4 Stringification . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16
3.5 Concatenation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
3.6 Variadic Macros . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19
3.7 Predefined Macros. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20
3.7.1 Standard Predefined Macros . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20
3.7.2 Common Predefined Macros . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
3.7.3 System-specific Predefined Macros . . . . . . . . . . . . . . . . . . . . . . 26
3.7.4 C++ Named Operators . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
3.8 Undefining and Redefining Macros . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
3.9 Directives Within Macro Arguments . . . . . . . . . . . . . . . . . . . . . . . . . 28
3.10 Macro Pitfalls. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28
3.10.1 Misnesting . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28
3.10.2 Operator Precedence Problems . . . . . . . . . . . . . . . . . . . . . . . . 29
3.10.3 Swallowing the Semicolon . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 30
3.10.4 Duplication of Side Effects . . . . . . . . . . . . . . . . . . . . . . . . . . . . 30
3.10.5 Self-Referential Macros . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31
3.10.6 Argument Prescan . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 32
3.10.7 Newlines in Arguments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33
ii
4 Conditionals . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33
4.1 Conditional Uses . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 34
4.2 Conditional Syntax . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 34
4.2.1 Ifdef . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 34
4.2.2 If . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36
4.2.3 Defined . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36
4.2.4 Else . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37
4.2.5 Elif . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37
4.3 Deleted Code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38
5 Diagnostics . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38
6 Line Control . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39
7 Pragmas . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 40
8 Other Directives . . . . . . . . . . . . . . . . . . . . . . . . . . 41
9 Preprocessor Output . . . . . . . . . . . . . . . . . . . . . . 42
10 Traditional Mode . . . . . . . . . . . . . . . . . . . . . . . . 43
10.1 Traditional lexical analysis . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43
10.2 Traditional macros . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 44
10.3 Traditional miscellany . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45
10.4 Traditional warnings . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45
11 Implementation Details . . . . . . . . . . . . . . . . . . 46
11.1 Implementation-defined behavior . . . . . . . . . . . . . . . . . . . . . . . . . . . 46
11.2 Implementation limits . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47
11.3 Obsolete Features . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48
11.3.1 Assertions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48
11.3.2 Obsolete once-only headers . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49
11.4 Differences from previous versions . . . . . . . . . . . . . . . . . . . . . . . . . . 50
12 Invocation. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51
13 Environment Variables . . . . . . . . . . . . . . . . . . . 60
Index of Directives . . . . . . . . . . . . . . . . . . . . . . . . . . . 69
iii
Option Index . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 69
Concept Index . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 71
Chapter 1: Overview 1
1 Overview
The C preprocessor, often known as cpp, is a macro processor that is used automatically by
the C compiler to transform your program before compilation. It is called a macro processor
because it allows you to define macros, which are brief abbreviations for longer constructs.
The C preprocessor is intended to be used only with C, C++, and Objective-C source
code. In the past, it has been abused as a general text processor. It will choke on input
which does not obey C’s lexical rules. For example, apostrophes will be interpreted as the
beginning of character constants, and cause errors. Also, you cannot rely on it preserving
characteristics of the input which are not significant to C-family languages. If a Makefile is
preprocessed, all the hard tabs will be removed, and the Makefile will not work.
Having said that, you can often get away with using cpp on things which are not C. Other
Algol-ish programming languages are often safe (Pascal, Ada, etc.) So is assembly, with
caution. ‘-traditional-cpp’ mode preserves more white space, and is otherwise more
permissive. Many of the problems can be avoided by writing C or C++ style comments
instead of native language comments, and keeping macros simple.
Wherever possible, you should use a preprocessor geared to the language you are writing
in. Modern versions of the GNU assembler have macro facilities. Most high level program-
ming languages have their own conditional compilation and inclusion mechanism. If all else
fails, try a true general text processor, such as GNU M4.
C preprocessors vary in some details. This manual discusses the GNU C preprocessor,
which provides a small superset of the features of ISO Standard C. In its default mode,
the GNU C preprocessor does not do a few things required by the standard. These are
features which are rarely, if ever, used, and may cause surprising changes to the meaning of
a program which does not expect them. To get strict ISO Standard C, you should use the
‘-std=c89’ or ‘-std=c99’ options, depending on which version of the standard you want.
To get all the mandatory diagnostics, you must also use ‘-pedantic’. See Chapter 12
[Invocation], page 51.
This manual describes the behavior of the ISO preprocessor. To minimize gratuitous
differences, where the ISO preprocessor’s behavior does not conflict with traditional seman-
tics, the traditional preprocessor should behave the same way. The various differences that
do exist are detailed in the section Chapter 10 [Traditional Mode], page 43.
For clarity, unless noted otherwise, references to ‘CPP’ in this manual refer to GNU CPP.
All preprocessing work (the subject of the rest of this manual) is carried out in the source
character set. If you request textual output from the preprocessor with the ‘-E’ option, it
will be in UTF-8.
After preprocessing is complete, string and character constants are converted again, into
the execution character set. This character set is under control of the user; the default
is UTF-8, matching the source character set. Wide string and character constants have
their own character set, which is not called out specifically in the standard. Again, it is
under control of the user. The default is UTF-16 or UTF-32, whichever fits in the target’s
wchar_t type, in the target machine’s byte order.1 Octal and hexadecimal escape sequences
do not undergo conversion; ’\x12’ has the value 0x12 regardless of the currently selected
execution character set. All other escapes are replaced by the character in the source
character set that they represent, then converted to the execution character set, just like
unescaped characters.
Unless the experimental ‘-fextended-identifiers’ option is used, GCC does not per-
mit the use of characters outside the ASCII range, nor ‘\u’ and ‘\U’ escapes, in identifiers.
Even with that option, characters outside the ASCII range can only be specified with the
‘\u’ and ‘\U’ escapes, not used directly in identifiers.
Trigraphs are not popular and many compilers implement them incorrectly.
Portable code should not rely on trigraphs being either converted or ignored. With
‘-Wtrigraphs’ GCC will warn you when a trigraph may change the meaning of your
program if it were converted. See [Wtrigraphs], page 52.
In a string constant, you can prevent a sequence of question marks from being confused
with a trigraph by inserting a backslash between the question marks, or by separat-
ing the string literal at the trigraph and making use of string literal concatenation.
"(??\?)" is the string ‘(???)’, not ‘(?]’. Traditional C compilers do not recognize
these idioms.
The nine trigraphs and their replacements are
Trigraph: ??( ??) ??< ??> ??= ??/ ??’ ??! ??-
Replacement: [ ] { } # \ ^ | ~
3. Continued lines are merged into one long line.
A continued line is a line which ends with a backslash, ‘\’. The backslash is removed
and the following line is joined with the current one. No space is inserted, so you may
split a line anywhere, even in the middle of a word. (It is generally more readable to
split lines only at white space.)
The trailing backslash on a continued line is commonly referred to as a backslash-
newline.
If there is white space between a backslash and the end of a line, that is still a continued
line. However, as this is usually the result of an editing mistake, and many compilers
will not accept it as a continued line, GCC will warn you about it.
4. All comments are replaced with single spaces.
There are two kinds of comments. Block comments begin with ‘/*’ and continue until
the next ‘*/’. Block comments do not nest:
/* this is /* one comment */ text outside comment
Line comments begin with ‘//’ and continue to the end of the current line. Line
comments do not nest either, but it does not matter, because they would end in the
same place anyway.
// this is // one comment
text outside comment
Since these transformations happen before all other processing, you can split a line
mechanically with backslash-newline anywhere. You can comment out the end of a line.
You can continue a line comment onto the next line with backslash-newline. You can even
split ‘/*’, ‘*/’, and ‘//’ onto multiple lines with backslash-newline. For example:
/\
*
*/ # /*
*/ defi\
ne FO\
O 10\
20
is equivalent to #define FOO 1020. All these tricks are extremely confusing and should not
be used in code intended to be readable.
There is no way to prevent a backslash at the end of a line from being interpreted as a
backslash-newline. This cannot affect any correct program, however.
1.3 Tokenization
After the textual transformations are finished, the input file is converted into a sequence
of preprocessing tokens. These mostly correspond to the syntactic tokens used by the C
compiler, but there are a few differences. White space separates tokens; it is not itself a
token of any kind. Tokens do not have to be separated by white space, but it is often
necessary to avoid ambiguities.
When faced with a sequence of characters that has more than one possible tokenization,
the preprocessor is greedy. It always makes each token, starting from the left, as big
as possible before moving on to the next token. For instance, a+++++b is interpreted as
a ++ ++ + b, not as a ++ + ++ b, even though the latter tokenization could be part of a valid
C program and the former could not.
Once the input file is broken into tokens, the token boundaries never change, except
when the ‘##’ preprocessing operator is used to paste tokens together. See Section 3.5
[Concatenation], page 17. For example,
#define foo() bar
foo()baz
7→ bar baz
not
7→ barbaz
The compiler does not re-tokenize the preprocessor’s output. Each preprocessing token
becomes one compiler token.
Preprocessing tokens fall into five broad classes: identifiers, preprocessing numbers,
string literals, punctuators, and other. An identifier is the same as an identifier in C:
any sequence of letters, digits, or underscores, which begins with a letter or underscore.
Keywords of C have no significance to the preprocessor; they are ordinary identifiers. You
can define a macro whose name is a keyword, for instance. The only identifier which can
be considered a preprocessing keyword is defined. See Section 4.2.3 [Defined], page 36.
This is mostly true of other languages which use the C preprocessor. However, a few of
the keywords of C++ are significant even in the preprocessor. See Section 3.7.4 [C++ Named
Operators], page 27.
Chapter 1: Overview 5
In the 1999 C standard, identifiers may contain letters which are not part of the “ba-
sic source character set”, at the implementation’s discretion (such as accented Latin let-
ters, Greek letters, or Chinese ideograms). This may be done with an extended character
set, or the ‘\u’ and ‘\U’ escape sequences. The implementation of this feature in GCC
is experimental; such characters are only accepted in the ‘\u’ and ‘\U’ forms and only if
‘-fextended-identifiers’ is used.
As an extension, GCC treats ‘$’ as a letter. This is for compatibility with some systems,
such as VMS, where ‘$’ is commonly used in system-defined function and object names. ‘$’
is not a letter in strictly conforming mode, or if you specify the ‘-$’ option. See Chapter 12
[Invocation], page 51.
A preprocessing number has a rather bizarre definition. The category includes all the
normal integer and floating point constants one expects of C, but also a number of other
things one might not initially recognize as a number. Formally, preprocessing numbers begin
with an optional period, a required decimal digit, and then continue with any sequence
of letters, digits, underscores, periods, and exponents. Exponents are the two-character
sequences ‘e+’, ‘e-’, ‘E+’, ‘E-’, ‘p+’, ‘p-’, ‘P+’, and ‘P-’. (The exponents that begin with ‘p’
or ‘P’ are new to C99. They are used for hexadecimal floating-point constants.)
The purpose of this unusual definition is to isolate the preprocessor from the full com-
plexity of numeric constants. It does not have to distinguish between lexically valid and
invalid floating-point numbers, which is complicated. The definition also permits you to
split an identifier at any position and get exactly two tokens, which can then be pasted
back together with the ‘##’ operator.
It’s possible for preprocessing numbers to cause programs to be misinterpreted. For
example, 0xE+12 is a preprocessing number which does not translate to any valid numeric
constant, therefore a syntax error. It does not mean 0xE + 12, which is what you might
have intended.
String literals are string constants, character constants, and header file names (the argu-
ment of ‘#include’).2 String constants and character constants are straightforward: "..."
or ’...’. In either case embedded quotes should be escaped with a backslash: ’\’’ is
the character constant for ‘’’. There is no limit on the length of a character constant, but
the value of a character constant that contains more than one character is implementation-
defined. See Chapter 11 [Implementation Details], page 46.
Header file names either look like string constants, "...", or are written with angle
brackets instead, <...>. In either case, backslash is an ordinary character. There is no
way to escape the closing quote or angle bracket. The preprocessor looks for the header file
in different places depending on which form you use. See Section 2.2 [Include Operation],
page 8.
No string literal may extend past the end of a line. Older versions of GCC accepted multi-
line string constants. You may use continued lines instead, or string constant concatenation.
See Section 11.4 [Differences from previous versions], page 50.
Punctuators are all the usual bits of punctuation which are meaningful to C and C++. All
but three of the punctuation characters in ASCII are C punctuators. The exceptions are ‘@’,
‘$’, and ‘‘’. In addition, all the two- and three-character operators are punctuators. There
2
The C standard uses the term string literal to refer only to what we are calling string constants.
Chapter 1: Overview 6
are also six digraphs, which the C++ standard calls alternative tokens, which are merely
alternate ways to spell other punctuators. This is a second attempt to work around missing
punctuation in obsolete systems. It has no negative side effects, unlike trigraphs, but does
not cover as much ground. The digraphs and their corresponding normal punctuators are:
Digraph: <% %> <: :> %: %:%:
Punctuator: { } [ ] # ##
Any other single character is considered “other”. It is passed on to the preprocessor’s
output unmolested. The C compiler will almost certainly reject source code containing
“other” tokens. In ASCII, the only other characters are ‘@’, ‘$’, ‘‘’, and control charac-
ters other than NUL (all bits zero). (Note that ‘$’ is normally considered a letter.) All
characters with the high bit set (numeric range 0x7F–0xFF) are also “other” in the present
implementation. This will change when proper support for international character sets is
added to GCC.
NUL is a special case because of the high probability that its appearance is accidental,
and because it may be invisible to the user (many terminals do not display NUL at all).
Within comments, NULs are silently ignored, just as any other character would be. In
running text, NUL is considered white space. For example, these two directives have the
same meaning.
#define X^@1
#define X 1
(where ‘^@’ is ASCII NUL). Within string or character constants, NULs are preserved. In
the latter two cases the preprocessor emits a warning message.
‘#’. Whitespace is allowed before and after the ‘#’. The ‘#’ is followed by an identifier, the
directive name. It specifies the operation to perform. Directives are commonly referred to
as ‘#name ’ where name is the directive name. For example, ‘#define’ is the directive that
defines a macro.
The ‘#’ which begins a directive cannot come from a macro expansion. Also, the directive
name is not macro expanded. Thus, if foo is defined as a macro expanding to define, that
does not make ‘#foo’ a valid preprocessing directive.
The set of valid directive names is fixed. Programs cannot define new preprocessing
directives.
Some directives require arguments; these make up the rest of the directive line and
must be separated from the directive name by whitespace. For example, ‘#define’ must be
followed by a macro name and the intended expansion of the macro.
A preprocessing directive cannot cover more than one line. The line may, however, be
continued with backslash-newline, or by a block comment which extends past the end of the
line. In either case, when the directive is processed, the continuations have already been
merged with the first line to make one long line.
2 Header Files
A header file is a file containing C declarations and macro definitions (see Chapter 3
[Macros], page 13) to be shared between several source files. You request the use of a
header file in your program by including it, with the C preprocessing directive ‘#include’.
Header files serve two purposes.
• System header files declare the interfaces to parts of the operating system. You include
them in your program to supply the definitions and declarations you need to invoke
system calls and libraries.
• Your own header files contain declarations for interfaces between the source files of your
program. Each time you have a group of related declarations and macro definitions all
or most of which are needed in several different source files, it is a good idea to create
a header file for them.
Including a header file produces the same results as copying the header file into each
source file that needs it. Such copying would be time-consuming and error-prone. With a
header file, the related declarations appear in only one place. If they need to be changed,
they can be changed in one place, and programs that include the header file will automat-
ically use the new version when next recompiled. The header file eliminates the labor of
finding and changing all the copies as well as the risk that a failure to find one copy will
result in inconsistencies within a program.
In C, the usual convention is to give header files names that end with ‘.h’. It is most
portable to use only letters, digits, dashes, and underscores in header file names, and at
most one dot.
Chapter 2: Header Files 8
int
main (void)
{
puts (test ());
}
the compiler will see the same token stream as it would if ‘program.c’ read
int x;
char *test (void);
int
main (void)
{
Chapter 2: Header Files 9
with quote marks. Directories after ‘-I-’ are searched for all headers. Second, the directory
containing the current file is not searched for anything, unless it happens to be one of the
directories named by an ‘-I’ switch. ‘-I-’ is deprecated, ‘-iquote’ should be used instead.
‘-I. -I-’ is not the same as no ‘-I’ options at all, and does not cause the same behavior
for ‘<>’ includes that ‘""’ includes get with no special options. ‘-I.’ searches the compiler’s
current working directory for header files. That may or may not be the same as the directory
containing the current file.
If you need to look for headers in a directory named ‘-’, write ‘-I./-’.
There are several more ways to adjust the header search path. They are generally less
useful. See Chapter 12 [Invocation], page 51.
#endif /* !FILE_FOO_SEEN */
This construct is commonly known as a wrapper #ifndef. When the header is included
again, the conditional will be false, because FILE_FOO_SEEN is defined. The preprocessor
will skip over the entire contents of the file, and the compiler will not see it twice.
CPP optimizes even further. It remembers when a header file has a wrapper ‘#ifndef’.
If a subsequent ‘#include’ specifies that header, and the macro in the ‘#ifndef’ is still
defined, it does not bother to rescan the file at all.
You can put comments outside the wrapper. They will not interfere with this optimiza-
tion.
The macro FILE_FOO_SEEN is called the controlling macro or guard macro. In a user
header file, the macro name should not begin with ‘_’. In a system header file, it should
begin with ‘__’ to avoid conflicts with user programs. In any kind of header file, the macro
name should contain the name of the file and some additional text, to avoid conflicts with
other header files.
#elif SYSTEM_3
...
#endif
That rapidly becomes tedious. Instead, the preprocessor offers the ability to use a macro
for the header name. This is called a computed include. Instead of writing a header name
as the direct argument of ‘#include’, you simply put a macro name there instead:
#define SYSTEM_H "system_1.h"
...
#include SYSTEM_H
SYSTEM_H will be expanded, and the preprocessor will look for ‘system_1.h’ as if the
‘#include’ had been written that way originally. SYSTEM_H could be defined by your Make-
file with a ‘-D’ option.
You must be careful when you define the macro. ‘#define’ saves tokens, not text.
The preprocessor has no way of knowing that the macro will be used as the argument of
‘#include’, so it generates ordinary tokens, not a header name. This is unlikely to cause
problems if you use double-quote includes, which are close enough to string constants. If
you use angle brackets, however, you may have trouble.
The syntax of a computed include is actually a bit more general than the above. If
the first non-whitespace character after ‘#include’ is not ‘"’ or ‘<’, then the entire line is
macro-expanded like running text would be.
If the line expands to a single string constant, the contents of that string constant are the
file to be included. CPP does not re-examine the string for embedded quotes, but neither
does it process backslash escapes in the string. Therefore
#define HEADER "a\"b"
#include HEADER
looks for a file named ‘a\"b’. CPP searches for the file according to the rules for double-
quoted includes.
If the line expands to a token stream beginning with a ‘<’ token and including a ‘>’
token, then the tokens between the ‘<’ and the first ‘>’ are combined to form the filename
to be included. Any whitespace between tokens is reduced to a single space; then any space
after the initial ‘<’ is retained, but a trailing space before the closing ‘>’ is ignored. CPP
searches for the file according to the rules for angle-bracket includes.
In either case, if there are any tokens on the line after the file name, an error occurs and
the directive is not processed. It is also an error if the result of expansion does not match
either of the two expected forms.
These rules are implementation-defined behavior according to the C standard. To min-
imize the risk of different compilers interpreting your computed includes differently, we
recommend you use only a single object-like macro which expands to a string constant.
This will also minimize confusion for people reading your program.
You cannot simply include the old header with ‘#include’. That will start from the
beginning, and find your new header again. If your header is not protected from multiple
inclusion (see Section 2.4 [Once-Only Headers], page 10), it will recurse infinitely and cause
a fatal error.
You could include the old header with an absolute pathname:
#include "/usr/include/old-header.h"
This works, but is not clean; should the system headers ever move, you would have to edit
the new headers to match.
There is no way to solve this problem within the C standard, but you can use the GNU
extension ‘#include_next’. It means, “Include the next file with this name”. This directive
works like ‘#include’ except in searching for the specified file: it starts searching the list
of header file directories after the directory in which the current file was found.
Suppose you specify ‘-I /usr/local/include’, and the list of directories to search
also includes ‘/usr/include’; and suppose both directories contain ‘signal.h’. Ordinary
#include <signal.h> finds the file under ‘/usr/local/include’. If that file contains
#include_next <signal.h>, it starts searching after that directory, and finds the file in
‘/usr/include’.
‘#include_next’ does not distinguish between <file > and "file " inclusion, nor does
it check that the file you specify has the same name as the current file. It simply looks
for the file named, starting with the directory in the search path after the one where the
current file was found.
The use of ‘#include_next’ can lead to great confusion. We recommend it be used
only when there is no other alternative. In particular, it should not be used in the headers
belonging to a specific program; it should be used only to make global corrections along the
lines of fixincludes.
There is also a directive, #pragma GCC system_header, which tells GCC to consider the
rest of the current include file a system header, no matter where it was found. Code that
comes before the ‘#pragma’ in the file will not be affected. #pragma GCC system_header
has no effect in the primary source file.
On very old systems, some of the pre-defined system header directories get even more
special treatment. GNU C++ considers code in headers found in those directories to be
surrounded by an extern "C" block. There is no way to request this behavior with a
‘#pragma’, or from the command line.
3 Macros
A macro is a fragment of code which has been given a name. Whenever the name is used, it
is replaced by the contents of the macro. There are two kinds of macros. They differ mostly
in what they look like when they are used. Object-like macros resemble data objects when
used, function-like macros resemble function calls.
You may define any valid identifier as a macro, even if it is a C keyword. The preprocessor
does not know anything about keywords. This can be useful if you wish to hide a keyword
such as const from an older compiler that does not understand it. However, the preprocessor
operator defined (see Section 4.2.3 [Defined], page 36) can never be defined as a macro,
and C++’s named operators (see Section 3.7.4 [C++ Named Operators], page 27) cannot be
macros when you are compiling C++.
there is no requirement for square brackets or braces to balance, and they do not prevent a
comma from separating arguments. Thus,
macro (array[x = y, x + 1])
passes two arguments to macro: array[x = y and x + 1]. If you want to supply array[x =
y, x + 1] as an argument, you can write it as array[(x = y, x + 1)], which is equivalent
C code.
All arguments to a macro are completely macro-expanded before they are substituted
into the macro body. After substitution, the complete text is scanned again for macros to
expand, including the arguments. This rule may seem strange, but it is carefully designed
so you need not worry about whether any function call is actually a macro invocation. You
can run into trouble if you try to be too clever, though. See Section 3.10.6 [Argument
Prescan], page 32, for detailed discussion.
For example, min (min (a, b), c) is first expanded to
min (((a) < (b) ? (a) : (b)), (c))
and then to
((((a) < (b) ? (a) : (b))) < (c)
? (((a) < (b) ? (a) : (b)))
: (c))
(Line breaks shown here for clarity would not actually be generated.)
You can leave macro arguments empty; this is not an error to the preprocessor (but
many macros will then expand to invalid code). You cannot leave out arguments entirely;
if a macro takes two arguments, there must be exactly one comma at the top level of its
argument list. Here are some silly examples using min:
min(, b) 7→ (( ) < (b) ? ( ) : (b))
min(a, ) 7 → ((a ) < ( ) ? (a ) : ( ))
min(,) 7 → (( ) < ( ) ? ( ) : ( ))
min((,),) 7 → (((,)) < ( ) ? ((,)) : ( ))
3.4 Stringification
Sometimes you may want to convert a macro argument into a string constant. Parameters
are not replaced inside string constants, but you can use the ‘#’ preprocessing operator
instead. When a macro parameter is used with a leading ‘#’, the preprocessor replaces
it with the literal text of the actual argument, converted to a string constant. Unlike
normal parameter replacement, the argument is not macro-expanded first. This is called
stringification.
Chapter 3: Macros 17
There is no way to combine an argument with surrounding text and stringify it all
together. Instead, you can write a series of adjacent string constants and stringified argu-
ments. The preprocessor will replace the stringified arguments with string constants. The
C compiler will then combine all the adjacent string constants into one long string.
Here is an example of a macro definition that uses stringification:
#define WARN_IF(EXP) \
do { if (EXP) \
fprintf (stderr, "Warning: " #EXP "\n"); } \
while (0)
WARN_IF (x == 0);
7→ do { if (x == 0)
fprintf (stderr, "Warning: " "x == 0" "\n"); } while (0);
The argument for EXP is substituted once, as-is, into the if statement, and once, stringified,
into the argument to fprintf. If x were a macro, it would be expanded in the if statement,
but not in the string.
The do and while (0) are a kludge to make it possible to write WARN_IF (arg );, which
the resemblance of WARN_IF to a function would make C programmers want to do; see
Section 3.10.3 [Swallowing the Semicolon], page 30.
Stringification in C involves more than putting double-quote characters around the frag-
ment. The preprocessor backslash-escapes the quotes surrounding embedded string con-
stants, and all backslashes within string and character constants, in order to get a valid
C string constant with the proper contents. Thus, stringifying p = "foo\n"; results in
"p = \"foo\\n\";". However, backslashes that are not inside string or character constants
are not duplicated: ‘\n’ by itself stringifies to "\n".
All leading and trailing whitespace in text being stringified is ignored. Any sequence of
whitespace in the middle of the text is converted to a single space in the stringified result.
Comments are replaced by whitespace long before stringification happens, so they never
appear in stringified text.
There is no way to convert a macro argument into a character constant.
If you want to stringify the result of expansion of a macro argument, you have to use
two levels of macros.
#define xstr(s) str(s)
#define str(s) #s
#define foo 4
str (foo)
7→ "foo"
xstr (foo)
7→ xstr (4)
7→ str (4)
7→ "4"
s is stringified when it is used in str, so it is not macro-expanded first. But s is
an ordinary argument to xstr, so it is completely macro-expanded before xstr itself is
expanded (see Section 3.10.6 [Argument Prescan], page 32). Therefore, by the time str
gets to its argument, it has already been macro-expanded.
3.5 Concatenation
It is often useful to merge two tokens into one while expanding macros. This is called token
pasting or token concatenation. The ‘##’ preprocessing operator performs token pasting.
Chapter 3: Macros 18
When a macro is expanded, the two tokens on either side of each ‘##’ operator are combined
into a single token, which then replaces the ‘##’ and the two original tokens in the macro
expansion. Usually both will be identifiers, or one will be an identifier and the other a
preprocessing number. When pasted, they make a longer identifier. This isn’t the only
valid case. It is also possible to concatenate two numbers (or a number and a name, such
as 1.5 and e3) into a number. Also, multi-character operators such as += can be formed
by token pasting.
However, two tokens that don’t together form a valid token cannot be pasted together.
For example, you cannot concatenate x with + in either order. If you try, the preprocessor
issues a warning and emits the two tokens. Whether it puts white space between the tokens
is undefined. It is common to find unnecessary uses of ‘##’ in complex macros. If you get
this warning, it is likely that you can simply remove the ‘##’.
Both the tokens combined by ‘##’ could come from the macro body, but you could just
as well write them as one token in the first place. Token pasting is most useful when one
or both of the tokens comes from a macro argument. If either of the tokens next to an ‘##’
is a parameter name, it is replaced by its actual argument before ‘##’ executes. As with
stringification, the actual argument is not macro-expanded first. If the argument is empty,
that ‘##’ has no effect.
Keep in mind that the C preprocessor converts comments to whitespace before macros
are even considered. Therefore, you cannot create a comment by concatenating ‘/’ and
‘*’. You can put as much whitespace between ‘##’ and its operands as you like, including
comments, and you can put comments in arguments that will be concatenated. However,
it is an error if ‘##’ appears at either end of a macro body.
Consider a C program that interprets named commands. There probably needs to be a
table of commands, perhaps an array of structures declared as follows:
struct command
{
char *name;
void (*function) (void);
};
that the comma must remain, however the existing GCC extension used to swallow the
comma. So CPP retains the comma when conforming to a specific C standard, and drops
it otherwise.
C99 mandates that the only place the identifier __VA_ARGS__ can appear is in the re-
placement list of a variadic macro. It may not be used as a macro name, macro argument
name, or within a different type of macro. It may also be forbidden in open text; the
standard is ambiguous. We recommend you avoid using it except for its defined purpose.
Variadic macros are a new feature in C99. GNU CPP has supported them for a long
time, but only with a named variable argument (‘args...’, not ‘...’ and __VA_ARGS__).
If you are concerned with portability to previous versions of GCC, you should use only
named variable arguments. On the other hand, if you are concerned with portability to
other conforming implementations of C99, you should use only __VA_ARGS__.
Previous versions of CPP implemented the comma-deletion extension much more gener-
ally. We have restricted it in this release to minimize the differences from C99. To get the
same effect with both this and previous versions of GCC, the token preceding the special
‘##’ must be a comma, and there must be white space between that comma and whatever
comes immediately before it:
#define eprintf(format, args...) fprintf (stderr, format , ##args)
See Section 11.4 [Differences from previous versions], page 50, for the gory details.
__DATE__ This macro expands to a string constant that describes the date on which the
preprocessor is being run. The string constant contains eleven characters and
looks like "Feb 12 1996". If the day of the month is less than 10, it is padded
with a space on the left.
If GCC cannot determine the current date, it will emit a warning message (once
per compilation) and __DATE__ will expand to "??? ?? ????".
__TIME__ This macro expands to a string constant that describes the time at which the
preprocessor is being run. The string constant contains eight characters and
looks like "23:59:01".
If GCC cannot determine the current time, it will emit a warning message (once
per compilation) and __TIME__ will expand to "??:??:??".
__STDC__ In normal operation, this macro expands to the constant 1, to signify that this
compiler conforms to ISO Standard C. If GNU CPP is used with a compiler
other than GCC, this is not necessarily true; however, the preprocessor always
conforms to the standard unless the ‘-traditional-cpp’ option is used.
This macro is not defined if the ‘-traditional-cpp’ option is used.
On some hosts, the system compiler uses a different convention, where __STDC__
is normally 0, but is 1 if the user specifies strict conformance to the C Standard.
CPP follows the host convention when processing system header files, but when
processing user files __STDC__ is always 1. This has been reported to cause
problems; for instance, some versions of Solaris provide X Windows headers
that expect __STDC__ to be either undefined or 1. See Chapter 12 [Invocation],
page 51.
__STDC_VERSION__
This macro expands to the C Standard’s version number, a long integer constant
of the form yyyy mm L where yyyy and mm are the year and month of the
Standard version. This signifies which version of the C Standard the compiler
conforms to. Like __STDC__, this is not necessarily accurate for the entire
implementation, unless GNU CPP is being used with GCC.
Chapter 3: Macros 22
The value 199409L signifies the 1989 C standard as amended in 1994, which
is the current default; the value 199901L signifies the 1999 revision of the C
standard. Support for the 1999 revision is not yet complete.
This macro is not defined if the ‘-traditional-cpp’ option is used, nor when
compiling C++ or Objective-C.
__STDC_HOSTED__
This macro is defined, with value 1, if the compiler’s target is a hosted envi-
ronment. A hosted environment has the complete facilities of the standard C
library available.
__cplusplus
This macro is defined when the C++ compiler is in use. You can use __
cplusplus to test whether a header is compiled by a C compiler or a C++
compiler. This macro is similar to __STDC_VERSION__, in that it expands to a
version number. A fully conforming implementation of the 1998 C++ standard
will define this macro to 199711L. The GNU C++ compiler is not yet fully
conforming, so it uses 1 instead. It is hoped to complete the implementation of
standard C++ in the near future.
__OBJC__ This macro is defined, with value 1, when the Objective-C compiler is in use.
You can use __OBJC__ to test whether a header is compiled by a C compiler or
a Objective-C compiler.
__ASSEMBLER__
This macro is defined with value 1 when preprocessing assembly language.
the predefined macros directly in the conditional, you will need to write it like
this:
/* Test for GCC > 3.2.0 */
#if __GNUC__ > 3 || \
(__GNUC__ == 3 && (__GNUC_MINOR__ > 2 || \
(__GNUC_MINOR__ == 2 && \
__GNUC_PATCHLEVEL__ > 0))
Another approach is to use the predefined macros to calculate a single number,
then compare that against a threshold:
#define GCC_VERSION (__GNUC__ * 10000 \
+ __GNUC_MINOR__ * 100 \
+ __GNUC_PATCHLEVEL__)
...
/* Test for GCC > 3.2.0 */
#if GCC_VERSION > 30200
Many people find this form easier to understand.
__GNUG__ The GNU C++ compiler defines this. Testing it is equivalent to testing
(__GNUC__ && __cplusplus).
__STRICT_ANSI__
GCC defines this macro if and only if the ‘-ansi’ switch, or a ‘-std’ switch
specifying strict conformance to some version of ISO C, was specified when
GCC was invoked. It is defined to ‘1’. This macro exists primarily to direct
GNU libc’s header files to restrict their definitions to the minimal set found in
the 1989 C standard.
__BASE_FILE__
This macro expands to the name of the main input file, in the form of a C string
constant. This is the source file that was specified on the command line of the
preprocessor or C compiler.
__INCLUDE_LEVEL__
This macro expands to a decimal integer constant that represents the depth
of nesting in include files. The value of this macro is incremented on every
‘#include’ directive and decremented at the end of every included file. It
starts out at 0, it’s value within the base file specified on the command line.
__ELF__ This macro is defined if the target uses the ELF object format.
__VERSION__
This macro expands to a string constant which describes the version of the
compiler in use. You should not rely on its contents having any particular
form, but it can be counted on to contain at least the release number.
__OPTIMIZE__
__OPTIMIZE_SIZE__
__NO_INLINE__
These macros describe the compilation mode. __OPTIMIZE__ is defined in all
optimizing compilations. __OPTIMIZE_SIZE__ is defined if the compiler is op-
timizing for size, not speed. __NO_INLINE__ is defined if no functions will
be inlined into their callers (when not optimizing, or when inlining has been
specifically disabled by ‘-fno-inline’).
Chapter 3: Macros 24
These macros cause certain GNU header files to provide optimized definitions,
using macros or inline functions, of system library functions. You should not
use these macros in any way unless you make sure that programs will execute
with the same effect whether or not they are defined. If they are defined, their
value is 1.
__GNUC_GNU_INLINE__
GCC defines this macro if functions declared inline will be handled in GCC’s
traditional gnu89 mode. In this mode an extern inline function will never
be compiled as a standalone function, and an inline function which is neither
extern nor static will always be compiled as a standalone function.
__GNUC_STDC_INLINE__
GCC defines this macro if functions declared inline will be handled according
to the ISO C99 standard. In this mode an extern inline function will always
be compiled as a standalone externally visible function, and an inline function
which is neither extern nor static will never be compiled as a standalone
function.
If this macro is defined, GCC supports the gnu_inline function attribute as
a way to always get the gnu89 behaviour. Support for this and __GNUC_GNU_
INLINE__ was added in GCC 4.1.3. If neither macro is defined, an older version
of GCC is being used: inline functions will be compiled in gnu89 mode, and
the gnu_inline function attribute will not be recognized.
__CHAR_UNSIGNED__
GCC defines this macro if and only if the data type char is unsigned on the
target machine. It exists to cause the standard header file ‘limits.h’ to work
correctly. You should not use this macro yourself; instead, refer to the standard
macros defined in ‘limits.h’.
__WCHAR_UNSIGNED__
Like __CHAR_UNSIGNED__, this macro is defined if and only if the data type
wchar_t is unsigned and the front-end is in C++ mode.
__REGISTER_PREFIX__
This macro expands to a single token (not a string constant) which is the prefix
applied to CPU register names in assembly language for this target. You can
use it to write assembly that is usable in multiple environments. For example,
in the m68k-aout environment it expands to nothing, but in the m68k-coff
environment it expands to a single ‘%’.
__USER_LABEL_PREFIX__
This macro expands to a single token which is the prefix applied to user labels
(symbols visible to C code) in assembly. For example, in the m68k-aout envi-
ronment it expands to an ‘_’, but in the m68k-coff environment it expands to
nothing.
This macro will have the correct definition even if ‘-f(no-)underscores’ is in
use, but it will not be correct if target-specific options that adjust this prefix
are used (e.g. the OSF/rose ‘-mno-underscores’ option).
Chapter 3: Macros 25
__SIZE_TYPE__
__PTRDIFF_TYPE__
__WCHAR_TYPE__
__WINT_TYPE__
__INTMAX_TYPE__
__UINTMAX_TYPE__
These macros are defined to the correct underlying types for the size_t,
ptrdiff_t, wchar_t, wint_t, intmax_t, and uintmax_t typedefs, respectively.
They exist to make the standard header files ‘stddef.h’ and ‘wchar.h’ work
correctly. You should not use these macros directly; instead, include the
appropriate headers and use the typedefs.
__CHAR_BIT__
Defined to the number of bits used in the representation of the char data type.
It exists to make the standard header given numerical limits work correctly. You
should not use this macro directly; instead, include the appropriate headers.
__SCHAR_MAX__
__WCHAR_MAX__
__SHRT_MAX__
__INT_MAX__
__LONG_MAX__
__LONG_LONG_MAX__
__INTMAX_MAX__
Defined to the maximum value of the signed char, wchar_t, signed
short, signed int, signed long, signed long long, and intmax_t types
respectively. They exist to make the standard header given numerical limits
work correctly. You should not use these macros directly; instead, include the
appropriate headers.
__DEPRECATED
This macro is defined, with value 1, when compiling a C++ source file with
warnings about deprecated constructs enabled. These warnings are enabled by
default, but can be disabled with ‘-Wno-deprecated’.
__EXCEPTIONS
This macro is defined, with value 1, when compiling a C++ source file with
exceptions enabled. If ‘-fno-exceptions’ was used when compiling the file,
then this macro will not be defined.
__USING_SJLJ_EXCEPTIONS__
This macro is defined, with value 1, if the compiler uses the old mechanism
based on setjmp and longjmp for exception handling.
__GXX_WEAK__
This macro is defined when compiling a C++ source file. It has the value 1 if the
compiler will use weak symbols, COMDAT sections, or other similar techniques
to collapse symbols with “vague linkage” that are defined in multiple translation
units. If the compiler will not collapse such symbols, this macro is defined with
value 0. In general, user code should not need to make use of this macro; the
Chapter 3: Macros 26
system-specific macros that are in the reserved namespace, either. It is better in the long
run to check specifically for features you need, using a tool such as autoconf.
#define FOUR (2 + 2)
#define FOUR (2 + 2)
#define FOUR (2 /* two */ + 2)
but these are not:
#define FOUR (2 + 2)
#define FOUR ( 2+2 )
#define FOUR (2 * 2)
#define FOUR(score,and,seven,years,ago) (2 + 2)
If a macro is redefined with a definition that is not effectively the same as the old one,
the preprocessor issues a warning and changes the macro to use the new definition. If
the new definition is effectively the same, the redefinition is silently ignored. This allows,
for instance, two different headers to define a common macro. The preprocessor will only
complain if the definitions do not match.
3.10.1 Misnesting
When a macro is called with arguments, the arguments are substituted into the macro body
and the result is checked, together with the rest of the input file, for more macro calls. It is
Chapter 3: Macros 29
possible to piece together a macro call coming partially from the macro body and partially
from the arguments. For example,
#define twice(x) (2*(x))
#define call_with_1(x) x(1)
call_with_1 (twice)
7→ twice(1)
7→ (2*(1))
Macro definitions do not have to have balanced parentheses. By writing an unbalanced
open parenthesis in a macro body, it is possible to create a macro call that begins inside
the macro body but ends outside of it. For example,
#define strange(file) fprintf (file, "%s %d",
...
strange(stderr) p, 35)
7→ fprintf (stderr, "%s %d", p, 35)
The ability to piece together a macro call can be useful, but the use of unbalanced open
parentheses in a macro body is just confusing, and should be avoided.
foo might be called two times when the statement is executed. If it has side effects or if
it takes a long time to compute, the results might not be what you intended. We say that
min is an unsafe macro.
The best solution to this problem is to define min in a way that computes the value of
foo (z) only once. The C language offers no standard way to do this, but it can be done
with GNU extensions as follows:
#define min(X, Y) \
({ typeof (X) x_ = (X); \
typeof (Y) y_ = (Y); \
(x_ < y_) ? x_ : y_; })
The ‘({ ... })’ notation produces a compound statement that acts as an expression.
Its value is the value of its last statement. This permits us to define local variables and
assign each argument to one. The local variables have underscores after their names to
reduce the risk of conflict with an identifier of wider scope (it is impossible to avoid this
entirely). Now each argument is evaluated exactly once.
If you do not wish to use GNU C extensions, the only solution is to be careful when
using the macro min. For example, you can calculate the value of foo (z), save it in a
variable, and use that variable in min:
#define min(X, Y) ((X) < (Y) ? (X) : (Y))
...
{
int tem = foo (z);
next = min (x + y, tem);
}
(where we assume that foo returns type int).
then the macro EPERM expands to EPERM. Effectively, it is left alone by the preprocessor
whenever it’s used in running text. You can tell that it’s a macro with ‘#ifdef’. You might
do this if you want to define numeric constants with an enum, but have ‘#ifdef’ be true for
each constant.
If a macro x expands to use a macro y, and the expansion of y refers to the macro x,
that is an indirect self-reference of x. x is not expanded in this case either. Thus, if we have
#define x (4 + y)
#define y (2 * x)
y 7→ (2 * x)
7 → (2 * (4 + y))
Each macro is expanded when it appears in the definition of the other macro, but not when
it indirectly appears in its own definition.
4 Conditionals
A conditional is a directive that instructs the preprocessor to select whether or not to
include a chunk of code in the final token stream passed to the compiler. Preprocessor
Chapter 4: Conditionals 34
Simple programs that do not need system-specific logic or complex debugging hooks
generally will not need to use preprocessing conditionals.
4.2.1 Ifdef
The simplest sort of conditional is
Chapter 4: Conditionals 35
#ifdef MACRO
controlled text
#endif /* MACRO */
This block is called a conditional group. controlled text will be included in the output
of the preprocessor if and only if MACRO is defined. We say that the conditional succeeds
if MACRO is defined, fails if it is not.
The controlled text inside of a conditional can include preprocessing directives. They
are executed only if the conditional succeeds. You can nest conditional groups inside other
conditional groups, but they must be completely nested. In other words, ‘#endif’ always
matches the nearest ‘#ifdef’ (or ‘#ifndef’, or ‘#if’). Also, you cannot start a conditional
group in one file and end it in another.
Even if a conditional fails, the controlled text inside it is still run through initial trans-
formations and tokenization. Therefore, it must all be lexically valid C. Normally the only
way this matters is that all comments and string literals inside a failing conditional group
must still be properly ended.
The comment following the ‘#endif’ is not required, but it is a good practice if there
is a lot of controlled text, because it helps people match the ‘#endif’ to the corresponding
‘#ifdef’. Older programs sometimes put MACRO directly after the ‘#endif’ without
enclosing it in a comment. This is invalid code according to the C standard. CPP accepts
it with a warning. It never affects which ‘#ifndef’ the ‘#endif’ matches.
Sometimes you wish to use some code if a macro is not defined. You can do this by
writing ‘#ifndef’ instead of ‘#ifdef’. One common use of ‘#ifndef’ is to include code only
the first time a header file is included. See Section 2.4 [Once-Only Headers], page 10.
Macro definitions can vary between compilations for several reasons. Here are some
samples.
• Some macros are predefined on each kind of machine (see Section 3.7.3 [System-specific
Predefined Macros], page 26). This allows you to provide code specially tuned for a
particular machine.
• System header files define more macros, associated with the features they implement.
You can test these macros with conditionals to avoid using a system feature on a
machine where it is not implemented.
• Macros can be defined or undefined with the ‘-D’ and ‘-U’ command line options when
you compile the program. You can arrange to compile the same source file into two
different programs by choosing a macro name to specify which program you want,
writing conditionals to test whether or how this macro is defined, and then controlling
the state of the macro with command line options, perhaps set in the Makefile. See
Chapter 12 [Invocation], page 51.
• Your program might have a special header file (often called ‘config.h’) that is adjusted
when the program is compiled. It can define or not define macros depending on the
features of the system and the desired capabilities of the program. The adjustment can
be automated by a tool such as autoconf, or done by hand.
Chapter 4: Conditionals 36
4.2.2 If
The ‘#if’ directive allows you to test the value of an arithmetic expression, rather than the
mere existence of one macro. Its syntax is
#if expression
controlled text
#endif /* expression */
expression is a C expression of integer type, subject to stringent restrictions. It may
contain
• Integer constants.
• Character constants, which are interpreted as they would be in normal code.
• Arithmetic operators for addition, subtraction, multiplication, division, bitwise opera-
tions, shifts, comparisons, and logical operations (&& and ||). The latter two obey the
usual short-circuiting rules of standard C.
• Macros. All macros in the expression are expanded before actual computation of the
expression’s value begins.
• Uses of the defined operator, which lets you check whether macros are defined in the
middle of an ‘#if’.
• Identifiers that are not macros, which are all considered to be the number zero. This
allows you to write #if MACRO instead of #ifdef MACRO, if you know that MACRO,
when defined, will always have a nonzero value. Function-like macros used without
their function call parentheses are also treated as zero.
In some contexts this shortcut is undesirable. The ‘-Wundef’ option causes GCC to
warn whenever it encounters an identifier which is not a macro in an ‘#if’.
The preprocessor does not know anything about types in the language. Therefore,
sizeof operators are not recognized in ‘#if’, and neither are enum constants. They will be
taken as identifiers which are not macros, and replaced by zero. In the case of sizeof, this
is likely to cause the expression to be invalid.
The preprocessor calculates the value of expression. It carries out all calculations in the
widest integer type known to the compiler; on most machines supported by GCC this is
64 bits. This is not the same rule as the compiler uses to calculate the value of a constant
expression, and may give different results in some cases. If the value comes out to be
nonzero, the ‘#if’ succeeds and the controlled text is included; otherwise it is skipped.
4.2.3 Defined
The special operator defined is used in ‘#if’ and ‘#elif’ expressions to test whether a cer-
tain name is defined as a macro. defined name and defined (name ) are both expressions
whose value is 1 if name is defined as a macro at the current point in the program, and 0
otherwise. Thus, #if defined MACRO is precisely equivalent to #ifdef MACRO.
defined is useful when you wish to test more than one macro for existence at once. For
example,
#if defined (__vax__) || defined (__ns16000__)
would succeed if either of the names __vax__ or __ns16000__ is defined as a macro.
Conditionals written like this:
Chapter 4: Conditionals 37
4.2.4 Else
The ‘#else’ directive can be added to a conditional to provide alternative text to be used
if the condition fails. This is what it looks like:
#if expression
text-if-true
#else /* Not expression */
text-if-false
#endif /* Not expression */
If expression is nonzero, the text-if-true is included and the text-if-false is skipped. If
expression is zero, the opposite happens.
You can use ‘#else’ with ‘#ifdef’ and ‘#ifndef’, too.
4.2.5 Elif
One common case of nested conditionals is used to check for more than two possible alter-
natives. For example, you might have
#if X == 1
...
#else /* X != 1 */
#if X == 2
...
#else /* X != 2 */
...
#endif /* X != 2 */
#endif /* X != 1 */
Another conditional directive, ‘#elif’, allows this to be abbreviated as follows:
#if X == 1
...
#elif X == 2
...
#else /* X != 2 and X != 1*/
...
#endif /* X != 2 and X != 1*/
‘#elif’ stands for “else if”. Like ‘#else’, it goes in the middle of a conditional group
and subdivides it; it does not require a matching ‘#endif’ of its own. Like ‘#if’, the ‘#elif’
directive includes an expression to be tested. The text following the ‘#elif’ is processed
only if the original ‘#if’-condition failed and the ‘#elif’ condition succeeds.
More than one ‘#elif’ can go in the same conditional group. Then the text after each
‘#elif’ is processed only if the ‘#elif’ condition succeeds after the original ‘#if’ and all
previous ‘#elif’ directives within it have failed.
‘#else’ is allowed after any number of ‘#elif’ directives, but ‘#elif’ may not follow
‘#else’.
Chapter 6: Line Control 38
5 Diagnostics
The directive ‘#error’ causes the preprocessor to report a fatal error. The tokens forming
the rest of the line following ‘#error’ are used as the error message.
You would use ‘#error’ inside of a conditional that detects a combination of parameters
which you know the program does not properly support. For example, if you know that the
program will not run properly on a VAX, you might write
#ifdef __vax__
#error "Won’t work on VAXen. See comments at get_last_object."
#endif
If you have several configuration parameters that must be set up by the installation in
a consistent way, you can use conditionals to detect an inconsistency and report it with
‘#error’. For example,
#if !defined(UNALIGNED_INT_ASM_OP) && defined(DWARF2_DEBUGGING_INFO)
#error "DWARF2_DEBUGGING_INFO requires UNALIGNED_INT_ASM_OP."
#endif
The directive ‘#warning’ is like ‘#error’, but causes the preprocessor to issue a warn-
ing and continue preprocessing. The tokens following ‘#warning’ are used as the warning
message.
You might use ‘#warning’ in obsolete header files, with a message directing the user to
the header file which should be used instead.
Neither ‘#error’ nor ‘#warning’ macro-expands its argument. Internal whitespace se-
quences are each replaced with a single space. The line must consist of complete tokens. It
is wisest to make the argument of these directives be a single string constant; this avoids
problems with apostrophes and the like.
Chapter 6: Line Control 39
6 Line Control
The C preprocessor informs the C compiler of the location in your source code where each
token came from. Presently, this is just the file name and line number. All the tokens
resulting from macro expansion are reported as having appeared on the line of the source
file where the outermost macro was used. We intend to be more accurate in the future.
If you write a program which generates source code, such as the bison parser generator,
you may want to adjust the preprocessor’s notion of the current file name and line number
by hand. Parts of the output from bison are generated from scratch, other parts come from
a standard parser file. The rest are copied verbatim from bison’s input. You would like
compiler error messages and symbolic debuggers to be able to refer to bison’s input file.
bison or any such program can arrange this by writing ‘#line’ directives into the output
file. ‘#line’ is a directive that specifies the original line number and source file name for
subsequent input in the current preprocessor input file. ‘#line’ has three variants:
#line linenum
linenum is a non-negative decimal integer constant. It specifies the line number
which should be reported for the following line of input. Subsequent lines are
counted from linenum.
#line linenum filename
linenum is the same as for the first form, and has the same effect. In addition,
filename is a string constant. The following line and all subsequent lines are
reported to come from the file it specifies, until something else happens to
change that. filename is interpreted according to the normal rules for a string
constant: backslash escapes are interpreted. This is different from ‘#include’.
Previous versions of CPP did not interpret escapes in ‘#line’; we have changed
it because the standard requires they be interpreted, and most other compilers
do.
#line anything else
anything else is checked for macro calls, which are expanded. The result should
match one of the above two forms.
‘#line’ directives alter the results of the __FILE__ and __LINE__ predefined macros
from that point on. See Section 3.7.1 [Standard Predefined Macros], page 20. They do not
have any effect on ‘#include’’s idea of the directory containing the current file. This is a
change from GCC 2.95. Previously, a file reading
#line 1 "../src/gram.y"
#include "gram.h"
would search for ‘gram.h’ in ‘../src’, then the ‘-I’ chain; the directory containing the
physical source file would not be searched. In GCC 3.0 and later, the ‘#include’ is not
affected by the presence of a ‘#line’ referring to a different directory.
We made this change because the old behavior caused problems when generated source
files were transported between machines. For instance, it is common practice to ship gen-
erated parsers with a source release, so that people building the distribution do not need to
have yacc or Bison installed. These files frequently have ‘#line’ directives referring to the
Chapter 7: Pragmas 40
directory tree of the system where the distribution was created. If GCC tries to search for
headers in those directories, the build is likely to fail.
The new behavior can cause failures too, if the generated file is not in the same directory
as its source and it attempts to include a header which would be visible searching from the
directory containing the source file. However, this problem is easily solved with an additional
‘-I’ switch on the command line. The failures caused by the old semantics could sometimes
be corrected only by editing the generated files, which is difficult and error-prone.
7 Pragmas
The ‘#pragma’ directive is the method specified by the C standard for providing additional
information to the compiler, beyond what is conveyed in the language itself. Three forms
of this directive (commonly known as pragmas) are specified by the 1999 C standard. A C
compiler is free to attach any meaning it likes to other pragmas.
GCC has historically preferred to use extensions to the syntax of the language, such as
__attribute__, for this purpose. However, GCC does define a few pragmas of its own.
These mostly have effects on the entire translation unit or source file.
In GCC version 3, all GNU-defined, supported pragmas have been given a GCC prefix.
This is in line with the STDC prefix on all pragmas defined by C99. For backward com-
patibility, pragmas which were recognized by previous versions are still recognized without
the GCC prefix, but that usage is deprecated. Some older pragmas are deprecated in their
entirety. They are not recognized with the GCC prefix. See Section 11.3 [Obsolete Features],
page 48.
C99 introduces the _Pragma operator. This feature addresses a major problem with
‘#pragma’: being a directive, it cannot be produced as the result of macro expansion.
_Pragma is an operator, much like sizeof or defined, and can be embedded in a macro.
Its syntax is _Pragma (string-literal ), where string-literal can be either a normal or
wide-character string literal. It is destringized, by replacing all ‘\\’ with a single ‘\’ and all
‘\"’ with a ‘"’. The result is then processed as if it had appeared as the right hand side of
a ‘#pragma’ directive. For example,
_Pragma ("GCC dependency \"parse.y\"")
has the same effect as #pragma GCC dependency "parse.y". The same effect could be
achieved using macros, for example
#define DO_PRAGMA(x) _Pragma (#x)
DO_PRAGMA (GCC dependency "parse.y")
The standard is unclear on where a _Pragma operator can appear. The preprocessor
does not accept it within a preprocessing conditional directive like ‘#if’. To be safe, you
are probably best keeping it out of directives other than ‘#define’, and putting it on a line
of its own.
This manual documents the pragmas which are meaningful to the preprocessor itself.
Other pragmas are meaningful to the C or C++ compilers. They are documented in the
GCC manual.
#pragma GCC dependency
#pragma GCC dependency allows you to check the relative dates of the current
file and another file. If the other file is more recent than the current file, a
Chapter 9: Preprocessor Output 41
warning is issued. This is useful if the current file is derived from the other
file, and should be regenerated. The other file is searched for using the normal
include search path. Optional trailing text can be used to give more information
in the warning message.
#pragma GCC dependency "parse.y"
#pragma GCC dependency "/usr/include/time.h" rerun fixincludes
8 Other Directives
The ‘#ident’ directive takes one argument, a string constant. On some systems, that string
constant is copied into a special segment of the object file. On other systems, the directive
is ignored. The ‘#sccs’ directive is a synonym for ‘#ident’.
These directives are not part of the C standard, but they are not official GNU extensions
either. What historical information we have been able to find, suggests they originated with
System V.
The null directive consists of a ‘#’ followed by a newline, with only whitespace (including
comments) in between. A null directive is understood as a preprocessing directive but has
no effect on the preprocessor output. The primary significance of the existence of the null
directive is that an input line consisting of just a ‘#’ will produce no output, rather than a
line of output containing just a ‘#’. Supposedly some old C programs contain such lines.
Chapter 10: Traditional Mode 42
9 Preprocessor Output
When the C preprocessor is used with the C, C++, or Objective-C compilers, it is integrated
into the compiler and communicates a stream of binary tokens directly to the compiler’s
parser. However, it can also be used in the more conventional standalone mode, where it
produces textual output.
The output from the C preprocessor looks much like the input, except that all prepro-
cessing directive lines have been replaced with blank lines and all comments with spaces.
Long runs of blank lines are discarded.
The ISO standard specifies that it is implementation defined whether a preprocessor
preserves whitespace between tokens, or replaces it with e.g. a single space. In GNU CPP,
whitespace between tokens is collapsed to become a single space, with the exception that
the first token on a non-directive line is preceded with sufficient spaces that it appears in
the same column in the preprocessed output that it appeared in the original source file.
This is so the output is easy to read. See Section 11.4 [Differences from previous versions],
page 50. CPP does not insert any whitespace where there was none in the original source,
except where necessary to prevent an accidental token paste.
Source file name and line number information is conveyed by lines of the form
# linenum filename flags
These are called linemarkers. They are inserted as needed into the output (but never within
a string or character constant). They mean that the following line originated in file filename
at line linenum. filename will never contain any non-printing characters; they are replaced
with octal escape sequences.
After the file name comes zero or more flags, which are ‘1’, ‘2’, ‘3’, or ‘4’. If there are
multiple flags, spaces separate them. Here is what the flags mean:
10 Traditional Mode
Traditional (pre-standard) C preprocessing is rather different from the preprocessing spec-
ified by the standard. When GCC is given the ‘-traditional-cpp’ option, it attempts to
emulate a traditional preprocessor.
GCC versions 3.2 and later only support traditional mode semantics in the preprocessor,
and not in the compiler front ends. This chapter outlines the traditional preprocessor
semantics we implemented.
The implementation does not correspond precisely to the behavior of earlier versions of
GCC, nor to any true traditional preprocessor. After all, inconsistencies among traditional
implementations were a major motivation for C standardization. However, we intend that
it should be compatible with true traditional preprocessors in all ways that actually matter.
f( )
is treated as an invocation of the macro ‘f’ with a single argument consisting of a single
space. If you want to invoke a function-like macro that takes no arguments, you must not
leave any whitespace between the parentheses.
If a macro argument crosses a new line, the new line is replaced with a space when
forming the argument. If the previous line contained an unterminated quote, the following
line inherits the quoted state.
Traditional preprocessors replace parameters in the replacement text with their argu-
ments regardless of whether the parameters are within quotes or not. This provides a way
to stringize arguments. For example
#define str(x) "x"
str(/* A comment */some text )
7→ "some text "
Note that the comment is removed, but that the trailing space is preserved. Here is an
example of using a comment to effect token pasting.
#define suffix(x) foo_/**/x
suffix(bar)
7→ foo_bar
would ignore because the ‘#’ does not appear as the first character on the line. It
also suggests you hide directives like ‘#pragma’ not understood by traditional C by
indenting them. Some traditional implementations would not recognize ‘#elif’, so it
suggests avoiding it altogether.
• A function-like macro that appears without an argument list. In some traditional
preprocessors this was an error. In ISO C it merely means that the macro is not
expanded.
• The unary plus operator. This did not exist in traditional C.
• The ‘U’ and ‘LL’ integer constant suffixes, which were not available in traditional C.
(Traditional C does support the ‘L’ suffix for simple long integer constants.) You are not
warned about uses of these suffixes in macros defined in system headers. For instance,
UINT_MAX may well be defined as 4294967295U, but you will not be warned if you use
UINT_MAX.
You can usually avoid the warning, and the related warning about constants which
are so large that they are unsigned, by writing the integer constant in question in
hexadecimal, with no U suffix. Take care, though, because this gives the wrong result
in exotic cases.
11 Implementation Details
Here we document details of how the preprocessor’s implementation affects its user-visible
behavior. You should try to avoid undue reliance on behavior described here, as it is possible
that it will change subtly in future implementations.
Also documented here are obsolete features and changes from previous versions of CPP.
Currently the targets that by default do not permit ‘$’ are AVR, IP2K, MMIX, MIPS
Irix 3, ARM aout, and PowerPC targets for the AIX and BeOS operating systems.
You can override the default with ‘-fdollars-in-identifiers’ or
‘fno-dollars-in-identifiers’. See [fdollars-in-identifiers], page 57.
• Non-empty sequences of whitespace characters.
In textual output, each whitespace sequence is collapsed to a single space. For aesthetic
reasons, the first token on each non-directive line of output is preceded with sufficient
spaces that it appears in the same column as it did in the original source file.
• The numeric value of character constants in preprocessor expressions.
The preprocessor and compiler interpret character constants in the same way; i.e. escape
sequences such as ‘\a’ are given the values they would have on the target machine.
The compiler values a multi-character character constant a character at a time, shifting
the previous value left by the number of bits per target character, and then or-ing in
the bit-pattern of the new character truncated to the width of a target character. The
final bit-pattern is given type int, and is therefore signed, regardless of whether single
characters are signed or not (a slight change from versions 3.1 and earlier of GCC). If
there are more characters in the constant than would fit in the target int the compiler
issues a warning, and the excess leading characters are ignored.
For example, ’ab’ for a target with an 8-bit char would be interpreted as
‘(int) ((unsigned char) ’a’ * 256 + (unsigned char) ’b’)’, and ’\234a’ as
‘(int) ((unsigned char) ’\234’ * 256 + (unsigned char) ’a’)’.
• Source file inclusion.
For a discussion on how the preprocessor locates header files, Section 2.2 [Include
Operation], page 8.
• Interpretation of the filename resulting from a macro-expanded ‘#include’ directive.
See Section 2.5 [Computed Includes], page 10.
• Treatment of a ‘#pragma’ directive that after macro-expansion results in a standard
pragma.
No macro expansion occurs on any ‘#pragma’ directive line, so the question does not
arise.
Note that GCC does not yet implement any of the standard pragmas.
11.3.1 Assertions
Assertions are a deprecated alternative to macros in writing conditionals to test what sort
of computer or system the compiled program will run on. Assertions are usually predefined,
but you can define them with preprocessing directives or command-line options.
Assertions were intended to provide a more systematic way to describe the compiler’s
target system. However, in practice they are just as unpredictable as the system-specific
predefined macros. In addition, they are not part of any standard, and only a few compilers
support them. Therefore, the use of assertions is less portable than the use of system-specific
predefined macros. We recommend you do not use them at all.
An assertion looks like this:
Chapter 11: Implementation Details 49
#predicate (answer )
predicate must be a single identifier. answer can be any sequence of tokens; all characters are
significant except for leading and trailing whitespace, and differences in internal whitespace
sequences are ignored. (This is similar to the rules governing macro redefinition.) Thus, (x
+ y) is different from (x+y) but equivalent to ( x + y ). Parentheses do not nest inside an
answer.
To test an assertion, you write it in an ‘#if’. For example, this conditional succeeds if
either vax or ns16000 has been asserted as an answer for machine.
#if #machine (vax) || #machine (ns16000)
You can test whether any answer is asserted for a predicate by omitting the answer in the
conditional:
#if #machine
Assertions are made with the ‘#assert’ directive. Its sole argument is the assertion to
make, without the leading ‘#’ that identifies assertions in conditionals.
#assert predicate (answer )
You may make several assertions with the same predicate and different answers. Subsequent
assertions do not override previous ones for the same predicate. All the answers for any
given predicate are simultaneously true.
Assertions can be canceled with the ‘#unassert’ directive. It has the same syntax as
‘#assert’. In that form it cancels only the answer which was specified on the ‘#unassert’
line; other answers for that predicate remain true. You can cancel an entire predicate by
leaving out the answer:
#unassert predicate
In either form, if no such assertion has been made, ‘#unassert’ has no effect.
You can also make or cancel assertions using command line options. See Chapter 12
[Invocation], page 51.
Another way to prevent a header file from being included more than once is with the
‘#pragma once’ directive. If ‘#pragma once’ is seen when scanning a header file, that file
will never be read again, no matter what.
‘#pragma once’ does not have the problems that ‘#import’ does, but it is not recognized
by all preprocessors, so you cannot rely on it in a portable program.
In the current version of the preprocessor, if ‘##’ appears between a comma and a vari-
able arguments parameter, and the variable argument is omitted entirely, the comma
will be removed from the expansion. If the variable argument is empty, or the token
before ‘##’ is not a comma, then ‘##’ behaves as a normal token paste.
• ‘#line’ and ‘#include’
The ‘#line’ directive used to change GCC’s notion of the “directory containing the
current file”, used by ‘#include’ with a double-quoted header file name. In 3.0 and
later, it does not. See Chapter 6 [Line Control], page 39, for further explanation.
• Syntax of ‘#line’
In GCC 2.95 and previous, the string constant argument to ‘#line’ was treated the
same way as the argument to ‘#include’: backslash escapes were not honored, and the
string ended at the second ‘"’. This is not compliant with the C standard. In GCC
3.0, an attempt was made to correct the behavior, so that the string was treated as a
real string constant, but it turned out to be buggy. In 3.1, the bugs have been fixed.
(We are not fixing the bugs in 3.0 because they affect relatively few people and the fix
is quite invasive.)
12 Invocation
Most often when you use the C preprocessor you will not have to invoke it explicitly: the
C compiler will do so automatically. However, the preprocessor is sometimes useful on its
own. All the options listed here are also acceptable to the C compiler and have the same
meaning, except that the C compiler has different rules for specifying the output file.
Note: Whether you use the preprocessor by way of gcc or cpp, the compiler driver is run
first. This program’s purpose is to translate your command into invocations of the programs
that do the actual work. Their command line interfaces are similar but not identical to the
documented interface, and may change without notice.
The C preprocessor expects two file names as arguments, infile and outfile. The prepro-
cessor reads infile together with any other files it specifies with ‘#include’. All the output
generated by the combined input files is written in outfile.
Either infile or outfile may be ‘-’, which as infile means to read from standard input
and as outfile means to write to standard output. Also, if either file is omitted, it means
the same as if ‘-’ had been specified for that file.
Unless otherwise noted, or the option ends in ‘=’, all options which take an argument may
have that argument appear either immediately after the option, or with a space between
option and argument: ‘-Ifoo’ and ‘-I foo’ have the same effect.
Many options have multi-letter names; therefore multiple single-letter options may not
be grouped: ‘-dM’ is very different from ‘-d -M’.
-D name Predefine name as a macro, with definition 1.
-D name =definition
The contents of definition are tokenized and processed as if they appeared dur-
ing translation phase three in a ‘#define’ directive. In particular, the definition
will be truncated by embedded newline characters.
Chapter 12: Invocation 52
If you are invoking the preprocessor from a shell or shell-like program you may
need to use the shell’s quoting syntax to protect characters such as spaces that
have a meaning in the shell syntax.
If you wish to define a function-like macro on the command line, write its
argument list with surrounding parentheses before the equals sign (if any).
Parentheses are meaningful to most shells, so you will need to quote the option.
With sh and csh, ‘-D’name (args...)=definition ’’ works.
‘-D’ and ‘-U’ options are processed in the order they are given on the command
line. All ‘-imacros file ’ and ‘-include file ’ options are processed after all
‘-D’ and ‘-U’ options.
-U name Cancel any previous definition of name, either built in or provided with a ‘-D’
option.
-undef Do not predefine any system-specific or GCC-specific macros. The standard pre-
defined macros remain defined. See Section 3.7.1 [Standard Predefined Macros],
page 20.
-I dir Add the directory dir to the list of directories to be searched for header files.
See Section 2.3 [Search Path], page 9. Directories named by ‘-I’ are searched
before the standard system include directories. If the directory dir is a standard
system include directory, the option is ignored to ensure that the default search
order for system directories and the special treatment of system headers are not
defeated (see Section 2.7 [System Headers], page 12) .
-o file Write output to file. This is the same as specifying file as the second non-option
argument to cpp. gcc has a different interpretation of a second non-option
argument, so you must use ‘-o’ to specify the output file.
-Wall Turns on all optional warnings which are desirable for normal code. At present
this is ‘-Wcomment’, ‘-Wtrigraphs’, ‘-Wmultichar’ and a warning about integer
promotion causing a change of sign in #if expressions. Note that many of the
preprocessor’s warnings are on by default and have no options to control them.
-Wcomment
-Wcomments
Warn whenever a comment-start sequence ‘/*’ appears in a ‘/*’ comment, or
whenever a backslash-newline appears in a ‘//’ comment. (Both forms have
the same effect.)
-Wtrigraphs
Most trigraphs in comments cannot affect the meaning of the program. How-
ever, a trigraph that would form an escaped newline (‘??/’ at the end of a line)
can, by changing where the comment begins or ends. Therefore, only trigraphs
that would form escaped newlines produce warnings inside a comment.
This option is implied by ‘-Wall’. If ‘-Wall’ is not given, this option
is still enabled unless trigraphs are enabled. To get trigraph conversion
without warnings, but get the other ‘-Wall’ warnings, use ‘-trigraphs -Wall
-Wno-trigraphs’.
Chapter 12: Invocation 53
-Wtraditional
Warn about certain constructs that behave differently in traditional and ISO C.
Also warn about ISO C constructs that have no traditional C equivalent, and
problematic constructs which should be avoided. See Chapter 10 [Traditional
Mode], page 43.
-Wunused-macros
Warn about macros defined in the main file that are unused. A macro is used if
it is expanded or tested for existence at least once. The preprocessor will also
warn if the macro has not been used at the time it is redefined or undefined.
Built-in macros, macros defined on the command line, and macros defined in
include files are not warned about.
Note: If a macro is actually used, but only used in skipped conditional blocks,
then CPP will report it as unused. To avoid the warning in such a case, you
might improve the scope of the macro’s definition by, for example, moving it
into the first skipped block. Alternatively, you could provide a dummy use with
something like:
#if defined the_macro_causing_the_warning
#endif
-Wendif-labels
Warn whenever an ‘#else’ or an ‘#endif’ are followed by text. This usually
happens in code of the form
#if FOO
...
#else FOO
...
#endif FOO
The second and third FOO should be in comments, but often are not in older
programs. This warning is on by default.
-Werror Make all warnings into hard errors. Source code which triggers warnings will
be rejected.
-Wsystem-headers
Issue warnings for code in system headers. These are normally unhelpful in
finding bugs in your own code, therefore suppressed. If you are responsible for
the system library, you may want to see them.
-w Suppress all warnings, including those which GNU CPP issues by default.
-pedantic
Issue all the mandatory diagnostics listed in the C standard. Some of them are
left out by default, since they trigger frequently on harmless code.
Chapter 12: Invocation 54
-pedantic-errors
Issue all the mandatory diagnostics, and make all mandatory diagnostics
into errors. This includes mandatory diagnostics that GCC issues without
‘-pedantic’ but treats as warnings.
-M Instead of outputting the result of preprocessing, output a rule suitable for make
describing the dependencies of the main source file. The preprocessor outputs
one make rule containing the object file name for that source file, a colon, and
the names of all the included files, including those coming from ‘-include’ or
‘-imacros’ command line options.
Unless specified explicitly (with ‘-MT’ or ‘-MQ’), the object file name consists of
the basename of the source file with any suffix replaced with object file suffix.
If there are many included files then the rule is split into several lines using
‘\’-newline. The rule has no commands.
This option does not suppress the preprocessor’s debug output, such as ‘-dM’.
To avoid mixing such debug output with the dependency rules you should ex-
plicitly specify the dependency output file with ‘-MF’, or use an environment
variable like DEPENDENCIES_OUTPUT (see Chapter 13 [Environment Variables],
page 60). Debug output will still be sent to the regular output stream as normal.
Passing ‘-M’ to the driver implies ‘-E’, and suppresses warnings with an implicit
‘-w’.
-MM Like ‘-M’ but do not mention header files that are found in system header
directories, nor header files that are included, directly or indirectly, from such
a header.
This implies that the choice of angle brackets or double quotes in an ‘#include’
directive does not in itself determine whether that header will appear in ‘-MM’
dependency output. This is a slight change in semantics from GCC versions
3.0 and earlier.
-MF file When used with ‘-M’ or ‘-MM’, specifies a file to write the dependencies to. If
no ‘-MF’ switch is given the preprocessor sends the rules to the same place it
would have sent preprocessed output.
When used with the driver options ‘-MD’ or ‘-MMD’, ‘-MF’ overrides the default
dependency output file.
-MG In conjunction with an option such as ‘-M’ requesting dependency generation,
‘-MG’ assumes missing header files are generated files and adds them to the
dependency list without raising an error. The dependency filename is taken
directly from the #include directive without prepending any path. ‘-MG’ also
suppresses preprocessed output, as a missing header file renders this useless.
This feature is used in automatic updating of makefiles.
-MP This option instructs CPP to add a phony target for each dependency other
than the main file, causing each to depend on nothing. These dummy rules
work around errors make gives if you remove header files without updating the
‘Makefile’ to match.
This is typical output:
Chapter 12: Invocation 55
test.h:
-MT target
Change the target of the rule emitted by dependency generation. By default
CPP takes the name of the main input file, including any path, deletes any file
suffix such as ‘.c’, and appends the platform’s usual object suffix. The result
is the target.
An ‘-MT’ option will set the target to be exactly the string you specify. If you
want multiple targets, you can specify them as a single argument to ‘-MT’, or
use multiple ‘-MT’ options.
For example, ‘-MT ’$(objpfx)foo.o’’ might give
$(objpfx)foo.o: foo.c
-MQ target
Same as ‘-MT’, but it quotes any characters which are special to Make.
‘-MQ ’$(objpfx)foo.o’’ gives
$$(objpfx)foo.o: foo.c
The default target is automatically quoted, as if it were given with ‘-MQ’.
-MD ‘-MD’ is equivalent to ‘-M -MF file ’, except that ‘-E’ is not implied. The driver
determines file based on whether an ‘-o’ option is given. If it is, the driver uses
its argument but with a suffix of ‘.d’, otherwise it take the basename of the
input file and applies a ‘.d’ suffix.
If ‘-MD’ is used in conjunction with ‘-E’, any ‘-o’ switch is understood to specify
the dependency output file (see [-MF], page 54), but if used without ‘-E’, each
‘-o’ is understood to specify a target object file.
Since ‘-E’ is not implied, ‘-MD’ can be used to generate a dependency output
file as a side-effect of the compilation process.
-MMD Like ‘-MD’ except mention only user header files, not system header files.
-x c
-x c++
-x objective-c
-x assembler-with-cpp
Specify the source language: C, C++, Objective-C, or assembly. This has noth-
ing to do with standards conformance or extensions; it merely selects which
base syntax to expect. If you give none of these options, cpp will deduce the
language from the extension of the source file: ‘.c’, ‘.cc’, ‘.m’, or ‘.S’. Some
other common extensions for C++ and assembly are also recognized. If cpp does
not recognize the extension, it will treat the file as C; this is the most generic
mode.
Note: Previous versions of cpp accepted a ‘-lang’ option which selected both
the language and the standards conformance level. This option has been re-
moved, because it conflicts with the ‘-l’ option.
Chapter 12: Invocation 56
-std=standard
-ansi Specify the standard to which the code should conform. Currently CPP knows
about C and C++ standards; others may be added in the future.
standard may be one of:
iso9899:1990
c89 The ISO C standard from 1990. ‘c89’ is the customary shorthand
for this version of the standard.
The ‘-ansi’ option is equivalent to ‘-std=c89’.
iso9899:199409
The 1990 C standard, as amended in 1994.
iso9899:1999
c99
iso9899:199x
c9x The revised ISO C standard, published in December 1999. Before
publication, this was known as C9X.
gnu89 The 1990 C standard plus GNU extensions. This is the default.
gnu99
gnu9x The 1999 C standard plus GNU extensions.
c++98 The 1998 ISO C++ standard plus amendments.
gnu++98 The same as ‘-std=c++98’ plus GNU extensions. This is the default
for C++ code.
-I- Split the include path. Any directories specified with ‘-I’ options before ‘-I-’
are searched only for headers requested with #include "file "; they are not
searched for #include <file >. If additional directories are specified with ‘-I’
options after the ‘-I-’, those directories are searched for all ‘#include’ direc-
tives.
In addition, ‘-I-’ inhibits the use of the directory of the current file directory as
the first search directory for #include "file ". See Section 2.3 [Search Path],
page 9. This option has been deprecated.
-nostdinc
Do not search the standard system directories for header files. Only the direc-
tories you have specified with ‘-I’ options (and the directory of the current file,
if appropriate) are searched.
-nostdinc++
Do not search for header files in the C++-specific standard directories, but do
still search the other standard directories. (This option is used when building
the C++ library.)
-include file
Process file as if #include "file" appeared as the first line of the primary
source file. However, the first directory searched for file is the preprocessor’s
working directory instead of the directory containing the main source file. If
Chapter 12: Invocation 57
not found there, it is searched for in the remainder of the #include "..."
search chain as normal.
If multiple ‘-include’ options are given, the files are included in the order they
appear on the command line.
-imacros file
Exactly like ‘-include’, except that any output produced by scanning file is
thrown away. Macros it defines remain defined. This allows you to acquire all
the macros from a header without also processing its declarations.
All files specified by ‘-imacros’ are processed before all files specified by
‘-include’.
-idirafter dir
Search dir for header files, but do it after all directories specified with ‘-I’ and
the standard system directories have been exhausted. dir is treated as a system
include directory.
-iprefix prefix
Specify prefix as the prefix for subsequent ‘-iwithprefix’ options. If the prefix
represents a directory, you should include the final ‘/’.
-iwithprefix dir
-iwithprefixbefore dir
Append dir to the prefix specified previously with ‘-iprefix’, and add the
resulting directory to the include search path. ‘-iwithprefixbefore’ puts it
in the same place ‘-I’ would; ‘-iwithprefix’ puts it where ‘-idirafter’ would.
-isysroot dir
This option is like the ‘--sysroot’ option, but applies only to header files. See
the ‘--sysroot’ option for more information.
-imultilib dir
Use dir as a subdirectory of the directory containing target-specific C++ headers.
-isystem dir
Search dir for header files, after all directories specified by ‘-I’ but before the
standard system directories. Mark it as a system directory, so that it gets the
same special treatment as is applied to the standard system directories. See
Section 2.7 [System Headers], page 12.
-iquote dir
Search dir only for header files requested with #include "file "; they are not
searched for #include <file >, before all directories specified by ‘-I’ and before
the standard system directories. See Section 2.3 [Search Path], page 9.
-fdollars-in-identifiers
Accept ‘$’ in identifiers. See [Identifier characters], page 46.
-fextended-identifiers
Accept universal character names in identifiers. This option is experimental; in
a future version of GCC, it will be enabled by default for C99 and C++.
Chapter 12: Invocation 58
-fpreprocessed
Indicate to the preprocessor that the input file has already been preprocessed.
This suppresses things like macro expansion, trigraph conversion, escaped new-
line splicing, and processing of most directives. The preprocessor still recognizes
and removes comments, so that you can pass a file preprocessed with ‘-C’ to the
compiler without problems. In this mode the integrated preprocessor is little
more than a tokenizer for the front ends.
‘-fpreprocessed’ is implicit if the input file has one of the extensions ‘.i’,
‘.ii’ or ‘.mi’. These are the extensions that GCC uses for preprocessed files
created by ‘-save-temps’.
-ftabstop=width
Set the distance between tab stops. This helps the preprocessor report correct
column numbers in warnings or errors, even if tabs appear on the line. If the
value is less than 1 or greater than 100, the option is ignored. The default is 8.
-fexec-charset=charset
Set the execution character set, used for string and character constants. The
default is UTF-8. charset can be any encoding supported by the system’s iconv
library routine.
-fwide-exec-charset=charset
Set the wide execution character set, used for wide string and character con-
stants. The default is UTF-32 or UTF-16, whichever corresponds to the width
of wchar_t. As with ‘-fexec-charset’, charset can be any encoding supported
by the system’s iconv library routine; however, you will have problems with
encodings that do not fit exactly in wchar_t.
-finput-charset=charset
Set the input character set, used for translation from the character set of the
input file to the source character set used by GCC. If the locale does not specify,
or GCC cannot get this information from the locale, the default is UTF-8. This
can be overridden by either the locale or this command line option. Currently
the command line option takes precedence if there’s a conflict. charset can be
any encoding supported by the system’s iconv library routine.
-fworking-directory
Enable generation of linemarkers in the preprocessor output that will let the
compiler know the current working directory at the time of preprocessing.
When this option is enabled, the preprocessor will emit, after the initial line-
marker, a second linemarker with the current working directory followed by
two slashes. GCC will use this directory, when it’s present in the prepro-
cessed input, as the directory emitted as the current working directory in some
debugging information formats. This option is implicitly enabled if debug-
ging information is enabled, but this can be inhibited with the negated form
‘-fno-working-directory’. If the ‘-P’ flag is present in the command line,
this option has no effect, since no #line directives are emitted whatsoever.
Chapter 12: Invocation 59
-fno-show-column
Do not print column numbers in diagnostics. This may be necessary if diag-
nostics are being scanned by a program that does not understand the column
numbers, such as dejagnu.
-A predicate =answer
Make an assertion with the predicate predicate and answer answer. This form is
preferred to the older form ‘-A predicate (answer )’, which is still supported,
because it does not use shell special characters. See Section 11.3.1 [Assertions],
page 48.
-A -predicate =answer
Cancel an assertion with the predicate predicate and answer answer.
-dCHARS CHARS is a sequence of one or more of the following characters, and must
not be preceded by a space. Other characters are interpreted by the compiler
proper, or reserved for future versions of GCC, and so are silently ignored. If
you specify characters whose behavior conflicts, the result is undefined.
‘M’ Instead of the normal output, generate a list of ‘#define’ directives
for all the macros defined during the execution of the preprocessor,
including predefined macros. This gives you a way of finding out
what is predefined in your version of the preprocessor. Assuming
you have no file ‘foo.h’, the command
touch foo.h; cpp -dM foo.h
will show all the predefined macros.
‘D’ Like ‘M’ except in two respects: it does not include the predefined
macros, and it outputs both the ‘#define’ directives and the result
of preprocessing. Both kinds of output go to the standard output
file.
‘N’ Like ‘D’, but emit only the macro names, not their expansions.
‘I’ Output ‘#include’ directives in addition to the result of prepro-
cessing.
-P Inhibit generation of linemarkers in the output from the preprocessor. This
might be useful when running the preprocessor on something that is not C code,
and will be sent to a program which might be confused by the linemarkers. See
Chapter 9 [Preprocessor Output], page 42.
-C Do not discard comments. All comments are passed through to the output file,
except for comments in processed directives, which are deleted along with the
directive.
You should be prepared for side effects when using ‘-C’; it causes the prepro-
cessor to treat comments as tokens in their own right. For example, comments
appearing at the start of what would be a directive line have the effect of turn-
ing that line into an ordinary source line, since the first token on the line is no
longer a ‘#’.
Chapter 13: Environment Variables 60
-CC Do not discard comments, including during macro expansion. This is like ‘-C’,
except that comments contained within macros are also passed through to the
output file where the macro is expanded.
In addition to the side-effects of the ‘-C’ option, the ‘-CC’ option causes all
C++-style comments inside a macro to be converted to C-style comments. This
is to prevent later use of that macro from inadvertently commenting out the
remainder of the source line.
The ‘-CC’ option is generally used to support lint comments.
-traditional-cpp
Try to imitate the behavior of old-fashioned C preprocessors, as opposed to ISO
C preprocessors. See Chapter 10 [Traditional Mode], page 43.
-trigraphs
Process trigraph sequences. See Section 1.2 [Initial processing], page 2.
-remap Enable special code to work around file systems which only permit very short
file names, such as MS-DOS.
--help
--target-help
Print text describing all the command line options instead of preprocessing
anything.
-v Verbose mode. Print out GNU CPP’s version number at the beginning of
execution, and report the final form of the include path.
-H Print the name of each header file used, in addition to other normal activities.
Each name is indented to show how deep in the ‘#include’ stack it is. Precom-
piled header files are also printed, even if they are found to be invalid; an invalid
precompiled header file is printed with ‘...x’ and a valid one with ‘...!’ .
-version
--version
Print out GNU CPP’s version number. With one dash, proceed to preprocess
as normal. With two dashes, exit immediately.
13 Environment Variables
This section describes the environment variables that affect how CPP operates. You can use
them to specify directories or prefixes to use when searching for include files, or to control
dependency output.
Note that you can also specify places to search using options such as ‘-I’, and control
dependency output with options like ‘-M’ (see Chapter 12 [Invocation], page 51). These take
precedence over environment variables, which in turn take precedence over the configuration
of GCC.
Chapter 13: Environment Variables 61
CPATH
C_INCLUDE_PATH
CPLUS_INCLUDE_PATH
OBJC_INCLUDE_PATH
Each variable’s value is a list of directories separated by a special character,
much like PATH, in which to look for header files. The special character, PATH_
SEPARATOR, is target-dependent and determined at GCC build time. For Mi-
crosoft Windows-based targets it is a semicolon, and for almost all other targets
it is a colon.
CPATH specifies a list of directories to be searched as if specified with ‘-I’, but
after any paths given with ‘-I’ options on the command line. This environment
variable is used regardless of which language is being preprocessed.
The remaining environment variables apply only when preprocessing the par-
ticular language indicated. Each specifies a list of directories to be searched as
if specified with ‘-isystem’, but after any paths given with ‘-isystem’ options
on the command line.
In all these variables, an empty element instructs the compiler to search its
current working directory. Empty elements can appear at the beginning or end
of a path. For instance, if the value of CPATH is :/special/include, that has
the same effect as ‘-I. -I/special/include’.
See also Section 2.3 [Search Path], page 9.
DEPENDENCIES_OUTPUT
If this variable is set, its value specifies how to output dependencies for Make
based on the non-system header files processed by the compiler. System header
files are ignored in the dependency output.
The value of DEPENDENCIES_OUTPUT can be just a file name, in which case the
Make rules are written to that file, guessing the target name from the source
file name. Or the value can have the form ‘file target ’, in which case the
rules are written to file file using target as the target name.
In other words, this environment variable is equivalent to combining the options
‘-MM’ and ‘-MF’ (see Chapter 12 [Invocation], page 51), with an optional ‘-MT’
switch too.
SUNPRO_DEPENDENCIES
This variable is the same as DEPENDENCIES_OUTPUT (see above), except that
system header files are not ignored, so it implies ‘-M’ rather than ‘-MM’. However,
the dependence on the main input file is omitted. See Chapter 12 [Invocation],
page 51.
GNU Free Documentation License 62
under this License. If a section does not fit the above definition of Secondary then it is
not allowed to be designated as Invariant. The Document may contain zero Invariant
Sections. If the Document does not identify any Invariant Sections then there are none.
The “Cover Texts” are certain short passages of text that are listed, as Front-Cover
Texts or Back-Cover Texts, in the notice that says that the Document is released under
this License. A Front-Cover Text may be at most 5 words, and a Back-Cover Text may
be at most 25 words.
A “Transparent” copy of the Document means a machine-readable copy, represented
in a format whose specification is available to the general public, that is suitable for
revising the document straightforwardly with generic text editors or (for images com-
posed of pixels) generic paint programs or (for drawings) some widely available drawing
editor, and that is suitable for input to text formatters or for automatic translation to
a variety of formats suitable for input to text formatters. A copy made in an otherwise
Transparent file format whose markup, or absence of markup, has been arranged to
thwart or discourage subsequent modification by readers is not Transparent. An image
format is not Transparent if used for any substantial amount of text. A copy that is
not “Transparent” is called “Opaque”.
Examples of suitable formats for Transparent copies include plain ascii without
markup, Texinfo input format, LaTEX input format, SGML or XML using a publicly
available DTD, and standard-conforming simple HTML, PostScript or PDF designed
for human modification. Examples of transparent image formats include PNG, XCF
and JPG. Opaque formats include proprietary formats that can be read and edited
only by proprietary word processors, SGML or XML for which the DTD and/or
processing tools are not generally available, and the machine-generated HTML,
PostScript or PDF produced by some word processors for output purposes only.
The “Title Page” means, for a printed book, the title page itself, plus such following
pages as are needed to hold, legibly, the material this License requires to appear in the
title page. For works in formats which do not have any title page as such, “Title Page”
means the text near the most prominent appearance of the work’s title, preceding the
beginning of the body of the text.
A section “Entitled XYZ” means a named subunit of the Document whose title either
is precisely XYZ or contains XYZ in parentheses following text that translates XYZ in
another language. (Here XYZ stands for a specific section name mentioned below, such
as “Acknowledgements”, “Dedications”, “Endorsements”, or “History”.) To “Preserve
the Title” of such a section when you modify the Document means that it remains a
section “Entitled XYZ” according to this definition.
The Document may include Warranty Disclaimers next to the notice which states that
this License applies to the Document. These Warranty Disclaimers are considered to
be included by reference in this License, but only as regards disclaiming warranties:
any other implication that these Warranty Disclaimers may have is void and has no
effect on the meaning of this License.
2. VERBATIM COPYING
You may copy and distribute the Document in any medium, either commercially or
noncommercially, provided that this License, the copyright notices, and the license
notice saying this License applies to the Document are reproduced in all copies, and
GNU Free Documentation License 64
that you add no other conditions whatsoever to those of this License. You may not use
technical measures to obstruct or control the reading or further copying of the copies
you make or distribute. However, you may accept compensation in exchange for copies.
If you distribute a large enough number of copies you must also follow the conditions
in section 3.
You may also lend copies, under the same conditions stated above, and you may publicly
display copies.
3. COPYING IN QUANTITY
If you publish printed copies (or copies in media that commonly have printed covers) of
the Document, numbering more than 100, and the Document’s license notice requires
Cover Texts, you must enclose the copies in covers that carry, clearly and legibly, all
these Cover Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on
the back cover. Both covers must also clearly and legibly identify you as the publisher
of these copies. The front cover must present the full title with all words of the title
equally prominent and visible. You may add other material on the covers in addition.
Copying with changes limited to the covers, as long as they preserve the title of the
Document and satisfy these conditions, can be treated as verbatim copying in other
respects.
If the required texts for either cover are too voluminous to fit legibly, you should put
the first ones listed (as many as fit reasonably) on the actual cover, and continue the
rest onto adjacent pages.
If you publish or distribute Opaque copies of the Document numbering more than 100,
you must either include a machine-readable Transparent copy along with each Opaque
copy, or state in or with each Opaque copy a computer-network location from which
the general network-using public has access to download using public-standard network
protocols a complete Transparent copy of the Document, free of added material. If
you use the latter option, you must take reasonably prudent steps, when you begin
distribution of Opaque copies in quantity, to ensure that this Transparent copy will
remain thus accessible at the stated location until at least one year after the last time
you distribute an Opaque copy (directly or through your agents or retailers) of that
edition to the public.
It is requested, but not required, that you contact the authors of the Document well
before redistributing any large number of copies, to give them a chance to provide you
with an updated version of the Document.
4. MODIFICATIONS
You may copy and distribute a Modified Version of the Document under the conditions
of sections 2 and 3 above, provided that you release the Modified Version under precisely
this License, with the Modified Version filling the role of the Document, thus licensing
distribution and modification of the Modified Version to whoever possesses a copy of
it. In addition, you must do these things in the Modified Version:
A. Use in the Title Page (and on the covers, if any) a title distinct from that of the
Document, and from those of previous versions (which should, if there were any,
be listed in the History section of the Document). You may use the same title as
a previous version if the original publisher of that version gives permission.
GNU Free Documentation License 65
B. List on the Title Page, as authors, one or more persons or entities responsible for
authorship of the modifications in the Modified Version, together with at least five
of the principal authors of the Document (all of its principal authors, if it has fewer
than five), unless they release you from this requirement.
C. State on the Title page the name of the publisher of the Modified Version, as the
publisher.
D. Preserve all the copyright notices of the Document.
E. Add an appropriate copyright notice for your modifications adjacent to the other
copyright notices.
F. Include, immediately after the copyright notices, a license notice giving the public
permission to use the Modified Version under the terms of this License, in the form
shown in the Addendum below.
G. Preserve in that license notice the full lists of Invariant Sections and required Cover
Texts given in the Document’s license notice.
H. Include an unaltered copy of this License.
I. Preserve the section Entitled “History”, Preserve its Title, and add to it an item
stating at least the title, year, new authors, and publisher of the Modified Version
as given on the Title Page. If there is no section Entitled “History” in the Docu-
ment, create one stating the title, year, authors, and publisher of the Document
as given on its Title Page, then add an item describing the Modified Version as
stated in the previous sentence.
J. Preserve the network location, if any, given in the Document for public access to
a Transparent copy of the Document, and likewise the network locations given in
the Document for previous versions it was based on. These may be placed in the
“History” section. You may omit a network location for a work that was published
at least four years before the Document itself, or if the original publisher of the
version it refers to gives permission.
K. For any section Entitled “Acknowledgements” or “Dedications”, Preserve the Title
of the section, and preserve in the section all the substance and tone of each of the
contributor acknowledgements and/or dedications given therein.
L. Preserve all the Invariant Sections of the Document, unaltered in their text and
in their titles. Section numbers or the equivalent are not considered part of the
section titles.
M. Delete any section Entitled “Endorsements”. Such a section may not be included
in the Modified Version.
N. Do not retitle any existing section to be Entitled “Endorsements” or to conflict in
title with any Invariant Section.
O. Preserve any Warranty Disclaimers.
If the Modified Version includes new front-matter sections or appendices that qualify
as Secondary Sections and contain no material copied from the Document, you may at
your option designate some or all of these sections as invariant. To do this, add their
titles to the list of Invariant Sections in the Modified Version’s license notice. These
titles must be distinct from any other section titles.
GNU Free Documentation License 66
You may add a section Entitled “Endorsements”, provided it contains nothing but
endorsements of your Modified Version by various parties—for example, statements of
peer review or that the text has been approved by an organization as the authoritative
definition of a standard.
You may add a passage of up to five words as a Front-Cover Text, and a passage of up
to 25 words as a Back-Cover Text, to the end of the list of Cover Texts in the Modified
Version. Only one passage of Front-Cover Text and one of Back-Cover Text may be
added by (or through arrangements made by) any one entity. If the Document already
includes a cover text for the same cover, previously added by you or by arrangement
made by the same entity you are acting on behalf of, you may not add another; but
you may replace the old one, on explicit permission from the previous publisher that
added the old one.
The author(s) and publisher(s) of the Document do not by this License give permission
to use their names for publicity for or to assert or imply endorsement of any Modified
Version.
5. COMBINING DOCUMENTS
You may combine the Document with other documents released under this License,
under the terms defined in section 4 above for modified versions, provided that you
include in the combination all of the Invariant Sections of all of the original documents,
unmodified, and list them all as Invariant Sections of your combined work in its license
notice, and that you preserve all their Warranty Disclaimers.
The combined work need only contain one copy of this License, and multiple identical
Invariant Sections may be replaced with a single copy. If there are multiple Invariant
Sections with the same name but different contents, make the title of each such section
unique by adding at the end of it, in parentheses, the name of the original author or
publisher of that section if known, or else a unique number. Make the same adjustment
to the section titles in the list of Invariant Sections in the license notice of the combined
work.
In the combination, you must combine any sections Entitled “History” in the vari-
ous original documents, forming one section Entitled “History”; likewise combine any
sections Entitled “Acknowledgements”, and any sections Entitled “Dedications”. You
must delete all sections Entitled “Endorsements.”
6. COLLECTIONS OF DOCUMENTS
You may make a collection consisting of the Document and other documents released
under this License, and replace the individual copies of this License in the various
documents with a single copy that is included in the collection, provided that you
follow the rules of this License for verbatim copying of each of the documents in all
other respects.
You may extract a single document from such a collection, and distribute it individu-
ally under this License, provided you insert a copy of this License into the extracted
document, and follow this License in all other respects regarding verbatim copying of
that document.
7. AGGREGATION WITH INDEPENDENT WORKS
A compilation of the Document or its derivatives with other separate and independent
documents or works, in or on a volume of a storage or distribution medium, is called
GNU Free Documentation License 67
an “aggregate” if the copyright resulting from the compilation is not used to limit the
legal rights of the compilation’s users beyond what the individual works permit. When
the Document is included in an aggregate, this License does not apply to the other
works in the aggregate which are not themselves derivative works of the Document.
If the Cover Text requirement of section 3 is applicable to these copies of the Document,
then if the Document is less than one half of the entire aggregate, the Document’s Cover
Texts may be placed on covers that bracket the Document within the aggregate, or the
electronic equivalent of covers if the Document is in electronic form. Otherwise they
must appear on printed covers that bracket the whole aggregate.
8. TRANSLATION
Translation is considered a kind of modification, so you may distribute translations
of the Document under the terms of section 4. Replacing Invariant Sections with
translations requires special permission from their copyright holders, but you may
include translations of some or all Invariant Sections in addition to the original versions
of these Invariant Sections. You may include a translation of this License, and all the
license notices in the Document, and any Warranty Disclaimers, provided that you
also include the original English version of this License and the original versions of
those notices and disclaimers. In case of a disagreement between the translation and
the original version of this License or a notice or disclaimer, the original version will
prevail.
If a section in the Document is Entitled “Acknowledgements”, “Dedications”, or “His-
tory”, the requirement (section 4) to Preserve its Title (section 1) will typically require
changing the actual title.
9. TERMINATION
You may not copy, modify, sublicense, or distribute the Document except as expressly
provided for under this License. Any other attempt to copy, modify, sublicense or
distribute the Document is void, and will automatically terminate your rights under
this License. However, parties who have received copies, or rights, from you under this
License will not have their licenses terminated so long as such parties remain in full
compliance.
10. FUTURE REVISIONS OF THIS LICENSE
The Free Software Foundation may publish new, revised versions of the GNU Free
Documentation License from time to time. Such new versions will be similar in spirit
to the present version, but may differ in detail to address new problems or concerns.
See http://www.gnu.org/copyleft/.
Each version of the License is given a distinguishing version number. If the Document
specifies that a particular numbered version of this License “or any later version”
applies to it, you have the option of following the terms and conditions either of that
specified version or of any later version that has been published (not as a draft) by
the Free Software Foundation. If the Document does not specify a version number of
this License, you may choose any version ever published (not as a draft) by the Free
Software Foundation.
GNU Free Documentation License 68
Index of Directives
#assert . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49 #include . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
#define . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 #include_next . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
#elif . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37 #line . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39
#else . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37 #pragma GCC dependency . . . . . . . . . . . . . . . . . . . . . 40
#endif . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 34
#pragma GCC poison . . . . . . . . . . . . . . . . . . . . . . . . . 41
#error . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38
#pragma GCC system_header. . . . . . . . . . . . . . . 12, 41
#ident . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
#if . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 34 #sccs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
#ifdef . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 34 #unassert . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49
#ifndef . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35 #undef . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
#import . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49 #warning. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38
Option Index
CPP’s command line options and environment variables are indexed here without any initial
‘-’ or ‘--’.
A H
A . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 59 H . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
ansi . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56 help . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
C I
C ........................................... 59 I ........................................... 52
C_INCLUDE_PATH . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 61 I- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56
CPATH . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 61 idirafter . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 57
CPLUS_INCLUDE_PATH . . . . . . . . . . . . . . . . . . . . . . . . . 61 imacros . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 57
imultilib . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 57
include . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56
D iprefix . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 57
D ........................................... 51 iquote . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 57
dD . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 59 isysroot. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 57
isystem . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 57
DEPENDENCIES_OUTPUT . . . . . . . . . . . . . . . . . . . . . . . . 61
iwithprefix . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 57
dI . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 59
iwithprefixbefore . . . . . . . . . . . . . . . . . . . . . . . . . . 57
dM . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 59
dN . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 59
M
F M ........................................... 54
MD . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55
fdollars-in-identifiers . . . . . . . . . . . . . . . . . . . 57
MF . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54
fexec-charset . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 58
MG . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54
fextended-identifiers . . . . . . . . . . . . . . . . . . . . . 57
MM . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54
finput-charset . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 58
MMD . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55
fno-show-column . . . . . . . . . . . . . . . . . . . . . . . . . . . . 59
MP . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54
fno-working-directory . . . . . . . . . . . . . . . . . . . . . 58
MQ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55
fpreprocessed . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 58
MT . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55
ftabstop. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 58
fwide-exec-charset . . . . . . . . . . . . . . . . . . . . . . . . . 58
fworking-directory . . . . . . . . . . . . . . . . . . . . . . . . . 58 N
nostdinc. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56
Option Index 70
nostdinc++ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56 U
U . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52
O undef . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52
o . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52
OBJC_INCLUDE_PATH . . . . . . . . . . . . . . . . . . . . . . . . . . 61 V
v . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
P version . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
P . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 59
pedantic. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53 W
pedantic-errors . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54
w ........................................... 53
Wall . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52
R Wcomment. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52
Wcomments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52
remap . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
Wendif-labels . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53
Werror . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53
S Wimport . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53
Wsystem-headers . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53
std= . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56 Wtraditional . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53
SUNPRO_DEPENDENCIES . . . . . . . . . . . . . . . . . . . . . . . . 61 Wtrigraphs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52
Wundef . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53
T Wunused-macros . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53
target-help . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
traditional-cpp . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60 X
trigraphs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
x . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55
Concept Index 71
Concept Index
# environment variables . . . . . . . . . . . . . . . . . . . . . . . . 60
‘#’ operator . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16 expansion of arguments . . . . . . . . . . . . . . . . . . . . . . 32
‘##’ operator . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
F
FDL, GNU Free Documentation License . . . . . . . 62
_Pragma . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 40 function-like macros. . . . . . . . . . . . . . . . . . . . . . . . . . 14
A G
alternative tokens . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 grouping options . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51
arguments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 guard macro. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
arguments in macro definitions. . . . . . . . . . . . . . . . 15
assertions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48
assertions, canceling . . . . . . . . . . . . . . . . . . . . . . . . . 49 H
header file . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
header file names . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
B
backslash-newline . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
block comments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
I
identifiers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
implementation limits . . . . . . . . . . . . . . . . . . . . . . . . 47
C implementation-defined behavior . . . . . . . . . . . . . . 46
C++ named operators . . . . . . . . . . . . . . . . . . . . . . . . 27 including just once . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
character constants . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 invocation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51
character set, execution . . . . . . . . . . . . . . . . . . . . . . 58 iso646.h . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
character set, input . . . . . . . . . . . . . . . . . . . . . . . . . . 58
character set, wide execution . . . . . . . . . . . . . . . . . 58
command line . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51 L
commenting out code . . . . . . . . . . . . . . . . . . . . . . . . 38 line comments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
comments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 line control . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39
common predefined macros . . . . . . . . . . . . . . . . . . . 22 line endings . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
computed includes . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 linemarkers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 42
concatenation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
conditional group . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35
conditionals . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33 M
continued lines . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 macro argument expansion . . . . . . . . . . . . . . . . . . . 32
controlling macro . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 macro arguments and directives . . . . . . . . . . . . . . . 28
macros in include . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
macros with arguments . . . . . . . . . . . . . . . . . . . . . . . 15
D macros with variable arguments . . . . . . . . . . . . . . . 19
defined . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36 make . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54
dependencies for make as output . . . . . . . . . . . . . . 61 manifest constants . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
dependencies, make . . . . . . . . . . . . . . . . . . . . . . . . . . 54
diagnostic . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38
differences from previous versions . . . . . . . . . . . . . 50 N
digraphs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 named operators . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
directive line . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 newlines in macro arguments . . . . . . . . . . . . . . . . . 33
directive name . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 null directive . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
directives. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 numbers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
E O
empty macro arguments . . . . . . . . . . . . . . . . . . . . . . 16 object-like macro . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
Concept Index 72
W
S wrapper #ifndef . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
self-reference . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31 wrapper headers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11