c-common.c, [...]: Delete code implementing -traditional mode.
[gcc.git] / gcc / doc / cpp.texi
1 \input texinfo
2 @setfilename cpp.info
3 @settitle The C Preprocessor
4 @setchapternewpage off
5 @c @smallbook
6 @c @cropmarks
7 @c @finalout
8
9 @macro copyrightnotice
10 @c man begin COPYRIGHT
11 Copyright @copyright{} 1987, 1989, 1991, 1992, 1993, 1994, 1995, 1996,
12 1997, 1998, 1999, 2000, 2001
13 Free Software Foundation, Inc.
14
15 Permission is granted to copy, distribute and/or modify this document
16 under the terms of the GNU Free Documentation License, Version 1.1 or
17 any later version published by the Free Software Foundation. A copy of
18 the license is included in the
19 @c man end
20 section entitled ``GNU Free Documentation License''.
21 @ignore
22 @c man begin COPYRIGHT
23 man page gfdl(7).
24 @c man end
25 @end ignore
26 @end macro
27
28 @macro covertexts
29 @c man begin COPYRIGHT
30 This manual contains no Invariant Sections. The Front-Cover Texts are
31 (a) (see below), and the Back-Cover Texts are (b) (see below).
32
33 (a) The FSF's Front-Cover Text is:
34
35 A GNU Manual
36
37 (b) The FSF's Back-Cover Text is:
38
39 You have freedom to copy and modify this GNU Manual, like GNU
40 software. Copies published by the Free Software Foundation raise
41 funds for GNU development.
42 @c man end
43 @end macro
44
45 @macro gcctabopt{body}
46 @code{\body\}
47 @end macro
48
49 @ifinfo
50 @dircategory Programming
51 @direntry
52 * Cpp: (cpp). The GNU C preprocessor.
53 @end direntry
54 @end ifinfo
55
56 @titlepage
57 @title The C Preprocessor
58 @subtitle Last revised April 2001
59 @subtitle for GCC version 3
60 @author Richard M. Stallman
61 @author Zachary Weinberg
62 @page
63 @c There is a fill at the bottom of the page, so we need a filll to
64 @c override it.
65 @vskip 0pt plus 1filll
66 @copyrightnotice{}
67 @covertexts{}
68 @end titlepage
69 @contents
70 @page
71
72 @node Top
73 @top
74 The C preprocessor implements the macro language used to transform C,
75 C++, and Objective-C programs before they are compiled. It can also be
76 useful on its own.
77
78 @menu
79 * Overview::
80 * Header Files::
81 * Macros::
82 * Conditionals::
83 * Diagnostics::
84 * Line Control::
85 * Pragmas::
86 * Other Directives::
87 * Preprocessor Output::
88 * Traditional Mode::
89 * Implementation Details::
90 * Invocation::
91 * GNU Free Documentation License::
92 * Index of Directives::
93 * Concept Index::
94
95 @detailmenu
96 --- The Detailed Node Listing ---
97
98 Overview
99
100 * Initial processing::
101 * Tokenization::
102 * The preprocessing language::
103
104 Header Files
105
106 * Include Syntax::
107 * Include Operation::
108 * Search Path::
109 * Once-Only Headers::
110 * Computed Includes::
111 * Wrapper Headers::
112 * System Headers::
113
114 Macros
115
116 * Object-like Macros::
117 * Function-like Macros::
118 * Macro Arguments::
119 * Stringification::
120 * Concatenation::
121 * Variadic Macros::
122 * Predefined Macros::
123 * Undefining and Redefining Macros::
124 * Directives Within Macro Arguments::
125 * Macro Pitfalls::
126
127 Predefined Macros
128
129 * Standard Predefined Macros::
130 * Common Predefined Macros::
131 * System-specific Predefined Macros::
132 * C++ Named Operators::
133
134 Macro Pitfalls
135
136 * Misnesting::
137 * Operator Precedence Problems::
138 * Swallowing the Semicolon::
139 * Duplication of Side Effects::
140 * Self-Referential Macros::
141 * Argument Prescan::
142 * Newlines in Arguments::
143
144 Conditionals
145
146 * Conditional Uses::
147 * Conditional Syntax::
148 * Deleted Code::
149
150 Conditional Syntax
151
152 * Ifdef::
153 * If::
154 * Defined::
155 * Else::
156 * Elif::
157
158 Implementation Details
159
160 * Implementation-defined behavior::
161 * Implementation limits::
162 * Obsolete Features::
163 * Differences from previous versions::
164
165 Obsolete Features
166
167 * Assertions::
168 * Obsolete once-only headers::
169 * Miscellaneous obsolete features::
170
171 @end detailmenu
172 @end menu
173
174 @ifnottex
175 @copyrightnotice{}
176 @covertexts{}
177 @end ifnottex
178
179 @node Overview
180 @chapter Overview
181 @c man begin DESCRIPTION
182 The C preprocessor, often known as @dfn{cpp}, is a @dfn{macro processor}
183 that is used automatically by the C compiler to transform your program
184 before compilation. It is called a macro processor because it allows
185 you to define @dfn{macros}, which are brief abbreviations for longer
186 constructs.
187
188 The C preprocessor is intended to be used only with C, C++, and
189 Objective-C source code. In the past, it has been abused as a general
190 text processor. It will choke on input which does not obey C's lexical
191 rules. For example, apostrophes will be interpreted as the beginning of
192 character constants, and cause errors. Also, you cannot rely on it
193 preserving characteristics of the input which are not significant to
194 C-family languages. If a Makefile is preprocessed, all the hard tabs
195 will be removed, and the Makefile will not work.
196
197 Having said that, you can often get away with using cpp on things which
198 are not C@. Other Algol-ish programming languages are often safe
199 (Pascal, Ada, etc.) So is assembly, with caution. @option{-traditional}
200 mode preserves more white space, and is otherwise more permissive. Many
201 of the problems can be avoided by writing C or C++ style comments
202 instead of native language comments, and keeping macros simple.
203
204 Wherever possible, you should use a preprocessor geared to the language
205 you are writing in. Modern versions of the GNU assembler have macro
206 facilities. Most high level programming languages have their own
207 conditional compilation and inclusion mechanism. If all else fails,
208 try a true general text processor, such as GNU M4.
209
210 C preprocessors vary in some details. This manual discusses the GNU C
211 preprocessor, which provides a small superset of the features of ISO
212 Standard C@. In its default mode, the GNU C preprocessor does not do a
213 few things required by the standard. These are features which are
214 rarely, if ever, used, and may cause surprising changes to the meaning
215 of a program which does not expect them. To get strict ISO Standard C,
216 you should use the @option{-std=c89} or @option{-std=c99} options, depending
217 on which version of the standard you want. To get all the mandatory
218 diagnostics, you must also use @option{-pedantic}. @xref{Invocation}.
219 @c man end
220
221 @menu
222 * Initial processing::
223 * Tokenization::
224 * The preprocessing language::
225 @end menu
226
227 @node Initial processing
228 @section Initial processing
229
230 The preprocessor performs a series of textual transformations on its
231 input. These happen before all other processing. Conceptually, they
232 happen in a rigid order, and the entire file is run through each
233 transformation before the next one begins. GNU CPP actually does them
234 all at once, for performance reasons. These transformations correspond
235 roughly to the first three ``phases of translation'' described in the C
236 standard.
237
238 @enumerate
239 @item
240 @cindex character sets
241 @cindex line endings
242 The input file is read into memory and broken into lines.
243
244 GNU CPP expects its input to be a text file, that is, an unstructured
245 stream of ASCII characters, with some characters indicating the end of a
246 line of text. Extended ASCII character sets, such as ISO Latin-1 or
247 Unicode encoded in UTF-8, are also acceptable. Character sets that are
248 not strict supersets of seven-bit ASCII will not work. We plan to add
249 complete support for international character sets in a future release.
250
251 Different systems use different conventions to indicate the end of a
252 line. GCC accepts the ASCII control sequences @kbd{LF}, @kbd{@w{CR
253 LF}}, @kbd{CR}, and @kbd{@w{LF CR}} as end-of-line markers. The first
254 three are the canonical sequences used by Unix, DOS and VMS, and the
255 classic Mac OS (before OSX) respectively. You may therefore safely copy
256 source code written on any of those systems to a different one and use
257 it without conversion. (GCC may lose track of the current line number
258 if a file doesn't consistently use one convention, as sometimes happens
259 when it is edited on computers with different conventions that share a
260 network file system.) @kbd{@w{LF CR}} is included because it has been
261 reported as an end-of-line marker under exotic conditions.
262
263 If the last line of any input file lacks an end-of-line marker, the end
264 of the file is considered to implicitly supply one. The C standard says
265 that this condition provokes undefined behavior, so GCC will emit a
266 warning message.
267
268 @item
269 @cindex trigraphs
270 If trigraphs are enabled, they are replaced by their corresponding
271 single characters.
272
273 These are nine three-character sequences, all starting with @samp{??},
274 that are defined by ISO C to stand for single characters. They permit
275 obsolete systems that lack some of C's punctuation to use C@. For
276 example, @samp{??/} stands for @samp{\}, so @t{'??/n'} is a character
277 constant for a newline. By default, GCC ignores trigraphs, but if you
278 request a strictly conforming mode with the @option{-std} option, then
279 it converts them.
280
281 Trigraphs are not popular and many compilers implement them incorrectly.
282 Portable code should not rely on trigraphs being either converted or
283 ignored. If you use the @option{-Wall} or @option{-Wtrigraphs} options,
284 GCC will warn you when a trigraph would change the meaning of your
285 program if it were converted.
286
287 In a string constant, you can prevent a sequence of question marks from
288 being confused with a trigraph by inserting a backslash between the
289 question marks. @t{"(??\?)"} is the string @samp{(???)}, not
290 @samp{(?]}. Traditional C compilers do not recognize this idiom.
291
292 The nine trigraphs and their replacements are
293
294 @example
295 Trigraph: ??( ??) ??< ??> ??= ??/ ??' ??! ??-
296 Replacement: [ ] @{ @} # \ ^ | ~
297 @end example
298
299 @item
300 @cindex continued lines
301 @cindex backslash-newline
302 Continued lines are merged into one long line.
303
304 A continued line is a line which ends with a backslash, @samp{\}. The
305 backslash is removed and the following line is joined with the current
306 one. No space is inserted, so you may split a line anywhere, even in
307 the middle of a word. (It is generally more readable to split lines
308 only at white space.)
309
310 The trailing backslash on a continued line is commonly referred to as a
311 @dfn{backslash-newline}.
312
313 If there is white space between a backslash and the end of a line, that
314 is still a continued line. However, as this is usually the result of an
315 editing mistake, and many compilers will not accept it as a continued
316 line, GCC will warn you about it.
317
318 @item
319 @cindex comments
320 @cindex line comments
321 @cindex block comments
322 All comments are replaced with single spaces.
323
324 There are two kinds of comments. @dfn{Block comments} begin with
325 @samp{/*} and continue until the next @samp{*/}. Block comments do not
326 nest:
327
328 @example
329 /* @r{this is} /* @r{one comment} */ @r{text outside comment}
330 @end example
331
332 @dfn{Line comments} begin with @samp{//} and continue to the end of the
333 current line. Line comments do not nest either, but it does not matter,
334 because they would end in the same place anyway.
335
336 @example
337 // @r{this is} // @r{one comment}
338 @r{text outside comment}
339 @end example
340 @end enumerate
341
342 It is safe to put line comments inside block comments, or vice versa.
343
344 @example
345 @group
346 /* @r{block comment}
347 // @r{contains line comment}
348 @r{yet more comment}
349 */ @r{outside comment}
350
351 // @r{line comment} /* @r{contains block comment} */
352 @end group
353 @end example
354
355 But beware of commenting out one end of a block comment with a line
356 comment.
357
358 @example
359 @group
360 // @r{l.c.} /* @r{block comment begins}
361 @r{oops! this isn't a comment anymore} */
362 @end group
363 @end example
364
365 Comments are not recognized within string literals. @t{@w{"/* blah
366 */"}} is the string constant @samp{@w{/* blah */}}, not an empty string.
367
368 Line comments are not in the 1989 edition of the C standard, but they
369 are recognized by GCC as an extension. In C++ and in the 1999 edition
370 of the C standard, they are an official part of the language.
371
372 Since these transformations happen before all other processing, you can
373 split a line mechanically with backslash-newline anywhere. You can
374 comment out the end of a line. You can continue a line comment onto the
375 next line with backslash-newline. You can even split @samp{/*},
376 @samp{*/}, and @samp{//} onto multiple lines with backslash-newline.
377 For example:
378
379 @example
380 @group
381 /\
382 *
383 */ # /*
384 */ defi\
385 ne FO\
386 O 10\
387 20
388 @end group
389 @end example
390
391 @noindent
392 is equivalent to @code{@w{#define FOO 1020}}. All these tricks are
393 extremely confusing and should not be used in code intended to be
394 readable.
395
396 There is no way to prevent a backslash at the end of a line from being
397 interpreted as a backslash-newline.
398
399 @example
400 "foo\\
401 bar"
402 @end example
403
404 @noindent
405 is equivalent to @code{"foo\bar"}, not to @code{"foo\\bar"}. To avoid
406 having to worry about this, do not use the deprecated GNU extension
407 which permits multi-line strings. Instead, use string literal
408 concatenation:
409
410 @example
411 "foo\\"
412 "bar"
413 @end example
414
415 @noindent
416 Your program will be more portable this way, too.
417
418 @node Tokenization
419 @section Tokenization
420
421 @cindex tokens
422 @cindex preprocessing tokens
423 After the textual transformations are finished, the input file is
424 converted into a sequence of @dfn{preprocessing tokens}. These mostly
425 correspond to the syntactic tokens used by the C compiler, but there are
426 a few differences. White space separates tokens; it is not itself a
427 token of any kind. Tokens do not have to be separated by white space,
428 but it is often necessary to avoid ambiguities.
429
430 When faced with a sequence of characters that has more than one possible
431 tokenization, the preprocessor is greedy. It always makes each token,
432 starting from the left, as big as possible before moving on to the next
433 token. For instance, @code{a+++++b} is interpreted as
434 @code{@w{a ++ ++ + b}}, not as @code{@w{a ++ + ++ b}}, even though the
435 latter tokenization could be part of a valid C program and the former
436 could not.
437
438 Once the input file is broken into tokens, the token boundaries never
439 change, except when the @samp{##} preprocessing operator is used to paste
440 tokens together. @xref{Concatenation}. For example,
441
442 @example
443 @group
444 #define foo() bar
445 foo()baz
446 @expansion{} bar baz
447 @emph{not}
448 @expansion{} barbaz
449 @end group
450 @end example
451
452 The compiler does not re-tokenize the preprocessor's output. Each
453 preprocessing token becomes one compiler token.
454
455 @cindex identifiers
456 Preprocessing tokens fall into five broad classes: identifiers,
457 preprocessing numbers, string literals, punctuators, and other. An
458 @dfn{identifier} is the same as an identifier in C: any sequence of
459 letters, digits, or underscores, which begins with a letter or
460 underscore. Keywords of C have no significance to the preprocessor;
461 they are ordinary identifiers. You can define a macro whose name is a
462 keyword, for instance. The only identifier which can be considered a
463 preprocessing keyword is @code{defined}. @xref{Defined}.
464
465 This is mostly true of other languages which use the C preprocessor.
466 However, a few of the keywords of C++ are significant even in the
467 preprocessor. @xref{C++ Named Operators}.
468
469 In the 1999 C standard, identifiers may contain letters which are not
470 part of the ``basic source character set,'' at the implementation's
471 discretion (such as accented Latin letters, Greek letters, or Chinese
472 ideograms). This may be done with an extended character set, or the
473 @samp{\u} and @samp{\U} escape sequences. GCC does not presently
474 implement either feature in the preprocessor or the compiler.
475
476 As an extension, GCC treats @samp{$} as a letter. This is for
477 compatibility with some systems, such as VMS, where @samp{$} is commonly
478 used in system-defined function and object names. @samp{$} is not a
479 letter in strictly conforming mode, or if you specify the @option{-$}
480 option. @xref{Invocation}.
481
482 @cindex numbers
483 @cindex preprocessing numbers
484 A @dfn{preprocessing number} has a rather bizarre definition. The
485 category includes all the normal integer and floating point constants
486 one expects of C, but also a number of other things one might not
487 initially recognize as a number. Formally, preprocessing numbers begin
488 with an optional period, a required decimal digit, and then continue
489 with any sequence of letters, digits, underscores, periods, and
490 exponents. Exponents are the two-character sequences @samp{e+},
491 @samp{e-}, @samp{E+}, @samp{E-}, @samp{p+}, @samp{p-}, @samp{P+}, and
492 @samp{P-}. (The exponents that begin with @samp{p} or @samp{P} are new
493 to C99. They are used for hexadecimal floating-point constants.)
494
495 The purpose of this unusual definition is to isolate the preprocessor
496 from the full complexity of numeric constants. It does not have to
497 distinguish between lexically valid and invalid floating-point numbers,
498 which is complicated. The definition also permits you to split an
499 identifier at any position and get exactly two tokens, which can then be
500 pasted back together with the @samp{##} operator.
501
502 It's possible for preprocessing numbers to cause programs to be
503 misinterpreted. For example, @code{0xE+12} is a preprocessing number
504 which does not translate to any valid numeric constant, therefore a
505 syntax error. It does not mean @code{@w{0xE + 12}}, which is what you
506 might have intended.
507
508 @cindex string literals
509 @cindex string constants
510 @cindex character constants
511 @cindex header file names
512 @c the @: prevents makeinfo from turning '' into ".
513 @dfn{String literals} are string constants, character constants, and
514 header file names (the argument of @samp{#include}).@footnote{The C
515 standard uses the term @dfn{string literal} to refer only to what we are
516 calling @dfn{string constants}.} String constants and character
517 constants are straightforward: @t{"@dots{}"} or @t{'@dots{}'}. In
518 either case embedded quotes should be escaped with a backslash:
519 @t{'\'@:'} is the character constant for @samp{'}. There is no limit on
520 the length of a character constant, but the value of a character
521 constant that contains more than one character is
522 implementation-defined. @xref{Implementation Details}.
523
524 Header file names either look like string constants, @t{"@dots{}"}, or are
525 written with angle brackets instead, @t{<@dots{}>}. In either case,
526 backslash is an ordinary character. There is no way to escape the
527 closing quote or angle bracket. The preprocessor looks for the header
528 file in different places depending on which form you use. @xref{Include
529 Operation}.
530
531 In standard C, no string literal may extend past the end of a line. GNU
532 CPP accepts multi-line string constants, but not multi-line character
533 constants or header file names. This extension is deprecated and will
534 be removed in GCC 3.1. You may use continued lines instead, or string
535 constant concatenation. @xref{Differences from previous versions}.
536
537 @cindex punctuators
538 @cindex digraphs
539 @cindex alternative tokens
540 @dfn{Punctuators} are all the usual bits of punctuation which are
541 meaningful to C and C++. All but three of the punctuation characters in
542 ASCII are C punctuators. The exceptions are @samp{@@}, @samp{$}, and
543 @samp{`}. In addition, all the two- and three-character operators are
544 punctuators. There are also six @dfn{digraphs}, which the C++ standard
545 calls @dfn{alternative tokens}, which are merely alternate ways to spell
546 other punctuators. This is a second attempt to work around missing
547 punctuation in obsolete systems. It has no negative side effects,
548 unlike trigraphs, but does not cover as much ground. The digraphs and
549 their corresponding normal punctuators are:
550
551 @example
552 Digraph: <% %> <: :> %: %:%:
553 Punctuator: @{ @} [ ] # ##
554 @end example
555
556 @cindex other tokens
557 Any other single character is considered ``other.'' It is passed on to
558 the preprocessor's output unmolested. The C compiler will almost
559 certainly reject source code containing ``other'' tokens. In ASCII, the
560 only other characters are @samp{@@}, @samp{$}, @samp{`}, and control
561 characters other than NUL (all bits zero). (Note that @samp{$} is
562 normally considered a letter.) All characters with the high bit set
563 (numeric range 0x7F--0xFF) are also ``other'' in the present
564 implementation. This will change when proper support for international
565 character sets is added to GCC@.
566
567 NUL is a special case because of the high probability that its
568 appearance is accidental, and because it may be invisible to the user
569 (many terminals do not display NUL at all). Within comments, NULs are
570 silently ignored, just as any other character would be. In running
571 text, NUL is considered white space. For example, these two directives
572 have the same meaning.
573
574 @example
575 #define X^@@1
576 #define X 1
577 @end example
578
579 @noindent
580 (where @samp{^@@} is ASCII NUL)@. Within string or character constants,
581 NULs are preserved. In the latter two cases the preprocessor emits a
582 warning message.
583
584 @node The preprocessing language
585 @section The preprocessing language
586 @cindex directives
587 @cindex preprocessing directives
588 @cindex directive line
589 @cindex directive name
590
591 After tokenization, the stream of tokens may simply be passed straight
592 to the compiler's parser. However, if it contains any operations in the
593 @dfn{preprocessing language}, it will be transformed first. This stage
594 corresponds roughly to the standard's ``translation phase 4'' and is
595 what most people think of as the preprocessor's job.
596
597 The preprocessing language consists of @dfn{directives} to be executed
598 and @dfn{macros} to be expanded. Its primary capabilities are:
599
600 @itemize @bullet
601 @item
602 Inclusion of header files. These are files of declarations that can be
603 substituted into your program.
604
605 @item
606 Macro expansion. You can define @dfn{macros}, which are abbreviations
607 for arbitrary fragments of C code. The preprocessor will replace the
608 macros with their definitions throughout the program. Some macros are
609 automatically defined for you.
610
611 @item
612 Conditional compilation. You can include or exclude parts of the
613 program according to various conditions.
614
615 @item
616 Line control. If you use a program to combine or rearrange source files
617 into an intermediate file which is then compiled, you can use line
618 control to inform the compiler where each source line originally came
619 from.
620
621 @item
622 Diagnostics. You can detect problems at compile time and issue errors
623 or warnings.
624 @end itemize
625
626 There are a few more, less useful, features.
627
628 Except for expansion of predefined macros, all these operations are
629 triggered with @dfn{preprocessing directives}. Preprocessing directives
630 are lines in your program that start with @samp{#}. Whitespace is
631 allowed before and after the @samp{#}. The @samp{#} is followed by an
632 identifier, the @dfn{directive name}. It specifies the operation to
633 perform. Directives are commonly referred to as @samp{#@var{name}}
634 where @var{name} is the directive name. For example, @samp{#define} is
635 the directive that defines a macro.
636
637 The @samp{#} which begins a directive cannot come from a macro
638 expansion. Also, the directive name is not macro expanded. Thus, if
639 @code{foo} is defined as a macro expanding to @code{define}, that does
640 not make @samp{#foo} a valid preprocessing directive.
641
642 The set of valid directive names is fixed. Programs cannot define new
643 preprocessing directives.
644
645 Some directives require arguments; these make up the rest of the
646 directive line and must be separated from the directive name by
647 whitespace. For example, @samp{#define} must be followed by a macro
648 name and the intended expansion of the macro.
649
650 A preprocessing directive cannot cover more than one line. The line
651 may, however, be continued with backslash-newline, or by a block comment
652 which extends past the end of the line. In either case, when the
653 directive is processed, the continuations have already been merged with
654 the first line to make one long line.
655
656 @node Header Files
657 @chapter Header Files
658
659 @cindex header file
660 A header file is a file containing C declarations and macro definitions
661 (@pxref{Macros}) to be shared between several source files. You request
662 the use of a header file in your program by @dfn{including} it, with the
663 C preprocessing directive @samp{#include}.
664
665 Header files serve two purposes.
666
667 @itemize @bullet
668 @item
669 @cindex system header files
670 System header files declare the interfaces to parts of the operating
671 system. You include them in your program to supply the definitions and
672 declarations you need to invoke system calls and libraries.
673
674 @item
675 Your own header files contain declarations for interfaces between the
676 source files of your program. Each time you have a group of related
677 declarations and macro definitions all or most of which are needed in
678 several different source files, it is a good idea to create a header
679 file for them.
680 @end itemize
681
682 Including a header file produces the same results as copying the header
683 file into each source file that needs it. Such copying would be
684 time-consuming and error-prone. With a header file, the related
685 declarations appear in only one place. If they need to be changed, they
686 can be changed in one place, and programs that include the header file
687 will automatically use the new version when next recompiled. The header
688 file eliminates the labor of finding and changing all the copies as well
689 as the risk that a failure to find one copy will result in
690 inconsistencies within a program.
691
692 In C, the usual convention is to give header files names that end with
693 @file{.h}. It is most portable to use only letters, digits, dashes, and
694 underscores in header file names, and at most one dot.
695
696 @menu
697 * Include Syntax::
698 * Include Operation::
699 * Search Path::
700 * Once-Only Headers::
701 * Computed Includes::
702 * Wrapper Headers::
703 * System Headers::
704 @end menu
705
706 @node Include Syntax
707 @section Include Syntax
708
709 @findex #include
710 Both user and system header files are included using the preprocessing
711 directive @samp{#include}. It has two variants:
712
713 @table @code
714 @item #include <@var{file}>
715 This variant is used for system header files. It searches for a file
716 named @var{file} in a standard list of system directories. You can prepend
717 directories to this list with the @option{-I} option (@pxref{Invocation}).
718
719 @item #include "@var{file}"
720 This variant is used for header files of your own program. It searches
721 for a file named @var{file} first in the directory containing the
722 current file, then in the same directories used for @code{<@var{file}>}.
723 @end table
724
725 The argument of @samp{#include}, whether delimited with quote marks or
726 angle brackets, behaves like a string constant in that comments are not
727 recognized, and macro names are not expanded. Thus, @code{@w{#include
728 <x/*y>}} specifies inclusion of a system header file named @file{x/*y}.
729
730 However, if backslashes occur within @var{file}, they are considered
731 ordinary text characters, not escape characters. None of the character
732 escape sequences appropriate to string constants in C are processed.
733 Thus, @code{@w{#include "x\n\\y"}} specifies a filename containing three
734 backslashes. (Some systems interpret @samp{\} as a pathname separator.
735 All of these also interpret @samp{/} the same way. It is most portable
736 to use only @samp{/}.)
737
738 It is an error if there is anything (other than comments) on the line
739 after the file name.
740
741 @node Include Operation
742 @section Include Operation
743
744 The @samp{#include} directive works by directing the C preprocessor to
745 scan the specified file as input before continuing with the rest of the
746 current file. The output from the preprocessor contains the output
747 already generated, followed by the output resulting from the included
748 file, followed by the output that comes from the text after the
749 @samp{#include} directive. For example, if you have a header file
750 @file{header.h} as follows,
751
752 @example
753 char *test (void);
754 @end example
755
756 @noindent
757 and a main program called @file{program.c} that uses the header file,
758 like this,
759
760 @example
761 int x;
762 #include "header.h"
763
764 int
765 main (void)
766 @{
767 puts (test ());
768 @}
769 @end example
770
771 @noindent
772 the compiler will see the same token stream as it would if
773 @file{program.c} read
774
775 @example
776 int x;
777 char *test (void);
778
779 int
780 main (void)
781 @{
782 puts (test ());
783 @}
784 @end example
785
786 Included files are not limited to declarations and macro definitions;
787 those are merely the typical uses. Any fragment of a C program can be
788 included from another file. The include file could even contain the
789 beginning of a statement that is concluded in the containing file, or
790 the end of a statement that was started in the including file. However,
791 a comment or a string or character constant may not start in the
792 included file and finish in the including file. An unterminated
793 comment, string constant or character constant in an included file is
794 considered to end (with an error message) at the end of the file.
795
796 To avoid confusion, it is best if header files contain only complete
797 syntactic units---function declarations or definitions, type
798 declarations, etc.
799
800 The line following the @samp{#include} directive is always treated as a
801 separate line by the C preprocessor, even if the included file lacks a
802 final newline.
803
804 @node Search Path
805 @section Search Path
806
807 GCC looks in several different places for headers. On a normal Unix
808 system, if you do not instruct it otherwise, it will look for headers
809 requested with @code{@w{#include <@var{file}>}} in:
810
811 @example
812 /usr/local/include
813 /usr/lib/gcc-lib/@var{target}/@var{version}/include
814 /usr/@var{target}/include
815 /usr/include
816 @end example
817
818 For C++ programs, it will also look in @file{/usr/include/g++-v3},
819 first. In the above, @var{target} is the canonical name of the system
820 GCC was configured to compile code for; often but not always the same as
821 the canonical name of the system it runs on. @var{version} is the
822 version of GCC in use.
823
824 You can add to this list with the @option{-I@var{dir}} command line
825 option. All the directories named by @option{-I} are searched, in
826 left-to-right order, @emph{before} the default directories. You can
827 also prevent GCC from searching any of the default directories with the
828 @option{-nostdinc} option. This is useful when you are compiling an
829 operating system kernel or some other program that does not use the
830 standard C library facilities, or the standard C library itself.
831
832 GCC looks for headers requested with @code{@w{#include "@var{file}"}}
833 first in the directory containing the current file, then in the same
834 places it would have looked for a header requested with angle brackets.
835 For example, if @file{/usr/include/sys/stat.h} contains
836 @code{@w{#include "types.h"}}, GCC looks for @file{types.h} first in
837 @file{/usr/include/sys}, then in its usual search path.
838
839 If you name a search directory with @option{-I@var{dir}} that is also a
840 system include directory, the @option{-I} wins; the directory will be
841 searched according to the @option{-I} ordering, and it will not be
842 treated as a system include directory. GCC will warn you when a system
843 include directory is hidden in this way.
844
845 @samp{#line} (@pxref{Line Control}) does not change GCC's idea of the
846 directory containing the current file.
847
848 You may put @option{-I-} at any point in your list of @option{-I} options.
849 This has two effects. First, directories appearing before the
850 @option{-I-} in the list are searched only for headers requested with
851 quote marks. Directories after @option{-I-} are searched for all
852 headers. Second, the directory containing the current file is not
853 searched for anything, unless it happens to be one of the directories
854 named by an @option{-I} switch.
855
856 @option{-I. -I-} is not the same as no @option{-I} options at all, and does
857 not cause the same behavior for @samp{<>} includes that @samp{""}
858 includes get with no special options. @option{-I.} searches the
859 compiler's current working directory for header files. That may or may
860 not be the same as the directory containing the current file.
861
862 If you need to look for headers in a directory named @file{-}, write
863 @option{-I./-}.
864
865 There are several more ways to adjust the header search path. They are
866 generally less useful. @xref{Invocation}.
867
868 @node Once-Only Headers
869 @section Once-Only Headers
870 @cindex repeated inclusion
871 @cindex including just once
872 @cindex wrapper @code{#ifndef}
873
874 If a header file happens to be included twice, the compiler will process
875 its contents twice. This is very likely to cause an error, e.g.@: when the
876 compiler sees the same structure definition twice. Even if it does not,
877 it will certainly waste time.
878
879 The standard way to prevent this is to enclose the entire real contents
880 of the file in a conditional, like this:
881
882 @example
883 @group
884 /* File foo. */
885 #ifndef FILE_FOO_SEEN
886 #define FILE_FOO_SEEN
887
888 @var{the entire file}
889
890 #endif /* !FILE_FOO_SEEN */
891 @end group
892 @end example
893
894 This construct is commonly known as a @dfn{wrapper #ifndef}.
895 When the header is included again, the conditional will be false,
896 because @code{FILE_FOO_SEEN} is defined. The preprocessor will skip
897 over the entire contents of the file, and the compiler will not see it
898 twice.
899
900 GNU CPP optimizes even further. It remembers when a header file has a
901 wrapper @samp{#ifndef}. If a subsequent @samp{#include} specifies that
902 header, and the macro in the @samp{#ifndef} is still defined, it does
903 not bother to rescan the file at all.
904
905 You can put comments outside the wrapper. They will not interfere with
906 this optimization.
907
908 @cindex controlling macro
909 @cindex guard macro
910 The macro @code{FILE_FOO_SEEN} is called the @dfn{controlling macro} or
911 @dfn{guard macro}. In a user header file, the macro name should not
912 begin with @samp{_}. In a system header file, it should begin with
913 @samp{__} to avoid conflicts with user programs. In any kind of header
914 file, the macro name should contain the name of the file and some
915 additional text, to avoid conflicts with other header files.
916
917 @node Computed Includes
918 @section Computed Includes
919 @cindex computed includes
920 @cindex macros in include
921
922 Sometimes it is necessary to select one of several different header
923 files to be included into your program. They might specify
924 configuration parameters to be used on different sorts of operating
925 systems, for instance. You could do this with a series of conditionals,
926
927 @example
928 #if SYSTEM_1
929 # include "system_1.h"
930 #elif SYSTEM_2
931 # include "system_2.h"
932 #elif SYSTEM_3
933 @dots{}
934 #endif
935 @end example
936
937 That rapidly becomes tedious. Instead, the preprocessor offers the
938 ability to use a macro for the header name. This is called a
939 @dfn{computed include}. Instead of writing a header name as the direct
940 argument of @samp{#include}, you simply put a macro name there instead:
941
942 @example
943 #define SYSTEM_H "system_1.h"
944 @dots{}
945 #include SYSTEM_H
946 @end example
947
948 @noindent
949 @code{SYSTEM_H} will be expanded, and the preprocessor will look for
950 @file{system_1.h} as if the @samp{#include} had been written that way
951 originally. @code{SYSTEM_H} could be defined by your Makefile with a
952 @option{-D} option.
953
954 You must be careful when you define the macro. @samp{#define} saves
955 tokens, not text. The preprocessor has no way of knowing that the macro
956 will be used as the argument of @samp{#include}, so it generates
957 ordinary tokens, not a header name. This is unlikely to cause problems
958 if you use double-quote includes, which are close enough to string
959 constants. If you use angle brackets, however, you may have trouble.
960
961 The syntax of a computed include is actually a bit more general than the
962 above. If the first non-whitespace character after @samp{#include} is
963 not @samp{"} or @samp{<}, then the entire line is macro-expanded
964 like running text would be.
965
966 If the line expands to a single string constant, the contents of that
967 string constant are the file to be included. CPP does not re-examine the
968 string for embedded quotes, but neither does it process backslash
969 escapes in the string. Therefore
970
971 @example
972 #define HEADER "a\"b"
973 #include HEADER
974 @end example
975
976 @noindent
977 looks for a file named @file{a\"b}. CPP searches for the file according
978 to the rules for double-quoted includes.
979
980 If the line expands to a token stream beginning with a @samp{<} token
981 and including a @samp{>} token, then the tokens between the @samp{<} and
982 the first @samp{>} are combined to form the filename to be included.
983 Any whitespace between tokens is reduced to a single space; then any
984 space after the initial @samp{<} is retained, but a trailing space
985 before the closing @samp{>} is ignored. CPP searches for the file
986 according to the rules for angle-bracket includes.
987
988 In either case, if there are any tokens on the line after the file name,
989 an error occurs and the directive is not processed. It is also an error
990 if the result of expansion does not match either of the two expected
991 forms.
992
993 These rules are implementation-defined behavior according to the C
994 standard. To minimize the risk of different compilers interpreting your
995 computed includes differently, we recommend you use only a single
996 object-like macro which expands to a string constant. This will also
997 minimize confusion for people reading your program.
998
999 @node Wrapper Headers
1000 @section Wrapper Headers
1001 @cindex wrapper headers
1002 @cindex overriding a header file
1003 @findex #include_next
1004
1005 Sometimes it is necessary to adjust the contents of a system-provided
1006 header file without editing it directly. GCC's @command{fixincludes}
1007 operation does this, for example. One way to do that would be to create
1008 a new header file with the same name and insert it in the search path
1009 before the original header. That works fine as long as you're willing
1010 to replace the old header entirely. But what if you want to refer to
1011 the old header from the new one?
1012
1013 You cannot simply include the old header with @samp{#include}. That
1014 will start from the beginning, and find your new header again. If your
1015 header is not protected from multiple inclusion (@pxref{Once-Only
1016 Headers}), it will recurse infinitely and cause a fatal error.
1017
1018 You could include the old header with an absolute pathname:
1019 @example
1020 #include "/usr/include/old-header.h"
1021 @end example
1022 @noindent
1023 This works, but is not clean; should the system headers ever move, you
1024 would have to edit the new headers to match.
1025
1026 There is no way to solve this problem within the C standard, but you can
1027 use the GNU extension @samp{#include_next}. It means, ``Include the
1028 @emph{next} file with this name.'' This directive works like
1029 @samp{#include} except in searching for the specified file: it starts
1030 searching the list of header file directories @emph{after} the directory
1031 in which the current file was found.
1032
1033 Suppose you specify @option{-I /usr/local/include}, and the list of
1034 directories to search also includes @file{/usr/include}; and suppose
1035 both directories contain @file{signal.h}. Ordinary @code{@w{#include
1036 <signal.h>}} finds the file under @file{/usr/local/include}. If that
1037 file contains @code{@w{#include_next <signal.h>}}, it starts searching
1038 after that directory, and finds the file in @file{/usr/include}.
1039
1040 @samp{#include_next} does not distinguish between @code{<@var{file}>}
1041 and @code{"@var{file}"} inclusion, nor does it check that the file you
1042 specify has the same name as the current file. It simply looks for the
1043 file named, starting with the directory in the search path after the one
1044 where the current file was found.
1045
1046 The use of @samp{#include_next} can lead to great confusion. We
1047 recommend it be used only when there is no other alternative. In
1048 particular, it should not be used in the headers belonging to a specific
1049 program; it should be used only to make global corrections along the
1050 lines of @command{fixincludes}.
1051
1052 @node System Headers
1053 @section System Headers
1054 @cindex system header files
1055
1056 The header files declaring interfaces to the operating system and
1057 runtime libraries often cannot be written in strictly conforming C@.
1058 Therefore, GCC gives code found in @dfn{system headers} special
1059 treatment. All warnings, other than those generated by @samp{#warning}
1060 (@pxref{Diagnostics}), are suppressed while GCC is processing a system
1061 header. Macros defined in a system header are immune to a few warnings
1062 wherever they are expanded. This immunity is granted on an ad-hoc
1063 basis, when we find that a warning generates lots of false positives
1064 because of code in macros defined in system headers.
1065
1066 Normally, only the headers found in specific directories are considered
1067 system headers. These directories are determined when GCC is compiled.
1068 There are, however, two ways to make normal headers into system headers.
1069
1070 The @option{-isystem} command line option adds its argument to the list of
1071 directories to search for headers, just like @option{-I}. Any headers
1072 found in that directory will be considered system headers.
1073
1074 All directories named by @option{-isystem} are searched @emph{after} all
1075 directories named by @option{-I}, no matter what their order was on the
1076 command line. If the same directory is named by both @option{-I} and
1077 @option{-isystem}, @option{-I} wins; it is as if the @option{-isystem} option
1078 had never been specified at all. GCC warns you when this happens.
1079
1080 @findex #pragma GCC system_header
1081 There is also a directive, @code{@w{#pragma GCC system_header}}, which
1082 tells GCC to consider the rest of the current include file a system
1083 header, no matter where it was found. Code that comes before the
1084 @samp{#pragma} in the file will not be affected. @code{@w{#pragma GCC
1085 system_header}} has no effect in the primary source file.
1086
1087 On very old systems, some of the pre-defined system header directories
1088 get even more special treatment. GNU C++ considers code in headers
1089 found in those directories to be surrounded by an @code{@w{extern "C"}}
1090 block. There is no way to request this behavior with a @samp{#pragma},
1091 or from the command line.
1092
1093 @node Macros
1094 @chapter Macros
1095
1096 A @dfn{macro} is a fragment of code which has been given a name.
1097 Whenever the name is used, it is replaced by the contents of the macro.
1098 There are two kinds of macros. They differ mostly in what they look
1099 like when they are used. @dfn{Object-like} macros resemble data objects
1100 when used, @dfn{function-like} macros resemble function calls.
1101
1102 You may define any valid identifier as a macro, even if it is a C
1103 keyword. The preprocessor does not know anything about keywords. This
1104 can be useful if you wish to hide a keyword such as @code{const} from an
1105 older compiler that does not understand it. However, the preprocessor
1106 operator @code{defined} (@pxref{Defined}) can never be defined as a
1107 macro, and C++'s named operators (@pxref{C++ Named Operators}) cannot be
1108 macros when you are compiling C++.
1109
1110 @menu
1111 * Object-like Macros::
1112 * Function-like Macros::
1113 * Macro Arguments::
1114 * Stringification::
1115 * Concatenation::
1116 * Variadic Macros::
1117 * Predefined Macros::
1118 * Undefining and Redefining Macros::
1119 * Directives Within Macro Arguments::
1120 * Macro Pitfalls::
1121 @end menu
1122
1123 @node Object-like Macros
1124 @section Object-like Macros
1125 @cindex object-like macro
1126 @cindex symbolic constants
1127 @cindex manifest constants
1128
1129 An @dfn{object-like macro} is a simple identifier which will be replaced
1130 by a code fragment. It is called object-like because it looks like a
1131 data object in code that uses it. They are most commonly used to give
1132 symbolic names to numeric constants.
1133
1134 @findex #define
1135 You create macros with the @samp{#define} directive. @samp{#define} is
1136 followed by the name of the macro and then the token sequence it should
1137 be an abbreviation for, which is variously referred to as the macro's
1138 @dfn{body}, @dfn{expansion} or @dfn{replacement list}. For example,
1139
1140 @example
1141 #define BUFFER_SIZE 1024
1142 @end example
1143
1144 @noindent
1145 defines a macro named @code{BUFFER_SIZE} as an abbreviation for the
1146 token @code{1024}. If somewhere after this @samp{#define} directive
1147 there comes a C statement of the form
1148
1149 @example
1150 foo = (char *) malloc (BUFFER_SIZE);
1151 @end example
1152
1153 @noindent
1154 then the C preprocessor will recognize and @dfn{expand} the macro
1155 @code{BUFFER_SIZE}. The C compiler will see the same tokens as it would
1156 if you had written
1157
1158 @example
1159 foo = (char *) malloc (1024);
1160 @end example
1161
1162 By convention, macro names are written in upper case. Programs are
1163 easier to read when it is possible to tell at a glance which names are
1164 macros.
1165
1166 The macro's body ends at the end of the @samp{#define} line. You may
1167 continue the definition onto multiple lines, if necessary, using
1168 backslash-newline. When the macro is expanded, however, it will all
1169 come out on one line. For example,
1170
1171 @example
1172 #define NUMBERS 1, \
1173 2, \
1174 3
1175 int x[] = @{ NUMBERS @};
1176 @expansion{} int x[] = @{ 1, 2, 3 @};
1177 @end example
1178
1179 @noindent
1180 The most common visible consequence of this is surprising line numbers
1181 in error messages.
1182
1183 There is no restriction on what can go in a macro body provided it
1184 decomposes into valid preprocessing tokens. Parentheses need not
1185 balance, and the body need not resemble valid C code. (If it does not,
1186 you may get error messages from the C compiler when you use the macro.)
1187
1188 The C preprocessor scans your program sequentially. Macro definitions
1189 take effect at the place you write them. Therefore, the following input
1190 to the C preprocessor
1191
1192 @example
1193 foo = X;
1194 #define X 4
1195 bar = X;
1196 @end example
1197
1198 @noindent
1199 produces
1200
1201 @example
1202 foo = X;
1203 bar = 4;
1204 @end example
1205
1206 When the preprocessor expands a macro name, the macro's expansion
1207 replaces the macro invocation, then the expansion is examined for more
1208 macros to expand. For example,
1209
1210 @example
1211 @group
1212 #define TABLESIZE BUFSIZE
1213 #define BUFSIZE 1024
1214 TABLESIZE
1215 @expansion{} BUFSIZE
1216 @expansion{} 1024
1217 @end group
1218 @end example
1219
1220 @noindent
1221 @code{TABLESIZE} is expanded first to produce @code{BUFSIZE}, then that
1222 macro is expanded to produce the final result, @code{1024}.
1223
1224 Notice that @code{BUFSIZE} was not defined when @code{TABLESIZE} was
1225 defined. The @samp{#define} for @code{TABLESIZE} uses exactly the
1226 expansion you specify---in this case, @code{BUFSIZE}---and does not
1227 check to see whether it too contains macro names. Only when you
1228 @emph{use} @code{TABLESIZE} is the result of its expansion scanned for
1229 more macro names.
1230
1231 This makes a difference if you change the definition of @code{BUFSIZE}
1232 at some point in the source file. @code{TABLESIZE}, defined as shown,
1233 will always expand using the definition of @code{BUFSIZE} that is
1234 currently in effect:
1235
1236 @example
1237 #define BUFSIZE 1020
1238 #define TABLESIZE BUFSIZE
1239 #undef BUFSIZE
1240 #define BUFSIZE 37
1241 @end example
1242
1243 @noindent
1244 Now @code{TABLESIZE} expands (in two stages) to @code{37}.
1245
1246 If the expansion of a macro contains its own name, either directly or
1247 via intermediate macros, it is not expanded again when the expansion is
1248 examined for more macros. This prevents infinite recursion.
1249 @xref{Self-Referential Macros}, for the precise details.
1250
1251 @node Function-like Macros
1252 @section Function-like Macros
1253 @cindex function-like macros
1254
1255 You can also define macros whose use looks like a function call. These
1256 are called @dfn{function-like macros}. To define a function-like macro,
1257 you use the same @samp{#define} directive, but you put a pair of
1258 parentheses immediately after the macro name. For example,
1259
1260 @example
1261 #define lang_init() c_init()
1262 lang_init()
1263 @expansion{} c_init()
1264 @end example
1265
1266 A function-like macro is only expanded if its name appears with a pair
1267 of parentheses after it. If you write just the name, it is left alone.
1268 This can be useful when you have a function and a macro of the same
1269 name, and you wish to use the function sometimes.
1270
1271 @example
1272 extern void foo(void);
1273 #define foo() /* optimized inline version */
1274 @dots{}
1275 foo();
1276 funcptr = foo;
1277 @end example
1278
1279 Here the call to @code{foo()} will use the macro, but the function
1280 pointer will get the address of the real function. If the macro were to
1281 be expanded, it would cause a syntax error.
1282
1283 If you put spaces between the macro name and the parentheses in the
1284 macro definition, that does not define a function-like macro, it defines
1285 an object-like macro whose expansion happens to begin with a pair of
1286 parentheses.
1287
1288 @example
1289 #define lang_init () c_init()
1290 lang_init()
1291 @expansion{} () c_init()()
1292 @end example
1293
1294 The first two pairs of parentheses in this expansion come from the
1295 macro. The third is the pair that was originally after the macro
1296 invocation. Since @code{lang_init} is an object-like macro, it does not
1297 consume those parentheses.
1298
1299 @node Macro Arguments
1300 @section Macro Arguments
1301 @cindex arguments
1302 @cindex macros with arguments
1303 @cindex arguments in macro definitions
1304
1305 Function-like macros can take @dfn{arguments}, just like true functions.
1306 To define a macro that uses arguments, you insert @dfn{parameters}
1307 between the pair of parentheses in the macro definition that make the
1308 macro function-like. The parameters must be valid C identifiers,
1309 separated by commas and optionally whitespace.
1310
1311 To invoke a macro that takes arguments, you write the name of the macro
1312 followed by a list of @dfn{actual arguments} in parentheses, separated
1313 by commas. The invocation of the macro need not be restricted to a
1314 single logical line---it can cross as many lines in the source file as
1315 you wish. The number of arguments you give must match the number of
1316 parameters in the macro definition. When the macro is expanded, each
1317 use of a parameter in its body is replaced by the tokens of the
1318 corresponding argument. (You need not use all of the parameters in the
1319 macro body.)
1320
1321 As an example, here is a macro that computes the minimum of two numeric
1322 values, as it is defined in many C programs, and some uses.
1323
1324 @example
1325 #define min(X, Y) ((X) < (Y) ? (X) : (Y))
1326 x = min(a, b); @expansion{} x = ((a) < (b) ? (a) : (b));
1327 y = min(1, 2); @expansion{} y = ((1) < (2) ? (1) : (2));
1328 z = min(a + 28, *p); @expansion{} z = ((a + 28) < (*p) ? (a + 28) : (*p));
1329 @end example
1330
1331 @noindent
1332 (In this small example you can already see several of the dangers of
1333 macro arguments. @xref{Macro Pitfalls}, for detailed explanations.)
1334
1335 Leading and trailing whitespace in each argument is dropped, and all
1336 whitespace between the tokens of an argument is reduced to a single
1337 space. Parentheses within each argument must balance; a comma within
1338 such parentheses does not end the argument. However, there is no
1339 requirement for square brackets or braces to balance, and they do not
1340 prevent a comma from separating arguments. Thus,
1341
1342 @example
1343 macro (array[x = y, x + 1])
1344 @end example
1345
1346 @noindent
1347 passes two arguments to @code{macro}: @code{array[x = y} and @code{x +
1348 1]}. If you want to supply @code{array[x = y, x + 1]} as an argument,
1349 you can write it as @code{array[(x = y, x + 1)]}, which is equivalent C
1350 code.
1351
1352 All arguments to a macro are completely macro-expanded before they are
1353 substituted into the macro body. After substitution, the complete text
1354 is scanned again for macros to expand, including the arguments. This rule
1355 may seem strange, but it is carefully designed so you need not worry
1356 about whether any function call is actually a macro invocation. You can
1357 run into trouble if you try to be too clever, though. @xref{Argument
1358 Prescan}, for detailed discussion.
1359
1360 For example, @code{min (min (a, b), c)} is first expanded to
1361
1362 @example
1363 min (((a) < (b) ? (a) : (b)), (c))
1364 @end example
1365
1366 @noindent
1367 and then to
1368
1369 @example
1370 @group
1371 ((((a) < (b) ? (a) : (b))) < (c)
1372 ? (((a) < (b) ? (a) : (b)))
1373 : (c))
1374 @end group
1375 @end example
1376
1377 @noindent
1378 (Line breaks shown here for clarity would not actually be generated.)
1379
1380 @cindex empty macro arguments
1381 You can leave macro arguments empty; this is not an error to the
1382 preprocessor (but many macros will then expand to invalid code).
1383 You cannot leave out arguments entirely; if a macro takes two arguments,
1384 there must be exactly one comma at the top level of its argument list.
1385 Here are some silly examples using @code{min}:
1386
1387 @example
1388 min(, b) @expansion{} (( ) < (b) ? ( ) : (b))
1389 min(a, ) @expansion{} ((a ) < ( ) ? (a ) : ( ))
1390 min(,) @expansion{} (( ) < ( ) ? ( ) : ( ))
1391 min((,),) @expansion{} (((,)) < ( ) ? ((,)) : ( ))
1392
1393 min() @error{} macro "min" requires 2 arguments, but only 1 given
1394 min(,,) @error{} macro "min" passed 3 arguments, but takes just 2
1395 @end example
1396
1397 Whitespace is not a preprocessing token, so if a macro @code{foo} takes
1398 one argument, @code{@w{foo ()}} and @code{@w{foo ( )}} both supply it an
1399 empty argument. Previous GNU preprocessor implementations and
1400 documentation were incorrect on this point, insisting that a
1401 function-like macro that takes a single argument be passed a space if an
1402 empty argument was required.
1403
1404 Macro parameters appearing inside string literals are not replaced by
1405 their corresponding actual arguments.
1406
1407 @example
1408 #define foo(x) x, "x"
1409 foo(bar) @expansion{} bar, "x"
1410 @end example
1411
1412 @node Stringification
1413 @section Stringification
1414 @cindex stringification
1415 @cindex @samp{#} operator
1416
1417 Sometimes you may want to convert a macro argument into a string
1418 constant. Parameters are not replaced inside string constants, but you
1419 can use the @samp{#} preprocessing operator instead. When a macro
1420 parameter is used with a leading @samp{#}, the preprocessor replaces it
1421 with the literal text of the actual argument, converted to a string
1422 constant. Unlike normal parameter replacement, the argument is not
1423 macro-expanded first. This is called @dfn{stringification}.
1424
1425 There is no way to combine an argument with surrounding text and
1426 stringify it all together. Instead, you can write a series of adjacent
1427 string constants and stringified arguments. The preprocessor will
1428 replace the stringified arguments with string constants. The C
1429 compiler will then combine all the adjacent string constants into one
1430 long string.
1431
1432 Here is an example of a macro definition that uses stringification:
1433
1434 @example
1435 @group
1436 #define WARN_IF(EXP) \
1437 do @{ if (EXP) \
1438 fprintf (stderr, "Warning: " #EXP "\n"); @} \
1439 while (0)
1440 WARN_IF (x == 0);
1441 @expansion{} do @{ if (x == 0)
1442 fprintf (stderr, "Warning: " "x == 0" "\n"); @} while (0);
1443 @end group
1444 @end example
1445
1446 @noindent
1447 The argument for @code{EXP} is substituted once, as-is, into the
1448 @code{if} statement, and once, stringified, into the argument to
1449 @code{fprintf}. If @code{x} were a macro, it would be expanded in the
1450 @code{if} statement, but not in the string.
1451
1452 The @code{do} and @code{while (0)} are a kludge to make it possible to
1453 write @code{WARN_IF (@var{arg});}, which the resemblance of
1454 @code{WARN_IF} to a function would make C programmers want to do; see
1455 @ref{Swallowing the Semicolon}.
1456
1457 Stringification in C involves more than putting double-quote characters
1458 around the fragment. The preprocessor backslash-escapes the quotes
1459 surrounding embedded string constants, and all backslashes within string and
1460 character constants, in order to get a valid C string constant with the
1461 proper contents. Thus, stringifying @code{@w{p = "foo\n";}} results in
1462 @t{@w{"p = \"foo\\n\";"}}. However, backslashes that are not inside string
1463 or character constants are not duplicated: @samp{\n} by itself
1464 stringifies to @t{"\n"}.
1465
1466 All leading and trailing whitespace in text being stringified is
1467 ignored. Any sequence of whitespace in the middle of the text is
1468 converted to a single space in the stringified result. Comments are
1469 replaced by whitespace long before stringification happens, so they
1470 never appear in stringified text.
1471
1472 There is no way to convert a macro argument into a character constant.
1473
1474 If you want to stringify the result of expansion of a macro argument,
1475 you have to use two levels of macros.
1476
1477 @example
1478 #define xstr(s) str(s)
1479 #define str(s) #s
1480 #define foo 4
1481 str (foo)
1482 @expansion{} "foo"
1483 xstr (foo)
1484 @expansion{} xstr (4)
1485 @expansion{} str (4)
1486 @expansion{} "4"
1487 @end example
1488
1489 @code{s} is stringified when it is used in @code{str}, so it is not
1490 macro-expanded first. But @code{s} is an ordinary argument to
1491 @code{xstr}, so it is completely macro-expanded before @code{xstr}
1492 itself is expanded (@pxref{Argument Prescan}). Therefore, by the time
1493 @code{str} gets to its argument, it has already been macro-expanded.
1494
1495 @node Concatenation
1496 @section Concatenation
1497 @cindex concatenation
1498 @cindex token pasting
1499 @cindex token concatenation
1500 @cindex @samp{##} operator
1501
1502 It is often useful to merge two tokens into one while expanding macros.
1503 This is called @dfn{token pasting} or @dfn{token concatenation}. The
1504 @samp{##} preprocessing operator performs token pasting. When a macro
1505 is expanded, the two tokens on either side of each @samp{##} operator
1506 are combined into a single token, which then replaces the @samp{##} and
1507 the two original tokens in the macro expansion. Usually both will be
1508 identifiers, or one will be an identifier and the other a preprocessing
1509 number. When pasted, they make a longer identifier. This isn't the
1510 only valid case. It is also possible to concatenate two numbers (or a
1511 number and a name, such as @code{1.5} and @code{e3}) into a number.
1512 Also, multi-character operators such as @code{+=} can be formed by
1513 token pasting.
1514
1515 However, two tokens that don't together form a valid token cannot be
1516 pasted together. For example, you cannot concatenate @code{x} with
1517 @code{+} in either order. If you try, the preprocessor issues a warning
1518 and emits the two tokens. Whether it puts white space between the
1519 tokens is undefined. It is common to find unnecessary uses of @samp{##}
1520 in complex macros. If you get this warning, it is likely that you can
1521 simply remove the @samp{##}.
1522
1523 Both the tokens combined by @samp{##} could come from the macro body,
1524 but you could just as well write them as one token in the first place.
1525 Token pasting is most useful when one or both of the tokens comes from a
1526 macro argument. If either of the tokens next to an @samp{##} is a
1527 parameter name, it is replaced by its actual argument before @samp{##}
1528 executes. As with stringification, the actual argument is not
1529 macro-expanded first. If the argument is empty, that @samp{##} has no
1530 effect.
1531
1532 Keep in mind that the C preprocessor converts comments to whitespace
1533 before macros are even considered. Therefore, you cannot create a
1534 comment by concatenating @samp{/} and @samp{*}. You can put as much
1535 whitespace between @samp{##} and its operands as you like, including
1536 comments, and you can put comments in arguments that will be
1537 concatenated. However, it is an error if @samp{##} appears at either
1538 end of a macro body.
1539
1540 Consider a C program that interprets named commands. There probably
1541 needs to be a table of commands, perhaps an array of structures declared
1542 as follows:
1543
1544 @example
1545 @group
1546 struct command
1547 @{
1548 char *name;
1549 void (*function) (void);
1550 @};
1551 @end group
1552
1553 @group
1554 struct command commands[] =
1555 @{
1556 @{ "quit", quit_command @},
1557 @{ "help", help_command @},
1558 @dots{}
1559 @};
1560 @end group
1561 @end example
1562
1563 It would be cleaner not to have to give each command name twice, once in
1564 the string constant and once in the function name. A macro which takes the
1565 name of a command as an argument can make this unnecessary. The string
1566 constant can be created with stringification, and the function name by
1567 concatenating the argument with @samp{_command}. Here is how it is done:
1568
1569 @example
1570 #define COMMAND(NAME) @{ #NAME, NAME ## _command @}
1571
1572 struct command commands[] =
1573 @{
1574 COMMAND (quit),
1575 COMMAND (help),
1576 @dots{}
1577 @};
1578 @end example
1579
1580 @node Variadic Macros
1581 @section Variadic Macros
1582 @cindex variable number of arguments
1583 @cindex macros with variable arguments
1584 @cindex variadic macros
1585
1586 A macro can be declared to accept a variable number of arguments much as
1587 a function can. The syntax for defining the macro is similar to that of
1588 a function. Here is an example:
1589
1590 @example
1591 #define eprintf(@dots{}) fprintf (stderr, __VA_ARGS__)
1592 @end example
1593
1594 This kind of macro is called @dfn{variadic}. When the macro is invoked,
1595 all the tokens in its argument list after the last named argument (this
1596 macro has none), including any commas, become the @dfn{variable
1597 argument}. This sequence of tokens replaces the identifier
1598 @code{@w{__VA_ARGS__}} in the macro body wherever it appears. Thus, we
1599 have this expansion:
1600
1601 @example
1602 eprintf ("%s:%d: ", input_file, lineno)
1603 @expansion{} fprintf (stderr, "%s:%d: ", input_file, lineno)
1604 @end example
1605
1606 The variable argument is completely macro-expanded before it is inserted
1607 into the macro expansion, just like an ordinary argument. You may use
1608 the @samp{#} and @samp{##} operators to stringify the variable argument
1609 or to paste its leading or trailing token with another token. (But see
1610 below for an important special case for @samp{##}.)
1611
1612 If your macro is complicated, you may want a more descriptive name for
1613 the variable argument than @code{@w{__VA_ARGS__}}. GNU CPP permits
1614 this, as an extension. You may write an argument name immediately
1615 before the @samp{@dots{}}; that name is used for the variable argument.
1616 The @code{eprintf} macro above could be written
1617
1618 @example
1619 #define eprintf(args@dots{}) fprintf (stderr, args)
1620 @end example
1621
1622 @noindent
1623 using this extension. You cannot use @code{__VA_ARGS__} and this
1624 extension in the same macro.
1625
1626 You can have named arguments as well as variable arguments in a variadic
1627 macro. We could define @code{eprintf} like this, instead:
1628
1629 @example
1630 #define eprintf(format, @dots{}) fprintf (stderr, format, __VA_ARGS__)
1631 @end example
1632
1633 @noindent
1634 This formulation looks more descriptive, but unfortunately it is less
1635 flexible: you must now supply at least one argument after the format
1636 string. In standard C, you cannot omit the comma separating the named
1637 argument from the variable arguments. Furthermore, if you leave the
1638 variable argument empty, you will get a syntax error, because
1639 there will be an extra comma after the format string.
1640
1641 @example
1642 eprintf("success!\n", );
1643 @expansion{} fprintf(stderr, "success!\n", );
1644 @end example
1645
1646 GNU CPP has a pair of extensions which deal with this problem. First,
1647 you are allowed to leave the variable argument out entirely:
1648
1649 @example
1650 eprintf ("success!\n")
1651 @expansion{} fprintf(stderr, "success!\n", );
1652 @end example
1653
1654 @noindent
1655 Second, the @samp{##} token paste operator has a special meaning when
1656 placed between a comma and a variable argument. If you write
1657
1658 @example
1659 #define eprintf(format, @dots{}) fprintf (stderr, format, ##__VA_ARGS__)
1660 @end example
1661
1662 @noindent
1663 and the variable argument is left out when the @code{eprintf} macro is
1664 used, then the comma before the @samp{##} will be deleted. This does
1665 @emph{not} happen if you pass an empty argument, nor does it happen if
1666 the token preceding @samp{##} is anything other than a comma.
1667
1668 @example
1669 eprintf ("success!\n")
1670 @expansion{} fprintf(stderr, "success!\n");
1671 @end example
1672
1673 C99 mandates that the only place the identifier @code{@w{__VA_ARGS__}}
1674 can appear is in the replacement list of a variadic macro. It may not
1675 be used as a macro name, macro argument name, or within a different type
1676 of macro. It may also be forbidden in open text; the standard is
1677 ambiguous. We recommend you avoid using it except for its defined
1678 purpose.
1679
1680 Variadic macros are a new feature in C99. GNU CPP has supported them
1681 for a long time, but only with a named variable argument
1682 (@samp{args@dots{}}, not @samp{@dots{}} and @code{@w{__VA_ARGS__}}). If you are
1683 concerned with portability to previous versions of GCC, you should use
1684 only named variable arguments. On the other hand, if you are concerned
1685 with portability to other conforming implementations of C99, you should
1686 use only @code{@w{__VA_ARGS__}}.
1687
1688 Previous versions of GNU CPP implemented the comma-deletion extension
1689 much more generally. We have restricted it in this release to minimize
1690 the differences from C99. To get the same effect with both this and
1691 previous versions of GCC, the token preceding the special @samp{##} must
1692 be a comma, and there must be white space between that comma and
1693 whatever comes immediately before it:
1694
1695 @example
1696 #define eprintf(format, args@dots{}) fprintf (stderr, format , ##args)
1697 @end example
1698
1699 @noindent
1700 @xref{Differences from previous versions}, for the gory details.
1701
1702 @node Predefined Macros
1703 @section Predefined Macros
1704
1705 @cindex predefined macros
1706 Several object-like macros are predefined; you use them without
1707 supplying their definitions. They fall into three classes: standard,
1708 common, and system-specific.
1709
1710 In C++, there is a fourth category, the named operators. They act like
1711 predefined macros, but you cannot undefine them.
1712
1713 @menu
1714 * Standard Predefined Macros::
1715 * Common Predefined Macros::
1716 * System-specific Predefined Macros::
1717 * C++ Named Operators::
1718 @end menu
1719
1720 @node Standard Predefined Macros
1721 @subsection Standard Predefined Macros
1722 @cindex standard predefined macros.
1723
1724 The standard predefined macros are specified by the C and/or C++
1725 language standards, so they are available with all compilers that
1726 implement those standards. Older compilers may not provide all of
1727 them. Their names all start with double underscores.
1728
1729 @table @code
1730 @item __FILE__
1731 This macro expands to the name of the current input file, in the form of
1732 a C string constant. This is the path by which the preprocessor opened
1733 the file, not the short name specified in @samp{#include} or as the
1734 input file name argument. For example,
1735 @code{"/usr/local/include/myheader.h"} is a possible expansion of this
1736 macro.
1737
1738 @item __LINE__
1739 This macro expands to the current input line number, in the form of a
1740 decimal integer constant. While we call it a predefined macro, it's
1741 a pretty strange macro, since its ``definition'' changes with each
1742 new line of source code.
1743 @end table
1744
1745 @code{__FILE__} and @code{__LINE__} are useful in generating an error
1746 message to report an inconsistency detected by the program; the message
1747 can state the source line at which the inconsistency was detected. For
1748 example,
1749
1750 @example
1751 fprintf (stderr, "Internal error: "
1752 "negative string length "
1753 "%d at %s, line %d.",
1754 length, __FILE__, __LINE__);
1755 @end example
1756
1757 An @samp{#include} directive changes the expansions of @code{__FILE__}
1758 and @code{__LINE__} to correspond to the included file. At the end of
1759 that file, when processing resumes on the input file that contained
1760 the @samp{#include} directive, the expansions of @code{__FILE__} and
1761 @code{__LINE__} revert to the values they had before the
1762 @samp{#include} (but @code{__LINE__} is then incremented by one as
1763 processing moves to the line after the @samp{#include}).
1764
1765 A @samp{#line} directive changes @code{__LINE__}, and may change
1766 @code{__FILE__} as well. @xref{Line Control}.
1767
1768 C99 introduces @code{__func__}, and GCC has provided @code{__FUNCTION__}
1769 for a long time. Both of these are strings containing the name of the
1770 current function (there are slight semantic differences; see the GCC
1771 manual). Neither of them is a macro; the preprocessor does not know the
1772 name of the current function. They tend to be useful in conjunction
1773 with @code{__FILE__} and @code{__LINE__}, though.
1774
1775 @table @code
1776
1777 @item __DATE__
1778 This macro expands to a string constant that describes the date on which
1779 the preprocessor is being run. The string constant contains eleven
1780 characters and looks like @code{@w{"Feb 12 1996"}}. If the day of the
1781 month is less than 10, it is padded with a space on the left.
1782
1783 @item __TIME__
1784 This macro expands to a string constant that describes the time at
1785 which the preprocessor is being run. The string constant contains
1786 eight characters and looks like @code{"23:59:01"}.
1787
1788 @item __STDC__
1789 In normal operation, this macro expands to the constant 1, to signify
1790 that this compiler conforms to ISO Standard C@. If GNU CPP is used with
1791 a compiler other than GCC, this is not necessarily true; however, the
1792 preprocessor always conforms to the standard, unless the
1793 @option{-traditional} option is used.
1794
1795 This macro is not defined if the @option{-traditional} option is used.
1796
1797 On some hosts, the system compiler uses a different convention, where
1798 @code{__STDC__} is normally 0, but is 1 if the user specifies strict
1799 conformance to the C Standard. GNU CPP follows the host convention when
1800 processing system header files, but when processing user files
1801 @code{__STDC__} is always 1. This has been reported to cause problems;
1802 for instance, some versions of Solaris provide X Windows headers that
1803 expect @code{__STDC__} to be either undefined or 1. You may be able to
1804 work around this sort of problem by using an @option{-I} option to
1805 cancel treatment of those headers as system headers. @xref{Invocation}.
1806
1807 @item __STDC_VERSION__
1808 This macro expands to the C Standard's version number, a long integer
1809 constant of the form @code{@var{yyyy}@var{mm}L} where @var{yyyy} and
1810 @var{mm} are the year and month of the Standard version. This signifies
1811 which version of the C Standard the compiler conforms to. Like
1812 @code{__STDC__}, this is not necessarily accurate for the entire
1813 implementation, unless GNU CPP is being used with GCC@.
1814
1815 The value @code{199409L} signifies the 1989 C standard as amended in
1816 1994, which is the current default; the value @code{199901L} signifies
1817 the 1999 revision of the C standard. Support for the 1999 revision is
1818 not yet complete.
1819
1820 This macro is not defined if the @option{-traditional} option is used, nor
1821 when compiling C++ or Objective-C@.
1822
1823 @item __STDC_HOSTED__
1824 This macro is defined, with value 1, if the compiler's target is a
1825 @dfn{hosted environment}. A hosted environment has the complete
1826 facilities of the standard C library available.
1827
1828 @item __cplusplus
1829 This macro is defined when the C++ compiler is in use. You can use
1830 @code{__cplusplus} to test whether a header is compiled by a C compiler
1831 or a C++ compiler. This macro is similar to @code{__STDC_VERSION__}, in
1832 that it expands to a version number. A fully conforming implementation
1833 of the 1998 C++ standard will define this macro to @code{199711L}. The
1834 GNU C++ compiler is not yet fully conforming, so it uses @code{1}
1835 instead. We hope to complete our implementation in the near future.
1836
1837 @end table
1838
1839 @node Common Predefined Macros
1840 @subsection Common Predefined Macros
1841 @cindex common predefined macros
1842
1843 The common predefined macros are GNU C extensions. They are available
1844 with the same meanings regardless of the machine or operating system on
1845 which you are using GNU C@. Their names all start with double
1846 underscores.
1847
1848 @table @code
1849
1850 @item __GNUC__
1851 @itemx __GNUC_MINOR__
1852 @itemx __GNUC_PATCHLEVEL__
1853 These macros are defined by all GNU compilers that use the C
1854 preprocessor: C, C++, and Objective-C@. Their values are the major
1855 version, minor version, and patch level of the compiler, as integer
1856 constants. For example, GCC 3.2.1 will define @code{__GNUC__} to 3,
1857 @code{__GNUC_MINOR__} to 2, and @code{__GNUC_PATCHLEVEL__} to 1. They
1858 are defined only when the entire compiler is in use; if you invoke the
1859 preprocessor directly, they are not defined.
1860
1861 @code{__GNUC_PATCHLEVEL__} is new to GCC 3.0; it is also present in the
1862 widely-used development snapshots leading up to 3.0 (which identify
1863 themselves as GCC 2.96 or 2.97, depending on which snapshot you have).
1864
1865 If all you need to know is whether or not your program is being compiled
1866 by GCC, you can simply test @code{__GNUC__}. If you need to write code
1867 which depends on a specific version, you must be more careful. Each
1868 time the minor version is increased, the patch level is reset to zero;
1869 each time the major version is increased (which happens rarely), the
1870 minor version and patch level are reset. If you wish to use the
1871 predefined macros directly in the conditional, you will need to write it
1872 like this:
1873
1874 @example
1875 /* @r{Test for GCC > 3.2.0} */
1876 #if __GNUC__ > 3 || \
1877 (__GNUC__ == 3 && (__GNUC_MINOR__ > 2 || \
1878 (__GNUC_MINOR__ == 2 && \
1879 __GNUC_PATCHLEVEL__ > 0))
1880 @end example
1881
1882 @noindent
1883 Another approach is to use the predefined macros to
1884 calculate a single number, then compare that against a threshold:
1885
1886 @example
1887 #define GCC_VERSION (__GNUC__ * 10000 \
1888 + __GNUC_MINOR__ * 100 \
1889 + __GNUC_PATCHLEVEL__)
1890 @dots{}
1891 /* @r{Test for GCC > 3.2.0} */
1892 #if GCC_VERSION > 30200
1893 @end example
1894
1895 @noindent
1896 Many people find this form easier to understand.
1897
1898 @item __OBJC__
1899 This macro is defined, with value 1, when the Objective-C compiler is in
1900 use. You can use @code{__OBJC__} to test whether a header is compiled
1901 by a C compiler or a Objective-C compiler.
1902
1903 @item __GNUG__
1904 The GNU C++ compiler defines this. Testing it is equivalent to
1905 testing @code{@w{(__GNUC__ && __cplusplus)}}.
1906
1907 @item __STRICT_ANSI__
1908 GCC defines this macro if and only if the @option{-ansi} switch, or a
1909 @option{-std} switch specifying strict conformance to some version of ISO C,
1910 was specified when GCC was invoked. It is defined to @samp{1}.
1911 This macro exists primarily to direct GNU libc's header files to
1912 restrict their definitions to the minimal set found in the 1989 C
1913 standard.
1914
1915 @item __BASE_FILE__
1916 This macro expands to the name of the main input file, in the form
1917 of a C string constant. This is the source file that was specified
1918 on the command line of the preprocessor or C compiler.
1919
1920 @item __INCLUDE_LEVEL__
1921 This macro expands to a decimal integer constant that represents the
1922 depth of nesting in include files. The value of this macro is
1923 incremented on every @samp{#include} directive and decremented at the
1924 end of every included file. It starts out at 0, it's value within the
1925 base file specified on the command line.
1926
1927 @item __VERSION__
1928 This macro expands to a string constant which describes the version of
1929 the compiler in use. You should not rely on its contents having any
1930 particular form, but it can be counted on to contain at least the
1931 release number.
1932
1933 @item __OPTIMIZE__
1934 @itemx __OPTIMIZE_SIZE__
1935 @itemx __NO_INLINE__
1936 These macros describe the compilation mode. @code{__OPTIMIZE__} is
1937 defined in all optimizing compilations. @code{__OPTIMIZE_SIZE__} is
1938 defined if the compiler is optimizing for size, not speed.
1939 @code{__NO_INLINE__} is defined if no functions will be inlined into
1940 their callers (when not optimizing, or when inlining has been
1941 specifically disabled by @option{-fno-inline}).
1942
1943 These macros cause certain GNU header files to provide optimized
1944 definitions, using macros or inline functions, of system library
1945 functions. You should not use these macros in any way unless you make
1946 sure that programs will execute with the same effect whether or not they
1947 are defined. If they are defined, their value is 1.
1948
1949 @item __CHAR_UNSIGNED__
1950 GCC defines this macro if and only if the data type @code{char} is
1951 unsigned on the target machine. It exists to cause the standard header
1952 file @file{limits.h} to work correctly. You should not use this macro
1953 yourself; instead, refer to the standard macros defined in @file{limits.h}.
1954
1955 @item __REGISTER_PREFIX__
1956 This macro expands to a single token (not a string constant) which is
1957 the prefix applied to CPU register names in assembly language for this
1958 target. You can use it to write assembly that is usable in multiple
1959 environments. For example, in the @code{m68k-aout} environment it
1960 expands to nothing, but in the @code{m68k-coff} environment it expands
1961 to a single @samp{%}.
1962
1963 @item __USER_LABEL_PREFIX__
1964 This macro expands to a single token which is the prefix applied to
1965 user labels (symbols visible to C code) in assembly. For example, in
1966 the @code{m68k-aout} environment it expands to an @samp{_}, but in the
1967 @code{m68k-coff} environment it expands to nothing.
1968
1969 This macro will have the correct definition even if
1970 @option{-f(no-)underscores} is in use, but it will not be correct if
1971 target-specific options that adjust this prefix are used (e.g.@: the
1972 OSF/rose @option{-mno-underscores} option).
1973
1974 @item __SIZE_TYPE__
1975 @itemx __PTRDIFF_TYPE__
1976 @itemx __WCHAR_TYPE__
1977 @itemx __WINT_TYPE__
1978 These macros are defined to the correct underlying types for the
1979 @code{size_t}, @code{ptrdiff_t}, @code{wchar_t}, and @code{wint_t}
1980 typedefs, respectively. They exist to make the standard header files
1981 @file{stddef.h} and @file{wchar.h} work correctly. You should not use
1982 these macros directly; instead, include the appropriate headers and use
1983 the typedefs.
1984
1985 @item __USING_SJLJ_EXCEPTIONS__
1986 This macro is defined, with value 1, if the compiler uses the old
1987 mechanism based on @code{setjmp} and @code{longjmp} for exception
1988 handling.
1989 @end table
1990
1991 @node System-specific Predefined Macros
1992 @subsection System-specific Predefined Macros
1993
1994 @cindex system-specific predefined macros
1995 @cindex predefined macros, system-specific
1996 @cindex reserved namespace
1997
1998 The C preprocessor normally predefines several macros that indicate what
1999 type of system and machine is in use. They are obviously different on
2000 each target supported by GCC@. This manual, being for all systems and
2001 machines, cannot tell you what their names are, but you can use
2002 @command{cpp -dM} to see them all. @xref{Invocation}. All system-specific
2003 predefined macros expand to the constant 1, so you can test them with
2004 either @samp{#ifdef} or @samp{#if}.
2005
2006 The C standard requires that all system-specific macros be part of the
2007 @dfn{reserved namespace}. All names which begin with two underscores,
2008 or an underscore and a capital letter, are reserved for the compiler and
2009 library to use as they wish. However, historically system-specific
2010 macros have had names with no special prefix; for instance, it is common
2011 to find @code{unix} defined on Unix systems. For all such macros, GCC
2012 provides a parallel macro with two underscores added at the beginning
2013 and the end. If @code{unix} is defined, @code{__unix__} will be defined
2014 too. There will never be more than two underscores; the parallel of
2015 @code{_mips} is @code{__mips__}.
2016
2017 When the @option{-ansi} option, or any @option{-std} option that
2018 requests strict conformance, is given to the compiler, all the
2019 system-specific predefined macros outside the reserved namespace are
2020 suppressed. The parallel macros, inside the reserved namespace, remain
2021 defined.
2022
2023 We are slowly phasing out all predefined macros which are outside the
2024 reserved namespace. You should never use them in new programs, and we
2025 encourage you to correct older code to use the parallel macros whenever
2026 you find it. We don't recommend you use the system-specific macros that
2027 are in the reserved namespace, either. It is better in the long run to
2028 check specifically for features you need, using a tool such as
2029 @command{autoconf}.
2030
2031 @node C++ Named Operators
2032 @subsection C++ Named Operators
2033 @cindex named operators
2034 @cindex C++ named operators
2035 @cindex iso646.h
2036
2037 In C++, there are eleven keywords which are simply alternate spellings
2038 of operators normally written with punctuation. These keywords are
2039 treated as such even in the preprocessor. They function as operators in
2040 @samp{#if}, and they cannot be defined as macros or poisoned. In C, you
2041 can request that those keywords take their C++ meaning by including
2042 @file{iso646.h}. That header defines each one as a normal object-like
2043 macro expanding to the appropriate punctuator.
2044
2045 These are the named operators and their corresponding punctuators:
2046
2047 @multitable {Named Operator} {Punctuator}
2048 @item Named Operator @tab Punctuator
2049 @item @code{and} @tab @code{&&}
2050 @item @code{and_eq} @tab @code{&=}
2051 @item @code{bitand} @tab @code{&}
2052 @item @code{bitor} @tab @code{|}
2053 @item @code{compl} @tab @code{~}
2054 @item @code{not} @tab @code{!}
2055 @item @code{not_eq} @tab @code{!=}
2056 @item @code{or} @tab @code{||}
2057 @item @code{or_eq} @tab @code{|=}
2058 @item @code{xor} @tab @code{^}
2059 @item @code{xor_eq} @tab @code{^=}
2060 @end multitable
2061
2062 @node Undefining and Redefining Macros
2063 @section Undefining and Redefining Macros
2064 @cindex undefining macros
2065 @cindex redefining macros
2066 @findex #undef
2067
2068 If a macro ceases to be useful, it may be @dfn{undefined} with the
2069 @samp{#undef} directive. @samp{#undef} takes a single argument, the
2070 name of the macro to undefine. You use the bare macro name, even if the
2071 macro is function-like. It is an error if anything appears on the line
2072 after the macro name. @samp{#undef} has no effect if the name is not a
2073 macro.
2074
2075 @example
2076 #define FOO 4
2077 x = FOO; @expansion{} x = 4;
2078 #undef FOO
2079 x = FOO; @expansion{} x = FOO;
2080 @end example
2081
2082 Once a macro has been undefined, that identifier may be @dfn{redefined}
2083 as a macro by a subsequent @samp{#define} directive. The new definition
2084 need not have any resemblance to the old definition.
2085
2086 However, if an identifier which is currently a macro is redefined, then
2087 the new definition must be @dfn{effectively the same} as the old one.
2088 Two macro definitions are effectively the same if:
2089 @itemize @bullet
2090 @item Both are the same type of macro (object- or function-like).
2091 @item All the tokens of the replacement list are the same.
2092 @item If there are any parameters, they are the same.
2093 @item Whitespace appears in the same places in both. It need not be
2094 exactly the same amount of whitespace, though. Remember that comments
2095 count as whitespace.
2096 @end itemize
2097
2098 @noindent
2099 These definitions are effectively the same:
2100 @example
2101 #define FOUR (2 + 2)
2102 #define FOUR (2 + 2)
2103 #define FOUR (2 /* two */ + 2)
2104 @end example
2105 @noindent
2106 but these are not:
2107 @example
2108 #define FOUR (2 + 2)
2109 #define FOUR ( 2+2 )
2110 #define FOUR (2 * 2)
2111 #define FOUR(score,and,seven,years,ago) (2 + 2)
2112 @end example
2113
2114 If a macro is redefined with a definition that is not effectively the
2115 same as the old one, the preprocessor issues a warning and changes the
2116 macro to use the new definition. If the new definition is effectively
2117 the same, the redefinition is silently ignored. This allows, for
2118 instance, two different headers to define a common macro. The
2119 preprocessor will only complain if the definitions do not match.
2120
2121 @node Directives Within Macro Arguments
2122 @section Directives Within Macro Arguments
2123 @cindex macro arguments and directives
2124
2125 Occasionally it is convenient to use preprocessor directives within
2126 the arguments of a macro. The C and C++ standards declare that
2127 behavior in these cases is undefined.
2128
2129 Versions of GNU CPP prior to 3.2 would reject such constructs with an
2130 error message. This was the only syntactic difference between normal
2131 functions and function-like macros, so it seemed attractive to remove
2132 this limitation, and people would often be surprised that they could
2133 not use macros in this way. Moreover, sometimes people would use
2134 conditional compilation in the argument list to a normal library
2135 function like @samp{printf}, only to find that after a library upgrade
2136 @samp{printf} had changed to be a function-like macro, and their code
2137 would no longer compile. So from version 3.2 we changed CPP to
2138 successfully process arbitrary directives within macro arguments in
2139 exactly the same way as it would have processed the directive were the
2140 function-like macro invocation not present.
2141
2142 If, within a macro invocation, that macro is redefined, then the new
2143 definition takes effect in time for argument pre-expansion, but the
2144 original definition is still used for argument replacement. Here is a
2145 pathological example:
2146
2147 @smallexample
2148 #define f(x) x x
2149 f (1
2150 #undef f
2151 #define f 2
2152 f)
2153 @end smallexample
2154
2155 @noindent which expands to
2156
2157 @smallexample
2158 1 2 1 2
2159 @end smallexample
2160
2161 @noindent with the semantics described above.
2162
2163 @node Macro Pitfalls
2164 @section Macro Pitfalls
2165 @cindex problems with macros
2166 @cindex pitfalls of macros
2167
2168 In this section we describe some special rules that apply to macros and
2169 macro expansion, and point out certain cases in which the rules have
2170 counter-intuitive consequences that you must watch out for.
2171
2172 @menu
2173 * Misnesting::
2174 * Operator Precedence Problems::
2175 * Swallowing the Semicolon::
2176 * Duplication of Side Effects::
2177 * Self-Referential Macros::
2178 * Argument Prescan::
2179 * Newlines in Arguments::
2180 @end menu
2181
2182 @node Misnesting
2183 @subsection Misnesting
2184
2185 When a macro is called with arguments, the arguments are substituted
2186 into the macro body and the result is checked, together with the rest of
2187 the input file, for more macro calls. It is possible to piece together
2188 a macro call coming partially from the macro body and partially from the
2189 arguments. For example,
2190
2191 @example
2192 #define twice(x) (2*(x))
2193 #define call_with_1(x) x(1)
2194 call_with_1 (twice)
2195 @expansion{} twice(1)
2196 @expansion{} (2*(1))
2197 @end example
2198
2199 Macro definitions do not have to have balanced parentheses. By writing
2200 an unbalanced open parenthesis in a macro body, it is possible to create
2201 a macro call that begins inside the macro body but ends outside of it.
2202 For example,
2203
2204 @example
2205 #define strange(file) fprintf (file, "%s %d",
2206 @dots{}
2207 strange(stderr) p, 35)
2208 @expansion{} fprintf (stderr, "%s %d", p, 35)
2209 @end example
2210
2211 The ability to piece together a macro call can be useful, but the use of
2212 unbalanced open parentheses in a macro body is just confusing, and
2213 should be avoided.
2214
2215 @node Operator Precedence Problems
2216 @subsection Operator Precedence Problems
2217 @cindex parentheses in macro bodies
2218
2219 You may have noticed that in most of the macro definition examples shown
2220 above, each occurrence of a macro argument name had parentheses around
2221 it. In addition, another pair of parentheses usually surround the
2222 entire macro definition. Here is why it is best to write macros that
2223 way.
2224
2225 Suppose you define a macro as follows,
2226
2227 @example
2228 #define ceil_div(x, y) (x + y - 1) / y
2229 @end example
2230
2231 @noindent
2232 whose purpose is to divide, rounding up. (One use for this operation is
2233 to compute how many @code{int} objects are needed to hold a certain
2234 number of @code{char} objects.) Then suppose it is used as follows:
2235
2236 @example
2237 a = ceil_div (b & c, sizeof (int));
2238 @expansion{} a = (b & c + sizeof (int) - 1) / sizeof (int);
2239 @end example
2240
2241 @noindent
2242 This does not do what is intended. The operator-precedence rules of
2243 C make it equivalent to this:
2244
2245 @example
2246 a = (b & (c + sizeof (int) - 1)) / sizeof (int);
2247 @end example
2248
2249 @noindent
2250 What we want is this:
2251
2252 @example
2253 a = ((b & c) + sizeof (int) - 1)) / sizeof (int);
2254 @end example
2255
2256 @noindent
2257 Defining the macro as
2258
2259 @example
2260 #define ceil_div(x, y) ((x) + (y) - 1) / (y)
2261 @end example
2262
2263 @noindent
2264 provides the desired result.
2265
2266 Unintended grouping can result in another way. Consider @code{sizeof
2267 ceil_div(1, 2)}. That has the appearance of a C expression that would
2268 compute the size of the type of @code{ceil_div (1, 2)}, but in fact it
2269 means something very different. Here is what it expands to:
2270
2271 @example
2272 sizeof ((1) + (2) - 1) / (2)
2273 @end example
2274
2275 @noindent
2276 This would take the size of an integer and divide it by two. The
2277 precedence rules have put the division outside the @code{sizeof} when it
2278 was intended to be inside.
2279
2280 Parentheses around the entire macro definition prevent such problems.
2281 Here, then, is the recommended way to define @code{ceil_div}:
2282
2283 @example
2284 #define ceil_div(x, y) (((x) + (y) - 1) / (y))
2285 @end example
2286
2287 @node Swallowing the Semicolon
2288 @subsection Swallowing the Semicolon
2289 @cindex semicolons (after macro calls)
2290
2291 Often it is desirable to define a macro that expands into a compound
2292 statement. Consider, for example, the following macro, that advances a
2293 pointer (the argument @code{p} says where to find it) across whitespace
2294 characters:
2295
2296 @example
2297 #define SKIP_SPACES(p, limit) \
2298 @{ char *lim = (limit); \
2299 while (p < lim) @{ \
2300 if (*p++ != ' ') @{ \
2301 p--; break; @}@}@}
2302 @end example
2303
2304 @noindent
2305 Here backslash-newline is used to split the macro definition, which must
2306 be a single logical line, so that it resembles the way such code would
2307 be laid out if not part of a macro definition.
2308
2309 A call to this macro might be @code{SKIP_SPACES (p, lim)}. Strictly
2310 speaking, the call expands to a compound statement, which is a complete
2311 statement with no need for a semicolon to end it. However, since it
2312 looks like a function call, it minimizes confusion if you can use it
2313 like a function call, writing a semicolon afterward, as in
2314 @code{SKIP_SPACES (p, lim);}
2315
2316 This can cause trouble before @code{else} statements, because the
2317 semicolon is actually a null statement. Suppose you write
2318
2319 @example
2320 if (*p != 0)
2321 SKIP_SPACES (p, lim);
2322 else @dots{}
2323 @end example
2324
2325 @noindent
2326 The presence of two statements---the compound statement and a null
2327 statement---in between the @code{if} condition and the @code{else}
2328 makes invalid C code.
2329
2330 The definition of the macro @code{SKIP_SPACES} can be altered to solve
2331 this problem, using a @code{do @dots{} while} statement. Here is how:
2332
2333 @example
2334 #define SKIP_SPACES(p, limit) \
2335 do @{ char *lim = (limit); \
2336 while (p < lim) @{ \
2337 if (*p++ != ' ') @{ \
2338 p--; break; @}@}@} \
2339 while (0)
2340 @end example
2341
2342 Now @code{SKIP_SPACES (p, lim);} expands into
2343
2344 @example
2345 do @{@dots{}@} while (0);
2346 @end example
2347
2348 @noindent
2349 which is one statement. The loop executes exactly once; most compilers
2350 generate no extra code for it.
2351
2352 @node Duplication of Side Effects
2353 @subsection Duplication of Side Effects
2354
2355 @cindex side effects (in macro arguments)
2356 @cindex unsafe macros
2357 Many C programs define a macro @code{min}, for ``minimum'', like this:
2358
2359 @example
2360 #define min(X, Y) ((X) < (Y) ? (X) : (Y))
2361 @end example
2362
2363 When you use this macro with an argument containing a side effect,
2364 as shown here,
2365
2366 @example
2367 next = min (x + y, foo (z));
2368 @end example
2369
2370 @noindent
2371 it expands as follows:
2372
2373 @example
2374 next = ((x + y) < (foo (z)) ? (x + y) : (foo (z)));
2375 @end example
2376
2377 @noindent
2378 where @code{x + y} has been substituted for @code{X} and @code{foo (z)}
2379 for @code{Y}.
2380
2381 The function @code{foo} is used only once in the statement as it appears
2382 in the program, but the expression @code{foo (z)} has been substituted
2383 twice into the macro expansion. As a result, @code{foo} might be called
2384 two times when the statement is executed. If it has side effects or if
2385 it takes a long time to compute, the results might not be what you
2386 intended. We say that @code{min} is an @dfn{unsafe} macro.
2387
2388 The best solution to this problem is to define @code{min} in a way that
2389 computes the value of @code{foo (z)} only once. The C language offers
2390 no standard way to do this, but it can be done with GNU extensions as
2391 follows:
2392
2393 @example
2394 #define min(X, Y) \
2395 (@{ typeof (X) x_ = (X); \
2396 typeof (Y) y_ = (Y); \
2397 (x_ < y_) ? x_ : y_; @})
2398 @end example
2399
2400 The @samp{(@{ @dots{} @})} notation produces a compound statement that
2401 acts as an expression. Its value is the value of its last statement.
2402 This permits us to define local variables and assign each argument to
2403 one. The local variables have underscores after their names to reduce
2404 the risk of conflict with an identifier of wider scope (it is impossible
2405 to avoid this entirely). Now each argument is evaluated exactly once.
2406
2407 If you do not wish to use GNU C extensions, the only solution is to be
2408 careful when @emph{using} the macro @code{min}. For example, you can
2409 calculate the value of @code{foo (z)}, save it in a variable, and use
2410 that variable in @code{min}:
2411
2412 @example
2413 @group
2414 #define min(X, Y) ((X) < (Y) ? (X) : (Y))
2415 @dots{}
2416 @{
2417 int tem = foo (z);
2418 next = min (x + y, tem);
2419 @}
2420 @end group
2421 @end example
2422
2423 @noindent
2424 (where we assume that @code{foo} returns type @code{int}).
2425
2426 @node Self-Referential Macros
2427 @subsection Self-Referential Macros
2428 @cindex self-reference
2429
2430 A @dfn{self-referential} macro is one whose name appears in its
2431 definition. Recall that all macro definitions are rescanned for more
2432 macros to replace. If the self-reference were considered a use of the
2433 macro, it would produce an infinitely large expansion. To prevent this,
2434 the self-reference is not considered a macro call. It is passed into
2435 the preprocessor output unchanged. Let's consider an example:
2436
2437 @example
2438 #define foo (4 + foo)
2439 @end example
2440
2441 @noindent
2442 where @code{foo} is also a variable in your program.
2443
2444 Following the ordinary rules, each reference to @code{foo} will expand
2445 into @code{(4 + foo)}; then this will be rescanned and will expand into
2446 @code{(4 + (4 + foo))}; and so on until the computer runs out of memory.
2447
2448 The self-reference rule cuts this process short after one step, at
2449 @code{(4 + foo)}. Therefore, this macro definition has the possibly
2450 useful effect of causing the program to add 4 to the value of @code{foo}
2451 wherever @code{foo} is referred to.
2452
2453 In most cases, it is a bad idea to take advantage of this feature. A
2454 person reading the program who sees that @code{foo} is a variable will
2455 not expect that it is a macro as well. The reader will come across the
2456 identifier @code{foo} in the program and think its value should be that
2457 of the variable @code{foo}, whereas in fact the value is four greater.
2458
2459 One common, useful use of self-reference is to create a macro which
2460 expands to itself. If you write
2461
2462 @example
2463 #define EPERM EPERM
2464 @end example
2465
2466 @noindent
2467 then the macro @code{EPERM} expands to @code{EPERM}. Effectively, it is
2468 left alone by the preprocessor whenever it's used in running text. You
2469 can tell that it's a macro with @samp{#ifdef}. You might do this if you
2470 want to define numeric constants with an @code{enum}, but have
2471 @samp{#ifdef} be true for each constant.
2472
2473 If a macro @code{x} expands to use a macro @code{y}, and the expansion of
2474 @code{y} refers to the macro @code{x}, that is an @dfn{indirect
2475 self-reference} of @code{x}. @code{x} is not expanded in this case
2476 either. Thus, if we have
2477
2478 @example
2479 #define x (4 + y)
2480 #define y (2 * x)
2481 @end example
2482
2483 @noindent
2484 then @code{x} and @code{y} expand as follows:
2485
2486 @example
2487 @group
2488 x @expansion{} (4 + y)
2489 @expansion{} (4 + (2 * x))
2490
2491 y @expansion{} (2 * x)
2492 @expansion{} (2 * (4 + y))
2493 @end group
2494 @end example
2495
2496 @noindent
2497 Each macro is expanded when it appears in the definition of the other
2498 macro, but not when it indirectly appears in its own definition.
2499
2500 @node Argument Prescan
2501 @subsection Argument Prescan
2502 @cindex expansion of arguments
2503 @cindex macro argument expansion
2504 @cindex prescan of macro arguments
2505
2506 Macro arguments are completely macro-expanded before they are
2507 substituted into a macro body, unless they are stringified or pasted
2508 with other tokens. After substitution, the entire macro body, including
2509 the substituted arguments, is scanned again for macros to be expanded.
2510 The result is that the arguments are scanned @emph{twice} to expand
2511 macro calls in them.
2512
2513 Most of the time, this has no effect. If the argument contained any
2514 macro calls, they are expanded during the first scan. The result
2515 therefore contains no macro calls, so the second scan does not change
2516 it. If the argument were substituted as given, with no prescan, the
2517 single remaining scan would find the same macro calls and produce the
2518 same results.
2519
2520 You might expect the double scan to change the results when a
2521 self-referential macro is used in an argument of another macro
2522 (@pxref{Self-Referential Macros}): the self-referential macro would be
2523 expanded once in the first scan, and a second time in the second scan.
2524 However, this is not what happens. The self-references that do not
2525 expand in the first scan are marked so that they will not expand in the
2526 second scan either.
2527
2528 You might wonder, ``Why mention the prescan, if it makes no difference?
2529 And why not skip it and make the preprocessor faster?'' The answer is
2530 that the prescan does make a difference in three special cases:
2531
2532 @itemize @bullet
2533 @item
2534 Nested calls to a macro.
2535
2536 We say that @dfn{nested} calls to a macro occur when a macro's argument
2537 contains a call to that very macro. For example, if @code{f} is a macro
2538 that expects one argument, @code{f (f (1))} is a nested pair of calls to
2539 @code{f}. The desired expansion is made by expanding @code{f (1)} and
2540 substituting that into the definition of @code{f}. The prescan causes
2541 the expected result to happen. Without the prescan, @code{f (1)} itself
2542 would be substituted as an argument, and the inner use of @code{f} would
2543 appear during the main scan as an indirect self-reference and would not
2544 be expanded.
2545
2546 @item
2547 Macros that call other macros that stringify or concatenate.
2548
2549 If an argument is stringified or concatenated, the prescan does not
2550 occur. If you @emph{want} to expand a macro, then stringify or
2551 concatenate its expansion, you can do that by causing one macro to call
2552 another macro that does the stringification or concatenation. For
2553 instance, if you have
2554
2555 @example
2556 #define AFTERX(x) X_ ## x
2557 #define XAFTERX(x) AFTERX(x)
2558 #define TABLESIZE 1024
2559 #define BUFSIZE TABLESIZE
2560 @end example
2561
2562 then @code{AFTERX(BUFSIZE)} expands to @code{X_BUFSIZE}, and
2563 @code{XAFTERX(BUFSIZE)} expands to @code{X_1024}. (Not to
2564 @code{X_TABLESIZE}. Prescan always does a complete expansion.)
2565
2566 @item
2567 Macros used in arguments, whose expansions contain unshielded commas.
2568
2569 This can cause a macro expanded on the second scan to be called with the
2570 wrong number of arguments. Here is an example:
2571
2572 @example
2573 #define foo a,b
2574 #define bar(x) lose(x)
2575 #define lose(x) (1 + (x))
2576 @end example
2577
2578 We would like @code{bar(foo)} to turn into @code{(1 + (foo))}, which
2579 would then turn into @code{(1 + (a,b))}. Instead, @code{bar(foo)}
2580 expands into @code{lose(a,b)}, and you get an error because @code{lose}
2581 requires a single argument. In this case, the problem is easily solved
2582 by the same parentheses that ought to be used to prevent misnesting of
2583 arithmetic operations:
2584
2585 @example
2586 #define foo (a,b)
2587 @exdent or
2588 #define bar(x) lose((x))
2589 @end example
2590
2591 The extra pair of parentheses prevents the comma in @code{foo}'s
2592 definition from being interpreted as an argument separator.
2593
2594 @end itemize
2595
2596 @node Newlines in Arguments
2597 @subsection Newlines in Arguments
2598 @cindex newlines in macro arguments
2599
2600 The invocation of a function-like macro can extend over many logical
2601 lines. However, in the present implementation, the entire expansion
2602 comes out on one line. Thus line numbers emitted by the compiler or
2603 debugger refer to the line the invocation started on, which might be
2604 different to the line containing the argument causing the problem.
2605
2606 Here is an example illustrating this:
2607
2608 @example
2609 #define ignore_second_arg(a,b,c) a; c
2610
2611 ignore_second_arg (foo (),
2612 ignored (),
2613 syntax error);
2614 @end example
2615
2616 @noindent
2617 The syntax error triggered by the tokens @code{syntax error} results in
2618 an error message citing line three---the line of ignore_second_arg---
2619 even though the problematic code comes from line five.
2620
2621 We consider this a bug, and intend to fix it in the near future.
2622
2623 @node Conditionals
2624 @chapter Conditionals
2625 @cindex conditionals
2626
2627 A @dfn{conditional} is a directive that instructs the preprocessor to
2628 select whether or not to include a chunk of code in the final token
2629 stream passed to the compiler. Preprocessor conditionals can test
2630 arithmetic expressions, or whether a name is defined as a macro, or both
2631 simultaneously using the special @code{defined} operator.
2632
2633 A conditional in the C preprocessor resembles in some ways an @code{if}
2634 statement in C, but it is important to understand the difference between
2635 them. The condition in an @code{if} statement is tested during the
2636 execution of your program. Its purpose is to allow your program to
2637 behave differently from run to run, depending on the data it is
2638 operating on. The condition in a preprocessing conditional directive is
2639 tested when your program is compiled. Its purpose is to allow different
2640 code to be included in the program depending on the situation at the
2641 time of compilation.
2642
2643 However, the distinction is becoming less clear. Modern compilers often
2644 do test @code{if} statements when a program is compiled, if their
2645 conditions are known not to vary at run time, and eliminate code which
2646 can never be executed. If you can count on your compiler to do this,
2647 you may find that your program is more readable if you use @code{if}
2648 statements with constant conditions (perhaps determined by macros). Of
2649 course, you can only use this to exclude code, not type definitions or
2650 other preprocessing directives, and you can only do it if the code
2651 remains syntactically valid when it is not to be used.
2652
2653 GCC version 3 eliminates this kind of never-executed code even when
2654 not optimizing. Older versions did it only when optimizing.
2655
2656 @menu
2657 * Conditional Uses::
2658 * Conditional Syntax::
2659 * Deleted Code::
2660 @end menu
2661
2662 @node Conditional Uses
2663 @section Conditional Uses
2664
2665 There are three general reasons to use a conditional.
2666
2667 @itemize @bullet
2668 @item
2669 A program may need to use different code depending on the machine or
2670 operating system it is to run on. In some cases the code for one
2671 operating system may be erroneous on another operating system; for
2672 example, it might refer to data types or constants that do not exist on
2673 the other system. When this happens, it is not enough to avoid
2674 executing the invalid code. Its mere presence will cause the compiler
2675 to reject the program. With a preprocessing conditional, the offending
2676 code can be effectively excised from the program when it is not valid.
2677
2678 @item
2679 You may want to be able to compile the same source file into two
2680 different programs. One version might make frequent time-consuming
2681 consistency checks on its intermediate data, or print the values of
2682 those data for debugging, and the other not.
2683
2684 @item
2685 A conditional whose condition is always false is one way to exclude code
2686 from the program but keep it as a sort of comment for future reference.
2687 @end itemize
2688
2689 Simple programs that do not need system-specific logic or complex
2690 debugging hooks generally will not need to use preprocessing
2691 conditionals.
2692
2693 @node Conditional Syntax
2694 @section Conditional Syntax
2695
2696 @findex #if
2697 A conditional in the C preprocessor begins with a @dfn{conditional
2698 directive}: @samp{#if}, @samp{#ifdef} or @samp{#ifndef}.
2699
2700 @menu
2701 * Ifdef::
2702 * If::
2703 * Defined::
2704 * Else::
2705 * Elif::
2706 @end menu
2707
2708 @node Ifdef
2709 @subsection Ifdef
2710 @findex #ifdef
2711 @findex #endif
2712
2713 The simplest sort of conditional is
2714
2715 @example
2716 @group
2717 #ifdef @var{MACRO}
2718
2719 @var{controlled text}
2720
2721 #endif /* @var{MACRO} */
2722 @end group
2723 @end example
2724
2725 @cindex conditional group
2726 This block is called a @dfn{conditional group}. @var{controlled text}
2727 will be included in the output of the preprocessor if and only if
2728 @var{MACRO} is defined. We say that the conditional @dfn{succeeds} if
2729 @var{MACRO} is defined, @dfn{fails} if it is not.
2730
2731 The @var{controlled text} inside of a conditional can include
2732 preprocessing directives. They are executed only if the conditional
2733 succeeds. You can nest conditional groups inside other conditional
2734 groups, but they must be completely nested. In other words,
2735 @samp{#endif} always matches the nearest @samp{#ifdef} (or
2736 @samp{#ifndef}, or @samp{#if}). Also, you cannot start a conditional
2737 group in one file and end it in another.
2738
2739 Even if a conditional fails, the @var{controlled text} inside it is
2740 still run through initial transformations and tokenization. Therefore,
2741 it must all be lexically valid C@. Normally the only way this matters is
2742 that all comments and string literals inside a failing conditional group
2743 must still be properly ended.
2744
2745 The comment following the @samp{#endif} is not required, but it is a
2746 good practice if there is a lot of @var{controlled text}, because it
2747 helps people match the @samp{#endif} to the corresponding @samp{#ifdef}.
2748 Older programs sometimes put @var{MACRO} directly after the
2749 @samp{#endif} without enclosing it in a comment. This is invalid code
2750 according to the C standard. GNU CPP accepts it with a warning. It
2751 never affects which @samp{#ifndef} the @samp{#endif} matches.
2752
2753 @findex #ifndef
2754 Sometimes you wish to use some code if a macro is @emph{not} defined.
2755 You can do this by writing @samp{#ifndef} instead of @samp{#ifdef}.
2756 One common use of @samp{#ifndef} is to include code only the first
2757 time a header file is included. @xref{Once-Only Headers}.
2758
2759 Macro definitions can vary between compilations for several reasons.
2760 Here are some samples.
2761
2762 @itemize @bullet
2763 @item
2764 Some macros are predefined on each kind of machine
2765 (@pxref{System-specific Predefined Macros}). This allows you to provide
2766 code specially tuned for a particular machine.
2767
2768 @item
2769 System header files define more macros, associated with the features
2770 they implement. You can test these macros with conditionals to avoid
2771 using a system feature on a machine where it is not implemented.
2772
2773 @item
2774 Macros can be defined or undefined with the @option{-D} and @option{-U}
2775 command line options when you compile the program. You can arrange to
2776 compile the same source file into two different programs by choosing a
2777 macro name to specify which program you want, writing conditionals to
2778 test whether or how this macro is defined, and then controlling the
2779 state of the macro with command line options, perhaps set in the
2780 Makefile. @xref{Invocation}.
2781
2782 @item
2783 Your program might have a special header file (often called
2784 @file{config.h}) that is adjusted when the program is compiled. It can
2785 define or not define macros depending on the features of the system and
2786 the desired capabilities of the program. The adjustment can be
2787 automated by a tool such as @command{autoconf}, or done by hand.
2788 @end itemize
2789
2790 @node If
2791 @subsection If
2792
2793 The @samp{#if} directive allows you to test the value of an arithmetic
2794 expression, rather than the mere existence of one macro. Its syntax is
2795
2796 @example
2797 @group
2798 #if @var{expression}
2799
2800 @var{controlled text}
2801
2802 #endif /* @var{expression} */
2803 @end group
2804 @end example
2805
2806 @var{expression} is a C expression of integer type, subject to stringent
2807 restrictions. It may contain
2808
2809 @itemize @bullet
2810 @item
2811 Integer constants.
2812
2813 @item
2814 Character constants, which are interpreted as they would be in normal
2815 code.
2816
2817 @item
2818 Arithmetic operators for addition, subtraction, multiplication,
2819 division, bitwise operations, shifts, comparisons, and logical
2820 operations (@code{&&} and @code{||}). The latter two obey the usual
2821 short-circuiting rules of standard C@.
2822
2823 @item
2824 Macros. All macros in the expression are expanded before actual
2825 computation of the expression's value begins.
2826
2827 @item
2828 Uses of the @code{defined} operator, which lets you check whether macros
2829 are defined in the middle of an @samp{#if}.
2830
2831 @item
2832 Identifiers that are not macros, which are all considered to be the
2833 number zero. This allows you to write @code{@w{#if MACRO}} instead of
2834 @code{@w{#ifdef MACRO}}, if you know that MACRO, when defined, will
2835 always have a nonzero value. Function-like macros used without their
2836 function call parentheses are also treated as zero.
2837
2838 In some contexts this shortcut is undesirable. The @option{-Wundef}
2839 option causes GCC to warn whenever it encounters an identifier which is
2840 not a macro in an @samp{#if}.
2841 @end itemize
2842
2843 The preprocessor does not know anything about types in the language.
2844 Therefore, @code{sizeof} operators are not recognized in @samp{#if}, and
2845 neither are @code{enum} constants. They will be taken as identifiers
2846 which are not macros, and replaced by zero. In the case of
2847 @code{sizeof}, this is likely to cause the expression to be invalid.
2848
2849 The preprocessor calculates the value of @var{expression}. It carries
2850 out all calculations in the widest integer type known to the compiler;
2851 on most machines supported by GCC this is 64 bits. This is not the same
2852 rule as the compiler uses to calculate the value of a constant
2853 expression, and may give different results in some cases. If the value
2854 comes out to be nonzero, the @samp{#if} succeeds and the @var{controlled
2855 text} is included; otherwise it is skipped.
2856
2857 If @var{expression} is not correctly formed, GCC issues an error and
2858 treats the conditional as having failed.
2859
2860 @node Defined
2861 @subsection Defined
2862
2863 @cindex @code{defined}
2864 The special operator @code{defined} is used in @samp{#if} and
2865 @samp{#elif} expressions to test whether a certain name is defined as a
2866 macro. @code{defined @var{name}} and @code{defined (@var{name})} are
2867 both expressions whose value is 1 if @var{name} is defined as a macro at
2868 the current point in the program, and 0 otherwise. Thus, @code{@w{#if
2869 defined MACRO}} is precisely equivalent to @code{@w{#ifdef MACRO}}.
2870
2871 @code{defined} is useful when you wish to test more than one macro for
2872 existence at once. For example,
2873
2874 @example
2875 #if defined (__vax__) || defined (__ns16000__)
2876 @end example
2877
2878 @noindent
2879 would succeed if either of the names @code{__vax__} or
2880 @code{__ns16000__} is defined as a macro.
2881
2882 Conditionals written like this:
2883
2884 @example
2885 #if defined BUFSIZE && BUFSIZE >= 1024
2886 @end example
2887
2888 @noindent
2889 can generally be simplified to just @code{@w{#if BUFSIZE >= 1024}},
2890 since if @code{BUFSIZE} is not defined, it will be interpreted as having
2891 the value zero.
2892
2893 If the @code{defined} operator appears as a result of a macro expansion,
2894 the C standard says the behavior is undefined. GNU cpp treats it as a
2895 genuine @code{defined} operator and evaluates it normally. It will warn
2896 wherever your code uses this feature if you use the command-line option
2897 @option{-pedantic}, since other compilers may handle it differently.
2898
2899 @node Else
2900 @subsection Else
2901
2902 @findex #else
2903 The @samp{#else} directive can be added to a conditional to provide
2904 alternative text to be used if the condition fails. This is what it
2905 looks like:
2906
2907 @example
2908 @group
2909 #if @var{expression}
2910 @var{text-if-true}
2911 #else /* Not @var{expression} */
2912 @var{text-if-false}
2913 #endif /* Not @var{expression} */
2914 @end group
2915 @end example
2916
2917 @noindent
2918 If @var{expression} is nonzero, the @var{text-if-true} is included and
2919 the @var{text-if-false} is skipped. If @var{expression} is zero, the
2920 opposite happens.
2921
2922 You can use @samp{#else} with @samp{#ifdef} and @samp{#ifndef}, too.
2923
2924 @node Elif
2925 @subsection Elif
2926
2927 @findex #elif
2928 One common case of nested conditionals is used to check for more than two
2929 possible alternatives. For example, you might have
2930
2931 @example
2932 #if X == 1
2933 @dots{}
2934 #else /* X != 1 */
2935 #if X == 2
2936 @dots{}
2937 #else /* X != 2 */
2938 @dots{}
2939 #endif /* X != 2 */
2940 #endif /* X != 1 */
2941 @end example
2942
2943 Another conditional directive, @samp{#elif}, allows this to be
2944 abbreviated as follows:
2945
2946 @example
2947 #if X == 1
2948 @dots{}
2949 #elif X == 2
2950 @dots{}
2951 #else /* X != 2 and X != 1*/
2952 @dots{}
2953 #endif /* X != 2 and X != 1*/
2954 @end example
2955
2956 @samp{#elif} stands for ``else if''. Like @samp{#else}, it goes in the
2957 middle of a conditional group and subdivides it; it does not require a
2958 matching @samp{#endif} of its own. Like @samp{#if}, the @samp{#elif}
2959 directive includes an expression to be tested. The text following the
2960 @samp{#elif} is processed only if the original @samp{#if}-condition
2961 failed and the @samp{#elif} condition succeeds.
2962
2963 More than one @samp{#elif} can go in the same conditional group. Then
2964 the text after each @samp{#elif} is processed only if the @samp{#elif}
2965 condition succeeds after the original @samp{#if} and all previous
2966 @samp{#elif} directives within it have failed.
2967
2968 @samp{#else} is allowed after any number of @samp{#elif} directives, but
2969 @samp{#elif} may not follow @samp{#else}.
2970
2971 @node Deleted Code
2972 @section Deleted Code
2973 @cindex commenting out code
2974
2975 If you replace or delete a part of the program but want to keep the old
2976 code around for future reference, you often cannot simply comment it
2977 out. Block comments do not nest, so the first comment inside the old
2978 code will end the commenting-out. The probable result is a flood of
2979 syntax errors.
2980
2981 One way to avoid this problem is to use an always-false conditional
2982 instead. For instance, put @code{#if 0} before the deleted code and
2983 @code{#endif} after it. This works even if the code being turned
2984 off contains conditionals, but they must be entire conditionals
2985 (balanced @samp{#if} and @samp{#endif}).
2986
2987 Some people use @code{#ifdef notdef} instead. This is risky, because
2988 @code{notdef} might be accidentally defined as a macro, and then the
2989 conditional would succeed. @code{#if 0} can be counted on to fail.
2990
2991 Do not use @code{#if 0} for comments which are not C code. Use a real
2992 comment, instead. The interior of @code{#if 0} must consist of complete
2993 tokens; in particular, single-quote characters must balance. Comments
2994 often contain unbalanced single-quote characters (known in English as
2995 apostrophes). These confuse @code{#if 0}. They don't confuse
2996 @samp{/*}.
2997
2998 @node Diagnostics
2999 @chapter Diagnostics
3000 @cindex diagnostic
3001 @cindex reporting errors
3002 @cindex reporting warnings
3003
3004 @findex #error
3005 The directive @samp{#error} causes the preprocessor to report a fatal
3006 error. The tokens forming the rest of the line following @samp{#error}
3007 are used as the error message.
3008
3009 You would use @samp{#error} inside of a conditional that detects a
3010 combination of parameters which you know the program does not properly
3011 support. For example, if you know that the program will not run
3012 properly on a VAX, you might write
3013
3014 @example
3015 @group
3016 #ifdef __vax__
3017 #error "Won't work on VAXen. See comments at get_last_object."
3018 #endif
3019 @end group
3020 @end example
3021
3022 If you have several configuration parameters that must be set up by
3023 the installation in a consistent way, you can use conditionals to detect
3024 an inconsistency and report it with @samp{#error}. For example,
3025
3026 @example
3027 #if !defined(UNALIGNED_INT_ASM_OP) && defined(DWARF2_DEBUGGING_INFO)
3028 #error "DWARF2_DEBUGGING_INFO requires UNALIGNED_INT_ASM_OP."
3029 #endif
3030 @end example
3031
3032 @findex #warning
3033 The directive @samp{#warning} is like @samp{#error}, but causes the
3034 preprocessor to issue a warning and continue preprocessing. The tokens
3035 following @samp{#warning} are used as the warning message.
3036
3037 You might use @samp{#warning} in obsolete header files, with a message
3038 directing the user to the header file which should be used instead.
3039
3040 Neither @samp{#error} nor @samp{#warning} macro-expands its argument.
3041 Internal whitespace sequences are each replaced with a single space.
3042 The line must consist of complete tokens. It is wisest to make the
3043 argument of these directives be a single string constant; this avoids
3044 problems with apostrophes and the like.
3045
3046 @node Line Control
3047 @chapter Line Control
3048 @cindex line control
3049
3050 The C preprocessor informs the C compiler of the location in your source
3051 code where each token came from. Presently, this is just the file name
3052 and line number. All the tokens resulting from macro expansion are
3053 reported as having appeared on the line of the source file where the
3054 outermost macro was used. We intend to be more accurate in the future.
3055
3056 If you write a program which generates source code, such as the
3057 @command{bison} parser generator, you may want to adjust the preprocessor's
3058 notion of the current file name and line number by hand. Parts of the
3059 output from @command{bison} are generated from scratch, other parts come
3060 from a standard parser file. The rest are copied verbatim from
3061 @command{bison}'s input. You would like compiler error messages and
3062 symbolic debuggers to be able to refer to @code{bison}'s input file.
3063
3064 @findex #line
3065 @command{bison} or any such program can arrange this by writing
3066 @samp{#line} directives into the output file. @samp{#line} is a
3067 directive that specifies the original line number and source file name
3068 for subsequent input in the current preprocessor input file.
3069 @samp{#line} has three variants:
3070
3071 @table @code
3072 @item #line @var{linenum}
3073 @var{linenum} is a non-negative decimal integer constant. It specifies
3074 the line number which should be reported for the following line of
3075 input. Subsequent lines are counted from @var{linenum}.
3076
3077 @item #line @var{linenum} @var{filename}
3078 @var{linenum} is the same as for the first form, and has the same
3079 effect. In addition, @var{filename} is a string constant. The
3080 following line and all subsequent lines are reported to come from the
3081 file it specifies, until something else happens to change that.
3082
3083 @item #line @var{anything else}
3084 @var{anything else} is checked for macro calls, which are expanded.
3085 The result should match one of the above two forms.
3086 @end table
3087
3088 @samp{#line} directives alter the results of the @code{__FILE__} and
3089 @code{__LINE__} predefined macros from that point on. @xref{Standard
3090 Predefined Macros}. They do not have any effect on @samp{#include}'s
3091 idea of the directory containing the current file. This is a change
3092 from GCC 2.95. Previously, a file reading
3093
3094 @smallexample
3095 #line 1 "../src/gram.y"
3096 #include "gram.h"
3097 @end smallexample
3098
3099 would search for @file{gram.h} in @file{../src}, then the @option{-I}
3100 chain; the directory containing the physical source file would not be
3101 searched. In GCC 3.0 and later, the @samp{#include} is not affected by
3102 the presence of a @samp{#line} referring to a different directory.
3103
3104 We made this change because the old behavior caused problems when
3105 generated source files were transported between machines. For instance,
3106 it is common practice to ship generated parsers with a source release,
3107 so that people building the distribution do not need to have yacc or
3108 Bison installed. These files frequently have @samp{#line} directives
3109 referring to the directory tree of the system where the distribution was
3110 created. If GCC tries to search for headers in those directories, the
3111 build is likely to fail.
3112
3113 The new behavior can cause failures too, if the generated file is not
3114 in the same directory as its source and it attempts to include a header
3115 which would be visible searching from the directory containing the
3116 source file. However, this problem is easily solved with an additional
3117 @option{-I} switch on the command line. The failures caused by the old
3118 semantics could sometimes be corrected only by editing the generated
3119 files, which is difficult and error-prone.
3120
3121 @node Pragmas
3122 @chapter Pragmas
3123
3124 The @samp{#pragma} directive is the method specified by the C standard
3125 for providing additional information to the compiler, beyond what is
3126 conveyed in the language itself. Three forms of this directive
3127 (commonly known as @dfn{pragmas}) are specified by the 1999 C standard.
3128 A C compiler is free to attach any meaning it likes to other pragmas.
3129
3130 GCC has historically preferred to use extensions to the syntax of the
3131 language, such as @code{__attribute__}, for this purpose. However, GCC
3132 does define a few pragmas of its own. These mostly have effects on the
3133 entire translation unit or source file.
3134
3135 In GCC version 3, all GNU-defined, supported pragmas have been given a
3136 @code{GCC} prefix. This is in line with the @code{STDC} prefix on all
3137 pragmas defined by C99. For backward compatibility, pragmas which were
3138 recognized by previous versions are still recognized without the
3139 @code{GCC} prefix, but that usage is deprecated. Some older pragmas are
3140 deprecated in their entirety. They are not recognized with the
3141 @code{GCC} prefix. @xref{Obsolete Features}.
3142
3143 @cindex @code{_Pragma}
3144 C99 introduces the @code{@w{_Pragma}} operator. This feature addresses a
3145 major problem with @samp{#pragma}: being a directive, it cannot be
3146 produced as the result of macro expansion. @code{@w{_Pragma}} is an
3147 operator, much like @code{sizeof} or @code{defined}, and can be embedded
3148 in a macro.
3149
3150 Its syntax is @code{@w{_Pragma (@var{string-literal})}}, where
3151 @var{string-literal} can be either a normal or wide-character string
3152 literal. It is destringized, by replacing all @samp{\\} with a single
3153 @samp{\} and all @samp{\"} with a @samp{"}. The result is then
3154 processed as if it had appeared as the right hand side of a
3155 @samp{#pragma} directive. For example,
3156
3157 @example
3158 _Pragma ("GCC dependency \"parse.y\"")
3159 @end example
3160
3161 @noindent
3162 has the same effect as @code{#pragma GCC dependency "parse.y"}. The
3163 same effect could be achieved using macros, for example
3164
3165 @example
3166 #define DO_PRAGMA(x) _Pragma (#x)
3167 DO_PRAGMA (GCC dependency "parse.y")
3168 @end example
3169
3170 The standard is unclear on where a @code{_Pragma} operator can appear.
3171 The preprocessor does not accept it within a preprocessing conditional
3172 directive like @samp{#if}. To be safe, you are probably best keeping it
3173 out of directives other than @samp{#define}, and putting it on a line of
3174 its own.
3175
3176 This manual documents the pragmas which are meaningful to the
3177 preprocessor itself. Other pragmas are meaningful to the C or C++
3178 compilers. They are documented in the GCC manual.
3179
3180 @ftable @code
3181 @item #pragma GCC dependency
3182 @code{#pragma GCC dependency} allows you to check the relative dates of
3183 the current file and another file. If the other file is more recent than
3184 the current file, a warning is issued. This is useful if the current
3185 file is derived from the other file, and should be regenerated. The
3186 other file is searched for using the normal include search path.
3187 Optional trailing text can be used to give more information in the
3188 warning message.
3189
3190 @example
3191 #pragma GCC dependency "parse.y"
3192 #pragma GCC dependency "/usr/include/time.h" rerun fixincludes
3193 @end example
3194
3195 @item #pragma GCC poison
3196 Sometimes, there is an identifier that you want to remove completely
3197 from your program, and make sure that it never creeps back in. To
3198 enforce this, you can @dfn{poison} the identifier with this pragma.
3199 @code{#pragma GCC poison} is followed by a list of identifiers to
3200 poison. If any of those identifiers appears anywhere in the source
3201 after the directive, it is a hard error. For example,
3202
3203 @example
3204 #pragma GCC poison printf sprintf fprintf
3205 sprintf(some_string, "hello");
3206 @end example
3207
3208 @noindent
3209 will produce an error.
3210
3211 If a poisoned identifier appears as part of the expansion of a macro
3212 which was defined before the identifier was poisoned, it will @emph{not}
3213 cause an error. This lets you poison an identifier without worrying
3214 about system headers defining macros that use it.
3215
3216 For example,
3217
3218 @example
3219 #define strrchr rindex
3220 #pragma GCC poison rindex
3221 strrchr(some_string, 'h');
3222 @end example
3223
3224 @noindent
3225 will not produce an error.
3226
3227 @item #pragma GCC system_header
3228 This pragma takes no arguments. It causes the rest of the code in the
3229 current file to be treated as if it came from a system header.
3230 @xref{System Headers}.
3231
3232 @end ftable
3233
3234 @node Other Directives
3235 @chapter Other Directives
3236
3237 @findex #ident
3238 The @samp{#ident} directive takes one argument, a string constant. On
3239 some systems, that string constant is copied into a special segment of
3240 the object file. On other systems, the directive is ignored.
3241
3242 This directive is not part of the C standard, but it is not an official
3243 GNU extension either. We believe it came from System V@.
3244
3245 @findex #sccs
3246 The @samp{#sccs} directive is recognized on some systems, because it
3247 appears in their header files. It is a very old, obscure, extension
3248 which we did not invent, and we have been unable to find any
3249 documentation of what it should do, so GCC simply ignores it.
3250
3251 @cindex null directive
3252 The @dfn{null directive} consists of a @samp{#} followed by a newline,
3253 with only whitespace (including comments) in between. A null directive
3254 is understood as a preprocessing directive but has no effect on the
3255 preprocessor output. The primary significance of the existence of the
3256 null directive is that an input line consisting of just a @samp{#} will
3257 produce no output, rather than a line of output containing just a
3258 @samp{#}. Supposedly some old C programs contain such lines.
3259
3260 @node Preprocessor Output
3261 @chapter Preprocessor Output
3262
3263 When the C preprocessor is used with the C, C++, or Objective-C
3264 compilers, it is integrated into the compiler and communicates a stream
3265 of binary tokens directly to the compiler's parser. However, it can
3266 also be used in the more conventional standalone mode, where it produces
3267 textual output.
3268 @c FIXME: Document the library interface.
3269
3270 @cindex output format
3271 The output from the C preprocessor looks much like the input, except
3272 that all preprocessing directive lines have been replaced with blank
3273 lines and all comments with spaces. Long runs of blank lines are
3274 discarded.
3275
3276 The ISO standard specifies that it is implementation defined whether a
3277 preprocessor preserves whitespace between tokens, or replaces it with
3278 e.g.@: a single space. In GNU CPP, whitespace between tokens is collapsed
3279 to become a single space, with the exception that the first token on a
3280 non-directive line is preceded with sufficient spaces that it appears in
3281 the same column in the preprocessed output that it appeared in the
3282 original source file. This is so the output is easy to read.
3283 @xref{Differences from previous versions}. CPP does not insert any
3284 whitespace where there was none in the original source, except where
3285 necessary to prevent an accidental token paste.
3286
3287 @cindex linemarkers
3288 Source file name and line number information is conveyed by lines
3289 of the form
3290
3291 @example
3292 # @var{linenum} @var{filename} @var{flags}
3293 @end example
3294
3295 @noindent
3296 These are called @dfn{linemarkers}. They are inserted as needed into
3297 the output (but never within a string or character constant). They mean
3298 that the following line originated in file @var{filename} at line
3299 @var{linenum}.
3300
3301 After the file name comes zero or more flags, which are @samp{1},
3302 @samp{2}, @samp{3}, or @samp{4}. If there are multiple flags, spaces
3303 separate them. Here is what the flags mean:
3304
3305 @table @samp
3306 @item 1
3307 This indicates the start of a new file.
3308 @item 2
3309 This indicates returning to a file (after having included another file).
3310 @item 3
3311 This indicates that the following text comes from a system header file,
3312 so certain warnings should be suppressed.
3313 @item 4
3314 This indicates that the following text should be treated as being
3315 wrapped in an implicit @code{extern "C"} block.
3316 @c maybe cross reference NO_IMPLICIT_EXTERN_C
3317 @end table
3318
3319 As an extension, the preprocessor accepts linemarkers in non-assembler
3320 input files. They are treated like the corresponding @samp{#line}
3321 directive, (@pxref{Line Control}), except that trailing flags are
3322 permitted, and are interpreted with the meanings described above. If
3323 multiple flags are given, they must be in ascending order.
3324
3325 Some directives may be duplicated in the output of the preprocessor.
3326 These are @samp{#ident} (always), @samp{#pragma} (only if the
3327 preprocessor does not handle the pragma itself), and @samp{#define} and
3328 @samp{#undef} (with certain debugging options). If this happens, the
3329 @samp{#} of the directive will always be in the first column, and there
3330 will be no space between the @samp{#} and the directive name. If macro
3331 expansion happens to generate tokens which might be mistaken for a
3332 duplicated directive, a space will be inserted between the @samp{#} and
3333 the directive name.
3334
3335 @node Traditional Mode
3336 @chapter Traditional Mode
3337
3338 Traditional (pre-standard) C preprocessing is rather different from
3339 the preprocessing specified by the standard. When GCC is given the
3340 @option{-traditional} option, it attempts to emulate a traditional
3341 preprocessor. We do not guarantee that GCC's behavior under
3342 @option{-traditional} matches any pre-standard preprocessor exactly.
3343
3344 Traditional mode exists only for backward compatibility. We have no
3345 plans to augment it in any way nor will we change it except to fix
3346 catastrophic bugs. As of GCC 3.2, traditional mode is not supported for
3347 compilation, only preprocessing.
3348
3349 This is a list of the differences. It may not be complete, and may not
3350 correspond exactly to the behavior of either GCC or a true traditional
3351 preprocessor.
3352
3353 @itemize @bullet
3354 @item
3355 Traditional macro expansion pays no attention to single-quote or
3356 double-quote characters; macro argument symbols are replaced by the
3357 argument values even when they appear within apparent string or
3358 character constants.
3359
3360 @item
3361 Traditionally, it is permissible for a macro expansion to end in the
3362 middle of a string or character constant. The constant continues into
3363 the text surrounding the macro call.
3364
3365 @item
3366 However, the end of the line terminates a string or character constant,
3367 with no error. (This is a kluge. Traditional mode is commonly used to
3368 preprocess things which are not C, and have a different comment syntax.
3369 Single apostrophes often appear in comments. This kluge prevents the
3370 traditional preprocessor from issuing errors on such comments.)
3371
3372 @item
3373 Preprocessing directives are recognized in traditional C only when their
3374 leading @samp{#} appears in the first column. There can be no
3375 whitespace between the beginning of the line and the @samp{#}.
3376
3377 @item
3378 In traditional C, a comment is equivalent to no text at all. (In ISO
3379 C, a comment counts as whitespace.) It can be used sort of the same way
3380 that @samp{##} is used in ISO C, to paste macro arguments together.
3381
3382 @item
3383 Traditional C does not have the concept of a preprocessing number.
3384
3385 @item
3386 A macro is not suppressed within its own definition, in traditional C@.
3387 Thus, any macro that is used recursively inevitably causes an error.
3388
3389 @item
3390 The @samp{#} and @samp{##} operators are not available in traditional
3391 C@.
3392
3393 @item
3394 In traditional C, the text at the end of a macro expansion can run
3395 together with the text after the macro call, to produce a single token.
3396 This is impossible in ISO C@.
3397
3398 @item
3399 None of the GNU extensions to the preprocessor are available in
3400 traditional mode, with the exception of a partial implementation of
3401 assertions, and those may be removed in the future.
3402
3403 @item
3404 A true traditional C preprocessor does not recognize @samp{#elif},
3405 @samp{#error}, or @samp{#pragma}. GCC supports @samp{#elif} and
3406 @samp{#error} even in traditional mode, but not @samp{#pragma}.
3407
3408 @item
3409 Traditional mode is text-based, not token-based, and comments are
3410 stripped after macro expansion. Therefore, @samp{/**/} can be used to
3411 paste tokens together provided that there is no whitespace between it
3412 and the tokens to be pasted.
3413
3414 @item
3415 Traditional mode preserves the amount and form of whitespace provided by
3416 the user. Hard tabs remain hard tabs. This can be useful, e.g.@: if you
3417 are preprocessing a Makefile (which we do not encourage).
3418 @end itemize
3419
3420 You can request warnings about features that did not exist, or worked
3421 differently, in traditional C with the @option{-Wtraditional} option.
3422 This works only if you do @emph{not} specify @option{-traditional}. GCC
3423 does not warn about features of ISO C which you must use when you are
3424 using a conforming compiler, such as the @samp{#} and @samp{##}
3425 operators.
3426
3427 Presently @option{-Wtraditional} warns about:
3428
3429 @itemize @bullet
3430 @item
3431 Macro parameters that appear within string literals in the macro body.
3432 In traditional C macro replacement takes place within string literals,
3433 but does not in ISO C@.
3434
3435 @item
3436 In traditional C, some preprocessor directives did not exist.
3437 Traditional preprocessors would only consider a line to be a directive
3438 if the @samp{#} appeared in column 1 on the line. Therefore
3439 @option{-Wtraditional} warns about directives that traditional C
3440 understands but would ignore because the @samp{#} does not appear as the
3441 first character on the line. It also suggests you hide directives like
3442 @samp{#pragma} not understood by traditional C by indenting them. Some
3443 traditional implementations would not recognize @samp{#elif}, so it
3444 suggests avoiding it altogether.
3445
3446 @item
3447 A function-like macro that appears without an argument list. In
3448 traditional C this was an error. In ISO C it merely means that the
3449 macro is not expanded.
3450
3451 @item
3452 The unary plus operator. This did not exist in traditional C@.
3453
3454 @item
3455 The @samp{U} and @samp{LL} integer constant suffixes, which were not
3456 available in traditional C@. (Traditional C does support the @samp{L}
3457 suffix for simple long integer constants.) You are not warned about
3458 uses of these suffixes in macros defined in system headers. For
3459 instance, @code{UINT_MAX} may well be defined as @code{4294967295U}, but
3460 you will not be warned if you use @code{UINT_MAX}.
3461
3462 You can usually avoid the warning, and the related warning about
3463 constants which are so large that they are unsigned, by writing the
3464 integer constant in question in hexadecimal, with no U suffix. Take
3465 care, though, because this gives the wrong result in exotic cases.
3466 @end itemize
3467
3468 @node Implementation Details
3469 @chapter Implementation Details
3470
3471 Here we document details of how the preprocessor's implementation
3472 affects its user-visible behavior. You should try to avoid undue
3473 reliance on behavior described here, as it is possible that it will
3474 change subtly in future implementations.
3475
3476 Also documented here are obsolete features and changes from previous
3477 versions of GNU CPP@.
3478
3479 @menu
3480 * Implementation-defined behavior::
3481 * Implementation limits::
3482 * Obsolete Features::
3483 * Differences from previous versions::
3484 @end menu
3485
3486 @node Implementation-defined behavior
3487 @section Implementation-defined behavior
3488 @cindex implementation-defined behavior
3489
3490 This is how GNU CPP behaves in all the cases which the C standard
3491 describes as @dfn{implementation-defined}. This term means that the
3492 implementation is free to do what it likes, but must document its choice
3493 and stick to it.
3494 @c FIXME: Check the C++ standard for more implementation-defined stuff.
3495
3496 @itemize @bullet
3497 @need 1000
3498 @item The mapping of physical source file multi-byte characters to the
3499 execution character set.
3500
3501 Currently, GNU cpp only supports character sets that are strict supersets
3502 of ASCII, and performs no translation of characters.
3503
3504 @item Non-empty sequences of whitespace characters.
3505
3506 In textual output, each whitespace sequence is collapsed to a single
3507 space. For aesthetic reasons, the first token on each non-directive
3508 line of output is preceded with sufficient spaces that it appears in the
3509 same column as it did in the original source file.
3510
3511 @item The numeric value of character constants in preprocessor expressions.
3512
3513 The preprocessor and compiler interpret character constants in the same
3514 way; escape sequences such as @samp{\a} are given the values they would
3515 have on the target machine.
3516
3517 Multi-character character constants are interpreted a character at a
3518 time, shifting the previous result left by the number of bits per
3519 character on the host, and adding the new character. For example, 'ab'
3520 on an 8-bit host would be interpreted as @w{'a' * 256 + 'b'}. If there
3521 are more characters in the constant than can fit in the widest native
3522 integer type on the host, usually a @code{long}, the excess characters
3523 are ignored and a diagnostic is given.
3524
3525 @item Source file inclusion.
3526
3527 For a discussion on how the preprocessor locates header files,
3528 @ref{Include Operation}.
3529
3530 @item Interpretation of the filename resulting from a macro-expanded
3531 @samp{#include} directive.
3532
3533 @xref{Computed Includes}.
3534
3535 @item Treatment of a @samp{#pragma} directive that after macro-expansion
3536 results in a standard pragma.
3537
3538 No macro expansion occurs on any @samp{#pragma} directive line, so the
3539 question does not arise.
3540
3541 Note that GCC does not yet implement any of the standard
3542 pragmas.
3543
3544 @end itemize
3545
3546 @node Implementation limits
3547 @section Implementation limits
3548 @cindex implementation limits
3549
3550 GNU CPP has a small number of internal limits. This section lists the
3551 limits which the C standard requires to be no lower than some minimum,
3552 and all the others we are aware of. We intend there to be as few limits
3553 as possible. If you encounter an undocumented or inconvenient limit,
3554 please report that to us as a bug. (See the section on reporting bugs in
3555 the GCC manual.)
3556
3557 Where we say something is limited @dfn{only by available memory}, that
3558 means that internal data structures impose no intrinsic limit, and space
3559 is allocated with @code{malloc} or equivalent. The actual limit will
3560 therefore depend on many things, such as the size of other things
3561 allocated by the compiler at the same time, the amount of memory
3562 consumed by other processes on the same computer, etc.
3563
3564 @itemize @bullet
3565
3566 @item Nesting levels of @samp{#include} files.
3567
3568 We impose an arbitrary limit of 200 levels, to avoid runaway recursion.
3569 The standard requires at least 15 levels.
3570
3571 @item Nesting levels of conditional inclusion.
3572
3573 The C standard mandates this be at least 63. GNU CPP is limited only by
3574 available memory.
3575
3576 @item Levels of parenthesised expressions within a full expression.
3577
3578 The C standard requires this to be at least 63. In preprocessor
3579 conditional expressions, it is limited only by available memory.
3580
3581 @item Significant initial characters in an identifier or macro name.
3582
3583 The preprocessor treats all characters as significant. The C standard
3584 requires only that the first 63 be significant.
3585
3586 @item Number of macros simultaneously defined in a single translation unit.
3587
3588 The standard requires at least 4095 be possible. GNU CPP is limited only
3589 by available memory.
3590
3591 @item Number of parameters in a macro definition and arguments in a macro call.
3592
3593 We allow @code{USHRT_MAX}, which is no smaller than 65,535. The minimum
3594 required by the standard is 127.
3595
3596 @item Number of characters on a logical source line.
3597
3598 The C standard requires a minimum of 4096 be permitted. GNU CPP places
3599 no limits on this, but you may get incorrect column numbers reported in
3600 diagnostics for lines longer than 65,535 characters.
3601
3602 @item Maximum size of a source file.
3603
3604 The standard does not specify any lower limit on the maximum size of a
3605 source file. GNU cpp maps files into memory, so it is limited by the
3606 available address space. This is generally at least two gigabytes.
3607 Depending on the operating system, the size of physical memory may or
3608 may not be a limitation.
3609
3610 @end itemize
3611
3612 @node Obsolete Features
3613 @section Obsolete Features
3614
3615 GNU CPP has a number of features which are present mainly for
3616 compatibility with older programs. We discourage their use in new code.
3617 In some cases, we plan to remove the feature in a future version of GCC@.
3618
3619 @menu
3620 * Assertions::
3621 * Obsolete once-only headers::
3622 * Miscellaneous obsolete features::
3623 @end menu
3624
3625 @node Assertions
3626 @subsection Assertions
3627 @cindex assertions
3628
3629 @dfn{Assertions} are a deprecated alternative to macros in writing
3630 conditionals to test what sort of computer or system the compiled
3631 program will run on. Assertions are usually predefined, but you can
3632 define them with preprocessing directives or command-line options.
3633
3634 Assertions were intended to provide a more systematic way to describe
3635 the compiler's target system. However, in practice they are just as
3636 unpredictable as the system-specific predefined macros. In addition, they
3637 are not part of any standard, and only a few compilers support them.
3638 Therefore, the use of assertions is @strong{less} portable than the use
3639 of system-specific predefined macros. We recommend you do not use them at
3640 all.
3641
3642 @cindex predicates
3643 An assertion looks like this:
3644
3645 @example
3646 #@var{predicate} (@var{answer})
3647 @end example
3648
3649 @noindent
3650 @var{predicate} must be a single identifier. @var{answer} can be any
3651 sequence of tokens; all characters are significant except for leading
3652 and trailing whitespace, and differences in internal whitespace
3653 sequences are ignored. (This is similar to the rules governing macro
3654 redefinition.) Thus, @code{(x + y)} is different from @code{(x+y)} but
3655 equivalent to @code{@w{( x + y )}}. Parentheses do not nest inside an
3656 answer.
3657
3658 @cindex testing predicates
3659 To test an assertion, you write it in an @samp{#if}. For example, this
3660 conditional succeeds if either @code{vax} or @code{ns16000} has been
3661 asserted as an answer for @code{machine}.
3662
3663 @example
3664 #if #machine (vax) || #machine (ns16000)
3665 @end example
3666
3667 @noindent
3668 You can test whether @emph{any} answer is asserted for a predicate by
3669 omitting the answer in the conditional:
3670
3671 @example
3672 #if #machine
3673 @end example
3674
3675 @findex #assert
3676 Assertions are made with the @samp{#assert} directive. Its sole
3677 argument is the assertion to make, without the leading @samp{#} that
3678 identifies assertions in conditionals.
3679
3680 @example
3681 #assert @var{predicate} (@var{answer})
3682 @end example
3683
3684 @noindent
3685 You may make several assertions with the same predicate and different
3686 answers. Subsequent assertions do not override previous ones for the
3687 same predicate. All the answers for any given predicate are
3688 simultaneously true.
3689
3690 @cindex assertions, cancelling
3691 @findex #unassert
3692 Assertions can be cancelled with the @samp{#unassert} directive. It
3693 has the same syntax as @samp{#assert}. In that form it cancels only the
3694 answer which was specified on the @samp{#unassert} line; other answers
3695 for that predicate remain true. You can cancel an entire predicate by
3696 leaving out the answer:
3697
3698 @example
3699 #unassert @var{predicate}
3700 @end example
3701
3702 @noindent
3703 In either form, if no such assertion has been made, @samp{#unassert} has
3704 no effect.
3705
3706 You can also make or cancel assertions using command line options.
3707 @xref{Invocation}.
3708
3709 @node Obsolete once-only headers
3710 @subsection Obsolete once-only headers
3711
3712 GNU CPP supports two more ways of indicating that a header file should be
3713 read only once. Neither one is as portable as a wrapper @samp{#ifndef},
3714 and we recommend you do not use them in new programs.
3715
3716 @findex #import
3717 In the Objective-C language, there is a variant of @samp{#include}
3718 called @samp{#import} which includes a file, but does so at most once.
3719 If you use @samp{#import} instead of @samp{#include}, then you don't
3720 need the conditionals inside the header file to prevent multiple
3721 inclusion of the contents. GCC permits the use of @samp{#import} in C
3722 and C++ as well as Objective-C@. However, it is not in standard C or C++
3723 and should therefore not be used by portable programs.
3724
3725 @samp{#import} is not a well designed feature. It requires the users of
3726 a header file to know that it should only be included once. It is much
3727 better for the header file's implementor to write the file so that users
3728 don't need to know this. Using a wrapper @samp{#ifndef} accomplishes
3729 this goal.
3730
3731 In the present implementation, a single use of @samp{#import} will
3732 prevent the file from ever being read again, by either @samp{#import} or
3733 @samp{#include}. You should not rely on this; do not use both
3734 @samp{#import} and @samp{#include} to refer to the same header file.
3735
3736 Another way to prevent a header file from being included more than once
3737 is with the @samp{#pragma once} directive. If @samp{#pragma once} is
3738 seen when scanning a header file, that file will never be read again, no
3739 matter what.
3740
3741 @samp{#pragma once} does not have the problems that @samp{#import} does,
3742 but it is not recognized by all preprocessors, so you cannot rely on it
3743 in a portable program.
3744
3745 @node Miscellaneous obsolete features
3746 @subsection Miscellaneous obsolete features
3747
3748 Here are a few more obsolete features.
3749
3750 @itemize @bullet
3751 @cindex invalid token paste
3752 @item Attempting to paste two tokens which together do not form a valid
3753 preprocessing token.
3754
3755 The preprocessor currently warns about this and outputs the two tokens
3756 adjacently, which is probably the behavior the programmer intends. It
3757 may not work in future, though.
3758
3759 Most of the time, when you get this warning, you will find that @samp{##}
3760 is being used superstitiously, to guard against whitespace appearing
3761 between two tokens. It is almost always safe to delete the @samp{##}.
3762
3763 @cindex pragma poison
3764 @item @code{#pragma poison}
3765
3766 This is the same as @code{#pragma GCC poison}. The version without the
3767 @code{GCC} prefix is deprecated. @xref{Pragmas}.
3768
3769 @cindex multi-line string constants
3770 @item Multi-line string constants
3771
3772 GCC currently allows a string constant to extend across multiple logical
3773 lines of the source file. This extension is deprecated and will be
3774 removed in a future version of GCC@. Such string constants are already
3775 rejected in all directives apart from @samp{#define}.
3776
3777 Instead, make use of ISO C concatenation of adjacent string literals, or
3778 use @samp{\n} followed by a backslash-newline.
3779
3780 @end itemize
3781
3782 @node Differences from previous versions
3783 @section Differences from previous versions
3784 @cindex differences from previous versions
3785
3786 This section details behavior which has changed from previous versions
3787 of GNU CPP@. We do not plan to change it again in the near future, but
3788 we do not promise not to, either.
3789
3790 The ``previous versions'' discussed here are 2.95 and before. The
3791 behavior of GCC 3.0 is mostly the same as the behavior of the widely
3792 used 2.96 and 2.97 development snapshots. Where there are differences,
3793 they generally represent bugs in the snapshots.
3794
3795 @itemize @bullet
3796
3797 @item Order of evaluation of @samp{#} and @samp{##} operators
3798
3799 The standard does not specify the order of evaluation of a chain of
3800 @samp{##} operators, nor whether @samp{#} is evaluated before, after, or
3801 at the same time as @samp{##}. You should therefore not write any code
3802 which depends on any specific ordering. It is possible to guarantee an
3803 ordering, if you need one, by suitable use of nested macros.
3804
3805 An example of where this might matter is pasting the arguments @samp{1},
3806 @samp{e} and @samp{-2}. This would be fine for left-to-right pasting,
3807 but right-to-left pasting would produce an invalid token @samp{e-2}.
3808
3809 GCC 3.0 evaluates @samp{#} and @samp{##} at the same time and strictly
3810 left to right. Older versions evaluated all @samp{#} operators first,
3811 then all @samp{##} operators, in an unreliable order.
3812
3813 @item The form of whitespace betwen tokens in preprocessor output
3814
3815 @xref{Preprocessor Output}, for the current textual format. This is
3816 also the format used by stringification. Normally, the preprocessor
3817 communicates tokens directly to the compiler's parser, and whitespace
3818 does not come up at all.
3819
3820 Older versions of GCC preserved all whitespace provided by the user and
3821 inserted lots more whitespace of their own, because they could not
3822 accurately predict when extra spaces were needed to prevent accidental
3823 token pasting.
3824
3825 @item Optional argument when invoking rest argument macros
3826
3827 As an extension, GCC permits you to omit the variable arguments entirely
3828 when you use a variable argument macro. This is forbidden by the 1999 C
3829 standard, and will provoke a pedantic warning with GCC 3.0. Previous
3830 versions accepted it silently.
3831
3832 @item @samp{##} swallowing preceding text in rest argument macros
3833
3834 Formerly, in a macro expansion, if @samp{##} appeared before a variable
3835 arguments parameter, and the set of tokens specified for that argument
3836 in the macro invocation was empty, previous versions of GNU CPP would
3837 back up and remove the preceding sequence of non-whitespace characters
3838 (@strong{not} the preceding token). This extension is in direct
3839 conflict with the 1999 C standard and has been drastically pared back.
3840
3841 In the current version of the preprocessor, if @samp{##} appears between
3842 a comma and a variable arguments parameter, and the variable argument is
3843 omitted entirely, the comma will be removed from the expansion. If the
3844 variable argument is empty, or the token before @samp{##} is not a
3845 comma, then @samp{##} behaves as a normal token paste.
3846
3847 @item Traditional mode and GNU extensions
3848
3849 Traditional mode used to be implemented in the same program as normal
3850 preprocessing. Therefore, all the GNU extensions to the preprocessor
3851 were still available in traditional mode. It is now a separate program
3852 and does not implement any of the GNU extensions, except for a partial
3853 implementation of assertions. Even those may be removed in a future
3854 release.
3855
3856 @item @samp{#line} and @samp{#include}
3857
3858 The @samp{#line} directive used to change GCC's notion of the
3859 ``directory containing the current file,'' used by @samp{#include} with
3860 a double-quoted header file name. In 3.0 and later, it does not.
3861 @xref{Line Control}, for further explanation.
3862
3863 @end itemize
3864
3865 @node Invocation
3866 @chapter Invocation
3867 @cindex invocation
3868 @cindex command line
3869
3870 Most often when you use the C preprocessor you will not have to invoke it
3871 explicitly: the C compiler will do so automatically. However, the
3872 preprocessor is sometimes useful on its own. All the options listed
3873 here are also acceptable to the C compiler and have the same meaning,
3874 except that the C compiler has different rules for specifying the output
3875 file.
3876
3877 @strong{Note:} Whether you use the preprocessor by way of @command{gcc}
3878 or @command{cpp}, the @dfn{compiler driver} is run first. This
3879 program's purpose is to translate your command into invocations of the
3880 programs that do the actual work. Their command line interfaces are
3881 similar but not identical to the documented interface, and may change
3882 without notice.
3883
3884 @ignore
3885 @c man begin SYNOPSIS
3886 cpp [@option{-D}@var{macro}[=@var{defn}]@dots{}] [@option{-U}@var{macro}]
3887 [@option{-I}@var{dir}@dots{}] [@option{-W}@var{warn}@dots{}]
3888 [@option{-M}|@option{-MM}] [@option{-MG}] [@option{-MF} @var{filename}]
3889 [@option{-MP}] [@option{-MQ} @var{target}@dots{}] [@option{-MT} @var{target}@dots{}]
3890 [@option{-x} @var{language}] [@option{-std=}@var{standard}]
3891 @var{infile} @var{outfile}
3892
3893 Only the most useful options are listed here; see below for the remainder.
3894 @c man end
3895 @c man begin SEEALSO
3896 gpl(7), gfdl(7), fsf-funding(7),
3897 gcc(1), as(1), ld(1), and the Info entries for @file{cpp}, @file{gcc}, and
3898 @file{binutils}.
3899 @c man end
3900 @end ignore
3901
3902 @c man begin OPTIONS
3903 The C preprocessor expects two file names as arguments, @var{infile} and
3904 @var{outfile}. The preprocessor reads @var{infile} together with any
3905 other files it specifies with @samp{#include}. All the output generated
3906 by the combined input files is written in @var{outfile}.
3907
3908 Either @var{infile} or @var{outfile} may be @option{-}, which as
3909 @var{infile} means to read from standard input and as @var{outfile}
3910 means to write to standard output. Also, if either file is omitted, it
3911 means the same as if @option{-} had been specified for that file.
3912
3913 Unless otherwise noted, or the option ends in @samp{=}, all options
3914 which take an argument may have that argument appear either immediately
3915 after the option, or with a space between option and argument:
3916 @option{-Ifoo} and @option{-I foo} have the same effect.
3917
3918 @cindex grouping options
3919 @cindex options, grouping
3920 Many options have multi-letter names; therefore multiple single-letter
3921 options may @emph{not} be grouped: @option{-dM} is very different from
3922 @w{@samp{-d -M}}.
3923
3924 @cindex options
3925 @table @gcctabopt
3926 @item -D @var{name}
3927 Predefine @var{name} as a macro, with definition @code{1}.
3928
3929 @item -D @var{name}=@var{definition}
3930 Predefine @var{name} as a macro, with definition @var{definition}.
3931 There are no restrictions on the contents of @var{definition}, but if
3932 you are invoking the preprocessor from a shell or shell-like program you
3933 may need to use the shell's quoting syntax to protect characters such as
3934 spaces that have a meaning in the shell syntax. If you use more than
3935 one @option{-D} for the same @var{name}, the rightmost definition takes
3936 effect.
3937
3938 If you wish to define a function-like macro on the command line, write
3939 its argument list with surrounding parentheses before the equals sign
3940 (if any). Parentheses are meaningful to most shells, so you will need
3941 to quote the option. With @command{sh} and @command{csh},
3942 @option{-D'@var{name}(@var{args@dots{}})=@var{definition}'} works.
3943
3944 @item -U @var{name}
3945 Cancel any previous definition of @var{name}, either built in or
3946 provided with a @option{-D} option.
3947
3948 All @option{-imacros @var{file}} and @option{-include @var{file}} options
3949 are processed after all @option{-D} and @option{-U} options.
3950
3951 @item -undef
3952 Do not predefine any system-specific macros. The common predefined
3953 macros remain defined.
3954
3955 @item -I @var{dir}
3956 Add the directory @var{dir} to the list of directories to be searched
3957 for header files. @xref{Search Path}. Directories named by @option{-I}
3958 are searched before the standard system include directories.
3959
3960 It is dangerous to specify a standard system include directory in an
3961 @option{-I} option. This defeats the special treatment of system
3962 headers (@pxref{System Headers}). It can also defeat the repairs to
3963 buggy system headers which GCC makes when it is installed.
3964
3965 @item -o @var{file}
3966 Write output to @var{file}. This is the same as specifying @var{file}
3967 as the second non-option argument to @command{cpp}. @command{gcc} has a
3968 different interpretation of a second non-option argument, so you must
3969 use @option{-o} to specify the output file.
3970
3971 @item -Wall
3972 Turns on all optional warnings which are desirable for normal code. At
3973 present this is @option{-Wcomment} and @option{-Wtrigraphs}. Note that
3974 many of the preprocessor's warnings are on by default and have no
3975 options to control them.
3976
3977 @item -Wcomment
3978 @itemx -Wcomments
3979 Warn whenever a comment-start sequence @samp{/*} appears in a @samp{/*}
3980 comment, or whenever a backslash-newline appears in a @samp{//} comment.
3981 (Both forms have the same effect.)
3982
3983 @item -Wtrigraphs
3984 Warn if any trigraphs are encountered. This option used to take effect
3985 only if @option{-trigraphs} was also specified, but now works
3986 independently. Warnings are not given for trigraphs within comments, as
3987 they do not affect the meaning of the program.
3988
3989 @item -Wtraditional
3990 Warn about certain constructs that behave differently in traditional and
3991 ISO C@. Also warn about ISO C constructs that have no traditional C
3992 equivalent, and problematic constructs which should be avoided.
3993 @xref{Traditional Mode}.
3994
3995 @item -Wimport
3996 Warn the first time @samp{#import} is used.
3997
3998 @item -Wundef
3999 Warn whenever an identifier which is not a macro is encountered in an
4000 @samp{#if} directive, outside of @samp{defined}. Such identifiers are
4001 replaced with zero.
4002
4003 @item -Werror
4004 Make all warnings into hard errors. Source code which triggers warnings
4005 will be rejected.
4006
4007 @item -Wsystem-headers
4008 Issue warnings for code in system headers. These are normally unhelpful
4009 in finding bugs in your own code, therefore suppressed. If you are
4010 responsible for the system library, you may want to see them.
4011
4012 @item -w
4013 Suppress all warnings, including those which GNU CPP issues by default.
4014
4015 @item -pedantic
4016 Issue all the mandatory diagnostics listed in the C standard. Some of
4017 them are left out by default, since they trigger frequently on harmless
4018 code.
4019
4020 @item -pedantic-errors
4021 Issue all the mandatory diagnostics, and make all mandatory diagnostics
4022 into errors. This includes mandatory diagnostics that GCC issues
4023 without @samp{-pedantic} but treats as warnings.
4024
4025 @item -M
4026 Instead of outputting the result of preprocessing, output a rule
4027 suitable for @command{make} describing the dependencies of the main
4028 source file. The preprocessor outputs one @command{make} rule containing
4029 the object file name for that source file, a colon, and the names of all
4030 the included files, including those coming from @option{-include} or
4031 @option{-imacros} command line options.
4032
4033 Unless specified explicitly (with @option{-MT} or @option{-MQ}), the
4034 object file name consists of the basename of the source file with any
4035 suffix replaced with object file suffix. If there are many included
4036 files then the rule is split into several lines using @samp{\}-newline.
4037 The rule has no commands.
4038
4039 Passing @option{-M} to the driver implies @option{-E}.
4040
4041 @item -MM
4042 Like @option{-M} but do not mention header files that are found in
4043 system header directories, nor header files that are included,
4044 directly or indirectly, from such a header.
4045
4046 This implies that the choice of angle brackets or double quotes in an
4047 @samp{#include} directive does not in itself determine whether that
4048 header will appear in @option{-MM} dependency output. This is a
4049 slight change in semantics from GCC versions 3.0 and earlier.
4050
4051 @item -MF @var{file}
4052 @anchor{-MF}
4053 When used with @option{-M} or @option{-MM}, specifies a
4054 file to write the dependencies to. If no @option{-MF} switch is given
4055 the preprocessor sends the rules to the same place it would have sent
4056 preprocessed output.
4057
4058 When used with the driver options @option{-MD} or @option{-MMD},
4059 @option{-MF} overrides the default dependency output file.
4060
4061 @item -MG
4062 When used with @option{-M} or @option{-MM}, @option{-MG} says to treat missing
4063 header files as generated files and assume they live in the same
4064 directory as the source file. It suppresses preprocessed output, as a
4065 missing header file is ordinarily an error.
4066
4067 This feature is used in automatic updating of makefiles.
4068
4069 @item -MP
4070 This option instructs CPP to add a phony target for each dependency
4071 other than the main file, causing each to depend on nothing. These
4072 dummy rules work around errors @command{make} gives if you remove header
4073 files without updating the @file{Makefile} to match.
4074
4075 This is typical output:
4076
4077 @example
4078 test.o: test.c test.h
4079
4080 test.h:
4081 @end example
4082
4083 @item -MT @var{target}
4084
4085 Change the target of the rule emitted by dependency generation. By
4086 default CPP takes the name of the main input file, including any path,
4087 deletes any file suffix such as @samp{.c}, and appends the platform's
4088 usual object suffix. The result is the target.
4089
4090 An @option{-MT} option will set the target to be exactly the string you
4091 specify. If you want multiple targets, you can specify them as a single
4092 argument to @option{-MT}, or use multiple @option{-MT} options.
4093
4094 For example, @option{@w{-MT '$(objpfx)foo.o'}} might give
4095
4096 @example
4097 $(objpfx)foo.o: foo.c
4098 @end example
4099
4100 @item -MQ @var{target}
4101
4102 Same as @option{-MT}, but it quotes any characters which are special to
4103 Make. @option{@w{-MQ '$(objpfx)foo.o'}} gives
4104
4105 @example
4106 $$(objpfx)foo.o: foo.c
4107 @end example
4108
4109 The default target is automatically quoted, as if it were given with
4110 @option{-MQ}.
4111
4112 @item -MD
4113 @option{-MD} is equivalent to @option{-M -MF @var{file}}, except that
4114 @option{-E} is not implied. The driver determines @var{file} based on
4115 whether an @option{-o} option is given. If it is, the driver uses its
4116 argument but with a suffix of @file{.d}, otherwise it take the
4117 basename of the input file and applies a @file{.d} suffix.
4118
4119 If @option{-MD} is used in conjunction with @option{-E}, any
4120 @option{-o} switch is understood to specify the dependency output file
4121 (but @pxref{-MF}), but if used without @option{-E}, each @option{-o}
4122 is understood to specify a target object file.
4123
4124 Since @option{-E} is not implied, @option{-MD} can be used to generate
4125 a dependency output file as a side-effect of the compilation process.
4126
4127 @item -MMD
4128 Like @option{-MD} except mention only user header files, not system
4129 -header files.
4130
4131 @item -x c
4132 @itemx -x c++
4133 @itemx -x objective-c
4134 @itemx -x assembler-with-cpp
4135 Specify the source language: C, C++, Objective-C, or assembly. This has
4136 nothing to do with standards conformance or extensions; it merely
4137 selects which base syntax to expect. If you give none of these options,
4138 cpp will deduce the language from the extension of the source file:
4139 @samp{.c}, @samp{.cc}, @samp{.m}, or @samp{.S}. Some other common
4140 extensions for C++ and assembly are also recognized. If cpp does not
4141 recognize the extension, it will treat the file as C; this is the most
4142 generic mode.
4143
4144 @strong{Note:} Previous versions of cpp accepted a @option{-lang} option
4145 which selected both the language and the standards conformance level.
4146 This option has been removed, because it conflicts with the @option{-l}
4147 option.
4148
4149 @item -std=@var{standard}
4150 @itemx -ansi
4151 Specify the standard to which the code should conform. Currently cpp
4152 only knows about the standards for C; other language standards will be
4153 added in the future.
4154
4155 @var{standard}
4156 may be one of:
4157 @table @code
4158 @item iso9899:1990
4159 @itemx c89
4160 The ISO C standard from 1990. @samp{c89} is the customary shorthand for
4161 this version of the standard.
4162
4163 The @option{-ansi} option is equivalent to @option{-std=c89}.
4164
4165 @item iso9899:199409
4166 The 1990 C standard, as amended in 1994.
4167
4168 @item iso9899:1999
4169 @itemx c99
4170 @itemx iso9899:199x
4171 @itemx c9x
4172 The revised ISO C standard, published in December 1999. Before
4173 publication, this was known as C9X@.
4174
4175 @item gnu89
4176 The 1990 C standard plus GNU extensions. This is the default.
4177
4178 @item gnu99
4179 @itemx gnu9x
4180 The 1999 C standard plus GNU extensions.
4181 @end table
4182
4183 @item -I-
4184 Split the include path. Any directories specified with @option{-I}
4185 options before @option{-I-} are searched only for headers requested with
4186 @code{@w{#include "@var{file}"}}; they are not searched for
4187 @code{@w{#include <@var{file}>}}. If additional directories are
4188 specified with @option{-I} options after the @option{-I-}, those
4189 directories are searched for all @samp{#include} directives.
4190
4191 In addition, @option{-I-} inhibits the use of the directory of the current
4192 file directory as the first search directory for @code{@w{#include
4193 "@var{file}"}}. @xref{Search Path}.
4194
4195 @item -nostdinc
4196 Do not search the standard system directories for header files.
4197 Only the directories you have specified with @option{-I} options
4198 (and the directory of the current file, if appropriate) are searched.
4199
4200 @item -nostdinc++
4201 Do not search for header files in the C++-specific standard directories,
4202 but do still search the other standard directories. (This option is
4203 used when building the C++ library.)
4204
4205 @item -include @var{file}
4206
4207 Process @var{file} as if @code{#include "file"} appeared as the first
4208 line of the primary source file. However, the first directory searched
4209 for @var{file} is the preprocessor's working directory @emph{instead of}
4210 the directory containing the main source file. If not found there, it
4211 is searched for in the remainder of the @code{#include "@dots{}"} search
4212 chain as normal.
4213
4214 If multiple @option{-include} options are given, the files are included
4215 in the order they appear on the command line.
4216
4217 @item -imacros @var{file}
4218
4219 Exactly like @option{-include}, except that any output produced by
4220 scanning @var{file} is thrown away. Macros it defines remain defined.
4221 This allows you to acquire all the macros from a header without also
4222 processing its declarations.
4223
4224 All files specified by @option{-imacros} are processed before all files
4225 specified by @option{-include}.
4226
4227 @item -idirafter @var{dir}
4228 Search @var{dir} for header files, but do it @emph{after} all
4229 directories specified with @option{-I} and the standard system directories
4230 have been exhausted. @var{dir} is treated as a system include directory.
4231
4232 @item -iprefix @var{prefix}
4233 Specify @var{prefix} as the prefix for subsequent @option{-iwithprefix}
4234 options. If the prefix represents a directory, you should include the
4235 final @samp{/}.
4236
4237 @item -iwithprefix @var{dir}
4238 @itemx -iwithprefixbefore @var{dir}
4239
4240 Append @var{dir} to the prefix specified previously with
4241 @option{-iprefix}, and add the resulting directory to the include search
4242 path. @option{-iwithprefixbefore} puts it in the same place @option{-I}
4243 would; @option{-iwithprefix} puts it where @option{-idirafter} would.
4244
4245 Use of these options is discouraged.
4246
4247 @item -isystem @var{dir}
4248 Search @var{dir} for header files, after all directories specified by
4249 @option{-I} but before the standard system directories. Mark it
4250 as a system directory, so that it gets the same special treatment as
4251 is applied to the standard system directories. @xref{System Headers}.
4252
4253 @item -fpreprocessed
4254 Indicate to the preprocessor that the input file has already been
4255 preprocessed. This suppresses things like macro expansion, trigraph
4256 conversion, escaped newline splicing, and processing of most directives.
4257 The preprocessor still recognizes and removes comments, so that you can
4258 pass a file preprocessed with @option{-C} to the compiler without
4259 problems. In this mode the integrated preprocessor is little more than
4260 a tokenizer for the front ends.
4261
4262 @option{-fpreprocessed} is implicit if the input file has one of the
4263 extensions @samp{.i}, @samp{.ii} or @samp{.mi}. These are the
4264 extensions that GCC uses for preprocessed files created by
4265 @option{-save-temps}.
4266
4267 @item -ftabstop=@var{width}
4268 Set the distance between tab stops. This helps the preprocessor report
4269 correct column numbers in warnings or errors, even if tabs appear on the
4270 line. If the value is less than 1 or greater than 100, the option is
4271 ignored. The default is 8.
4272
4273 @item -fno-show-column
4274 Do not print column numbers in diagnostics. This may be necessary if
4275 diagnostics are being scanned by a program that does not understand the
4276 column numbers, such as @command{dejagnu}.
4277
4278 @item -A @var{predicate}=@var{answer}
4279 Make an assertion with the predicate @var{predicate} and answer
4280 @var{answer}. This form is preferred to the older form @option{-A
4281 @var{predicate}(@var{answer})}, which is still supported, because
4282 it does not use shell special characters. @xref{Assertions}.
4283
4284 @item -A -@var{predicate}=@var{answer}
4285 Cancel an assertion with the predicate @var{predicate} and answer
4286 @var{answer}.
4287
4288 @item -A-
4289 Cancel all predefined assertions and all assertions preceding it on
4290 the command line. Also, undefine all predefined macros and all
4291 macros preceding it on the command line. (This is a historical wart and
4292 may change in the future.)
4293
4294 @item -dCHARS
4295 @var{CHARS} is a sequence of one or more of the following characters,
4296 and must not be preceded by a space. Other characters are interpreted
4297 by the compiler proper, or reserved for future versions of GCC, and so
4298 are silently ignored. If you specify characters whose behavior
4299 conflicts, the result is undefined.
4300
4301 @table @samp
4302 @item M
4303 Instead of the normal output, generate a list of @samp{#define}
4304 directives for all the macros defined during the execution of the
4305 preprocessor, including predefined macros. This gives you a way of
4306 finding out what is predefined in your version of the preprocessor.
4307 Assuming you have no file @file{foo.h}, the command
4308
4309 @example
4310 touch foo.h; cpp -dM foo.h
4311 @end example
4312
4313 @noindent
4314 will show all the predefined macros.
4315
4316 @item D
4317 Like @samp{M} except in two respects: it does @emph{not} include the
4318 predefined macros, and it outputs @emph{both} the @samp{#define}
4319 directives and the result of preprocessing. Both kinds of output go to
4320 the standard output file.
4321
4322 @item N
4323 Like @samp{D}, but emit only the macro names, not their expansions.
4324
4325 @item I
4326 Output @samp{#include} directives in addition to the result of
4327 preprocessing.
4328 @end table
4329
4330 @item -P
4331 Inhibit generation of linemarkers in the output from the preprocessor.
4332 This might be useful when running the preprocessor on something that is
4333 not C code, and will be sent to a program which might be confused by the
4334 linemarkers. @xref{Preprocessor Output}.
4335
4336 @item -C
4337 Do not discard comments. All comments are passed through to the output
4338 file, except for comments in processed directives, which are deleted
4339 along with the directive.
4340
4341 You should be prepared for side effects when using @option{-C}; it
4342 causes the preprocessor to treat comments as tokens in their own right.
4343 For example, comments appearing at the start of what would be a
4344 directive line have the effect of turning that line into an ordinary
4345 source line, since the first token on the line is no longer a @samp{#}.
4346
4347 @item -gcc
4348 Define the macros @sc{__gnuc__}, @sc{__gnuc_minor__} and
4349 @sc{__gnuc_patchlevel__}. These are defined automatically when you use
4350 @command{gcc -E}; you can turn them off in that case with
4351 @option{-no-gcc}.
4352
4353 @item -traditional
4354 Try to imitate the behavior of the old-fashioned C preprocessor, as
4355 opposed to the behavior specified by ISO C@. @xref{Traditional Mode}.
4356
4357 @item -trigraphs
4358 Process trigraph sequences. @xref{Initial processing}.
4359
4360 @item -remap
4361 Enable special code to work around file systems which only permit very
4362 short file names, such as MS-DOS@.
4363
4364 @item -$
4365 Forbid the use of @samp{$} in identifiers. The C standard allows
4366 implementations to define extra characters that can appear in
4367 identifiers. By default GNU CPP permits @samp{$}, a common extension.
4368
4369 @item -h
4370 @itemx --help
4371 @itemx --target-help
4372 Print text describing all the command line options instead of
4373 preprocessing anything.
4374
4375 @item -v
4376 Verbose mode. Print out GNU CPP's version number at the beginning of
4377 execution, and report the final form of the include path.
4378
4379 @item -H
4380 Print the name of each header file used, in addition to other normal
4381 activities. Each name is indented to show how deep in the
4382 @samp{#include} stack it is.
4383
4384 @item -version
4385 @itemx --version
4386 Print out GNU CPP's version number. With one dash, proceed to
4387 preprocess as normal. With two dashes, exit immediately.
4388 @end table
4389 @c man end
4390
4391 @include fdl.texi
4392
4393 @page
4394 @node Index of Directives
4395 @unnumbered Index of Directives
4396 @printindex fn
4397
4398 @node Concept Index
4399 @unnumbered Concept Index
4400 @printindex cp
4401
4402 @bye