cpperror.c (cpp_error): Default to directive_line within directives here.
[platform/upstream/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, 2002
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 @c Create a separate index for command line options.
50 @defcodeindex op
51 @syncodeindex vr op
52
53 @c Used in cppopts.texi and cppenv.texi.
54 @set cppmanual
55
56 @ifinfo
57 @dircategory Programming
58 @direntry
59 * Cpp: (cpp).                  The GNU C preprocessor.
60 @end direntry
61 @end ifinfo
62
63 @titlepage
64 @title The C Preprocessor
65 @subtitle Last revised April 2001
66 @subtitle for GCC version 3
67 @author Richard M. Stallman
68 @author Zachary Weinberg
69 @page
70 @c There is a fill at the bottom of the page, so we need a filll to
71 @c override it.
72 @vskip 0pt plus 1filll
73 @copyrightnotice{}
74 @covertexts{}
75 @end titlepage
76 @contents
77 @page
78
79 @ifnottex
80 @node Top
81 @top
82 The C preprocessor implements the macro language used to transform C,
83 C++, and Objective-C programs before they are compiled.  It can also be
84 useful on its own.
85
86 @menu
87 * Overview::
88 * Header Files::
89 * Macros::
90 * Conditionals::
91 * Diagnostics::
92 * Line Control::
93 * Pragmas::
94 * Other Directives::
95 * Preprocessor Output::
96 * Traditional Mode::
97 * Implementation Details::
98 * Invocation::
99 * Environment Variables::
100 * GNU Free Documentation License::
101 * Index of Directives::
102 * Option Index::
103 * Concept Index::
104
105 @detailmenu
106  --- The Detailed Node Listing ---
107
108 Overview
109
110 * Initial processing::
111 * Tokenization::
112 * The preprocessing language::
113
114 Header Files
115
116 * Include Syntax::
117 * Include Operation::
118 * Search Path::
119 * Once-Only Headers::
120 * Computed Includes::
121 * Wrapper Headers::
122 * System Headers::
123
124 Macros
125
126 * Object-like Macros::
127 * Function-like Macros::
128 * Macro Arguments::
129 * Stringification::
130 * Concatenation::
131 * Variadic Macros::
132 * Predefined Macros::
133 * Undefining and Redefining Macros::
134 * Directives Within Macro Arguments::
135 * Macro Pitfalls::
136
137 Predefined Macros
138
139 * Standard Predefined Macros::
140 * Common Predefined Macros::
141 * System-specific Predefined Macros::
142 * C++ Named Operators::
143
144 Macro Pitfalls
145
146 * Misnesting::
147 * Operator Precedence Problems::
148 * Swallowing the Semicolon::
149 * Duplication of Side Effects::
150 * Self-Referential Macros::
151 * Argument Prescan::
152 * Newlines in Arguments::
153
154 Conditionals
155
156 * Conditional Uses::
157 * Conditional Syntax::
158 * Deleted Code::
159
160 Conditional Syntax
161
162 * Ifdef::
163 * If::
164 * Defined::
165 * Else::
166 * Elif::
167
168 Implementation Details
169
170 * Implementation-defined behavior::
171 * Implementation limits::
172 * Obsolete Features::
173 * Differences from previous versions::
174
175 Obsolete Features
176
177 * Assertions::
178 * Obsolete once-only headers::
179
180 @end detailmenu
181 @end menu
182
183 @copyrightnotice{}
184 @covertexts{}
185 @end ifnottex
186
187 @node Overview
188 @chapter Overview
189 @c man begin DESCRIPTION
190 The C preprocessor, often known as @dfn{cpp}, is a @dfn{macro processor}
191 that is used automatically by the C compiler to transform your program
192 before compilation.  It is called a macro processor because it allows
193 you to define @dfn{macros}, which are brief abbreviations for longer
194 constructs.
195
196 The C preprocessor is intended to be used only with C, C++, and
197 Objective-C source code.  In the past, it has been abused as a general
198 text processor.  It will choke on input which does not obey C's lexical
199 rules.  For example, apostrophes will be interpreted as the beginning of
200 character constants, and cause errors.  Also, you cannot rely on it
201 preserving characteristics of the input which are not significant to
202 C-family languages.  If a Makefile is preprocessed, all the hard tabs
203 will be removed, and the Makefile will not work.
204
205 Having said that, you can often get away with using cpp on things which
206 are not C@.  Other Algol-ish programming languages are often safe
207 (Pascal, Ada, etc.) So is assembly, with caution.  @option{-traditional-cpp}
208 mode preserves more white space, and is otherwise more permissive.  Many
209 of the problems can be avoided by writing C or C++ style comments
210 instead of native language comments, and keeping macros simple.
211
212 Wherever possible, you should use a preprocessor geared to the language
213 you are writing in.  Modern versions of the GNU assembler have macro
214 facilities.  Most high level programming languages have their own
215 conditional compilation and inclusion mechanism.  If all else fails,
216 try a true general text processor, such as GNU M4.
217
218 C preprocessors vary in some details.  This manual discusses the GNU C
219 preprocessor, which provides a small superset of the features of ISO
220 Standard C@.  In its default mode, the GNU C preprocessor does not do a
221 few things required by the standard.  These are features which are
222 rarely, if ever, used, and may cause surprising changes to the meaning
223 of a program which does not expect them.  To get strict ISO Standard C,
224 you should use the @option{-std=c89} or @option{-std=c99} options, depending
225 on which version of the standard you want.  To get all the mandatory
226 diagnostics, you must also use @option{-pedantic}.  @xref{Invocation}.
227
228 This manual describes the behavior of the ISO preprocessor.  To
229 minimize gratuitous differences, where the ISO preprocessor's
230 behavior does not conflict with traditional semantics, the
231 traditional preprocessor should behave the same way.  The various
232 differences that do exist are detailed in the section @ref{Traditional
233 Mode}.
234
235 For clarity, unless noted otherwise, references to @samp{CPP} in this
236 manual refer to GNU CPP.
237 @c man end
238
239 @menu
240 * Initial processing::
241 * Tokenization::
242 * The preprocessing language::
243 @end menu
244
245 @node Initial processing
246 @section Initial processing
247
248 The preprocessor performs a series of textual transformations on its
249 input.  These happen before all other processing.  Conceptually, they
250 happen in a rigid order, and the entire file is run through each
251 transformation before the next one begins.  CPP actually does them
252 all at once, for performance reasons.  These transformations correspond
253 roughly to the first three ``phases of translation'' described in the C
254 standard.
255
256 @enumerate
257 @item
258 @cindex character sets
259 @cindex line endings
260 The input file is read into memory and broken into lines.
261
262 CPP expects its input to be a text file, that is, an unstructured
263 stream of ASCII characters, with some characters indicating the end of a
264 line of text.  Extended ASCII character sets, such as ISO Latin-1 or
265 Unicode encoded in UTF-8, are also acceptable.  Character sets that are
266 not strict supersets of seven-bit ASCII will not work.  We plan to add
267 complete support for international character sets in a future release.
268
269 Different systems use different conventions to indicate the end of a
270 line.  GCC accepts the ASCII control sequences @kbd{LF}, @kbd{@w{CR
271 LF}}, @kbd{CR}, and @kbd{@w{LF CR}} as end-of-line markers.  The first
272 three are the canonical sequences used by Unix, DOS and VMS, and the
273 classic Mac OS (before OSX) respectively.  You may therefore safely copy
274 source code written on any of those systems to a different one and use
275 it without conversion.  (GCC may lose track of the current line number
276 if a file doesn't consistently use one convention, as sometimes happens
277 when it is edited on computers with different conventions that share a
278 network file system.)  @kbd{@w{LF CR}} is included because it has been
279 reported as an end-of-line marker under exotic conditions.
280
281 If the last line of any input file lacks an end-of-line marker, the end
282 of the file is considered to implicitly supply one.  The C standard says
283 that this condition provokes undefined behavior, so GCC will emit a
284 warning message.
285
286 @item
287 @cindex trigraphs
288 @anchor{trigraphs}If trigraphs are enabled, they are replaced by their
289 corresponding single characters.  By default GCC ignores trigraphs,
290 but if you request a strictly conforming mode with the @option{-std}
291 option, or you specify the @option{-trigraphs} option, then it
292 converts them.
293
294 These are nine three-character sequences, all starting with @samp{??},
295 that are defined by ISO C to stand for single characters.  They permit
296 obsolete systems that lack some of C's punctuation to use C@.  For
297 example, @samp{??/} stands for @samp{\}, so @t{'??/n'} is a character
298 constant for a newline.
299
300 Trigraphs are not popular and many compilers implement them incorrectly.
301 Portable code should not rely on trigraphs being either converted or
302 ignored.  If you use the @option{-Wall} or @option{-Wtrigraphs} options,
303 GCC will warn you when a trigraph would change the meaning of your
304 program if it were converted.
305
306 In a string constant, you can prevent a sequence of question marks from
307 being confused with a trigraph by inserting a backslash between the
308 question marks.  @t{"(??\?)"} is the string @samp{(???)}, not
309 @samp{(?]}.  Traditional C compilers do not recognize this idiom.
310
311 The nine trigraphs and their replacements are
312
313 @example
314 Trigraph:       ??(  ??)  ??<  ??>  ??=  ??/  ??'  ??!  ??-
315 Replacement:      [    ]    @{    @}    #    \    ^    |    ~
316 @end example
317
318 @item
319 @cindex continued lines
320 @cindex backslash-newline
321 Continued lines are merged into one long line.
322
323 A continued line is a line which ends with a backslash, @samp{\}.  The
324 backslash is removed and the following line is joined with the current
325 one.  No space is inserted, so you may split a line anywhere, even in
326 the middle of a word.  (It is generally more readable to split lines
327 only at white space.)
328
329 The trailing backslash on a continued line is commonly referred to as a
330 @dfn{backslash-newline}.
331
332 If there is white space between a backslash and the end of a line, that
333 is still a continued line.  However, as this is usually the result of an
334 editing mistake, and many compilers will not accept it as a continued
335 line, GCC will warn you about it.
336
337 @item
338 @cindex comments
339 @cindex line comments
340 @cindex block comments
341 All comments are replaced with single spaces.
342
343 There are two kinds of comments.  @dfn{Block comments} begin with
344 @samp{/*} and continue until the next @samp{*/}.  Block comments do not
345 nest:
346
347 @example
348 /* @r{this is} /* @r{one comment} */ @r{text outside comment}
349 @end example
350
351 @dfn{Line comments} begin with @samp{//} and continue to the end of the
352 current line.  Line comments do not nest either, but it does not matter,
353 because they would end in the same place anyway.
354
355 @example
356 // @r{this is} // @r{one comment}
357 @r{text outside comment}
358 @end example
359 @end enumerate
360
361 It is safe to put line comments inside block comments, or vice versa.
362
363 @example
364 @group
365 /* @r{block comment}
366    // @r{contains line comment}
367    @r{yet more comment}
368  */ @r{outside comment}
369
370 // @r{line comment} /* @r{contains block comment} */
371 @end group
372 @end example
373
374 But beware of commenting out one end of a block comment with a line
375 comment.
376
377 @example
378 @group
379  // @r{l.c.}  /* @r{block comment begins}
380     @r{oops! this isn't a comment anymore} */
381 @end group
382 @end example
383
384 Comments are not recognized within string literals.  @t{@w{"/* blah
385 */"}} is the string constant @samp{@w{/* blah */}}, not an empty string.
386
387 Line comments are not in the 1989 edition of the C standard, but they
388 are recognized by GCC as an extension.  In C++ and in the 1999 edition
389 of the C standard, they are an official part of the language.
390
391 Since these transformations happen before all other processing, you can
392 split a line mechanically with backslash-newline anywhere.  You can
393 comment out the end of a line.  You can continue a line comment onto the
394 next line with backslash-newline.  You can even split @samp{/*},
395 @samp{*/}, and @samp{//} onto multiple lines with backslash-newline.
396 For example:
397
398 @example
399 @group
400 /\
401 *
402 */ # /*
403 */ defi\
404 ne FO\
405 O 10\
406 20
407 @end group
408 @end example
409
410 @noindent
411 is equivalent to @code{@w{#define FOO 1020}}.  All these tricks are
412 extremely confusing and should not be used in code intended to be
413 readable.
414
415 There is no way to prevent a backslash at the end of a line from being
416 interpreted as a backslash-newline.  This cannot affect any correct
417 program, however.
418
419 @node Tokenization
420 @section Tokenization
421
422 @cindex tokens
423 @cindex preprocessing tokens
424 After the textual transformations are finished, the input file is
425 converted into a sequence of @dfn{preprocessing tokens}.  These mostly
426 correspond to the syntactic tokens used by the C compiler, but there are
427 a few differences.  White space separates tokens; it is not itself a
428 token of any kind.  Tokens do not have to be separated by white space,
429 but it is often necessary to avoid ambiguities.
430
431 When faced with a sequence of characters that has more than one possible
432 tokenization, the preprocessor is greedy.  It always makes each token,
433 starting from the left, as big as possible before moving on to the next
434 token.  For instance, @code{a+++++b} is interpreted as
435 @code{@w{a ++ ++ + b}}, not as @code{@w{a ++ + ++ b}}, even though the
436 latter tokenization could be part of a valid C program and the former
437 could not.
438
439 Once the input file is broken into tokens, the token boundaries never
440 change, except when the @samp{##} preprocessing operator is used to paste
441 tokens together.  @xref{Concatenation}.  For example,
442
443 @example
444 @group
445 #define foo() bar
446 foo()baz
447      @expansion{} bar baz
448 @emph{not}
449      @expansion{} barbaz
450 @end group
451 @end example
452
453 The compiler does not re-tokenize the preprocessor's output.  Each
454 preprocessing token becomes one compiler token.
455
456 @cindex identifiers
457 Preprocessing tokens fall into five broad classes: identifiers,
458 preprocessing numbers, string literals, punctuators, and other.  An
459 @dfn{identifier} is the same as an identifier in C: any sequence of
460 letters, digits, or underscores, which begins with a letter or
461 underscore.  Keywords of C have no significance to the preprocessor;
462 they are ordinary identifiers.  You can define a macro whose name is a
463 keyword, for instance.  The only identifier which can be considered a
464 preprocessing keyword is @code{defined}.  @xref{Defined}.
465
466 This is mostly true of other languages which use the C preprocessor.
467 However, a few of the keywords of C++ are significant even in the
468 preprocessor.  @xref{C++ Named Operators}.
469
470 In the 1999 C standard, identifiers may contain letters which are not
471 part of the ``basic source character set,'' at the implementation's
472 discretion (such as accented Latin letters, Greek letters, or Chinese
473 ideograms).  This may be done with an extended character set, or the
474 @samp{\u} and @samp{\U} escape sequences.  GCC does not presently
475 implement either feature in the preprocessor or the compiler.
476
477 As an extension, GCC treats @samp{$} as a letter.  This is for
478 compatibility with some systems, such as VMS, where @samp{$} is commonly
479 used in system-defined function and object names.  @samp{$} is not a
480 letter in strictly conforming mode, or if you specify the @option{-$}
481 option.  @xref{Invocation}.
482
483 @cindex numbers
484 @cindex preprocessing numbers
485 A @dfn{preprocessing number} has a rather bizarre definition.  The
486 category includes all the normal integer and floating point constants
487 one expects of C, but also a number of other things one might not
488 initially recognize as a number.  Formally, preprocessing numbers begin
489 with an optional period, a required decimal digit, and then continue
490 with any sequence of letters, digits, underscores, periods, and
491 exponents.  Exponents are the two-character sequences @samp{e+},
492 @samp{e-}, @samp{E+}, @samp{E-}, @samp{p+}, @samp{p-}, @samp{P+}, and
493 @samp{P-}.  (The exponents that begin with @samp{p} or @samp{P} are new
494 to C99.  They are used for hexadecimal floating-point constants.)
495
496 The purpose of this unusual definition is to isolate the preprocessor
497 from the full complexity of numeric constants.  It does not have to
498 distinguish between lexically valid and invalid floating-point numbers,
499 which is complicated.  The definition also permits you to split an
500 identifier at any position and get exactly two tokens, which can then be
501 pasted back together with the @samp{##} operator.
502
503 It's possible for preprocessing numbers to cause programs to be
504 misinterpreted.  For example, @code{0xE+12} is a preprocessing number
505 which does not translate to any valid numeric constant, therefore a
506 syntax error.  It does not mean @code{@w{0xE + 12}}, which is what you
507 might have intended.
508
509 @cindex string literals
510 @cindex string constants
511 @cindex character constants
512 @cindex header file names
513 @c the @: prevents makeinfo from turning '' into ".
514 @dfn{String literals} are string constants, character constants, and
515 header file names (the argument of @samp{#include}).@footnote{The C
516 standard uses the term @dfn{string literal} to refer only to what we are
517 calling @dfn{string constants}.}  String constants and character
518 constants are straightforward: @t{"@dots{}"} or @t{'@dots{}'}.  In
519 either case embedded quotes should be escaped with a backslash:
520 @t{'\'@:'} is the character constant for @samp{'}.  There is no limit on
521 the length of a character constant, but the value of a character
522 constant that contains more than one character is
523 implementation-defined.  @xref{Implementation Details}.
524
525 Header file names either look like string constants, @t{"@dots{}"}, or are
526 written with angle brackets instead, @t{<@dots{}>}.  In either case,
527 backslash is an ordinary character.  There is no way to escape the
528 closing quote or angle bracket.  The preprocessor looks for the header
529 file in different places depending on which form you use.  @xref{Include
530 Operation}.
531
532 No string literal may extend past the end of a line.  Older versions
533 of GCC accepted multi-line string constants.  You may use continued
534 lines instead, or string constant concatenation.  @xref{Differences
535 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 an included file must consist of complete tokens.  Comments and string
792 literals which have not been closed by the end of an included file are
793 invalid.  For error recovery, they are considered to end at the end of
794 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 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__}}.  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 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-cpp} option is used.
1794
1795 This macro is not defined if the @option{-traditional-cpp} 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.  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-cpp} option is
1821 used, nor 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 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
2156 which expands to
2157
2158 @smallexample
2159 1 2 1 2
2160 @end smallexample
2161
2162 @noindent
2163 with the semantics described above.
2164
2165 @node Macro Pitfalls
2166 @section Macro Pitfalls
2167 @cindex problems with macros
2168 @cindex pitfalls of macros
2169
2170 In this section we describe some special rules that apply to macros and
2171 macro expansion, and point out certain cases in which the rules have
2172 counter-intuitive consequences that you must watch out for.
2173
2174 @menu
2175 * Misnesting::
2176 * Operator Precedence Problems::
2177 * Swallowing the Semicolon::
2178 * Duplication of Side Effects::
2179 * Self-Referential Macros::
2180 * Argument Prescan::
2181 * Newlines in Arguments::
2182 @end menu
2183
2184 @node Misnesting
2185 @subsection Misnesting
2186
2187 When a macro is called with arguments, the arguments are substituted
2188 into the macro body and the result is checked, together with the rest of
2189 the input file, for more macro calls.  It is possible to piece together
2190 a macro call coming partially from the macro body and partially from the
2191 arguments.  For example,
2192
2193 @example
2194 #define twice(x) (2*(x))
2195 #define call_with_1(x) x(1)
2196 call_with_1 (twice)
2197      @expansion{} twice(1)
2198      @expansion{} (2*(1))
2199 @end example
2200
2201 Macro definitions do not have to have balanced parentheses.  By writing
2202 an unbalanced open parenthesis in a macro body, it is possible to create
2203 a macro call that begins inside the macro body but ends outside of it.
2204 For example,
2205
2206 @example
2207 #define strange(file) fprintf (file, "%s %d",
2208 @dots{}
2209 strange(stderr) p, 35)
2210      @expansion{} fprintf (stderr, "%s %d", p, 35)
2211 @end example
2212
2213 The ability to piece together a macro call can be useful, but the use of
2214 unbalanced open parentheses in a macro body is just confusing, and
2215 should be avoided.
2216
2217 @node Operator Precedence Problems
2218 @subsection Operator Precedence Problems
2219 @cindex parentheses in macro bodies
2220
2221 You may have noticed that in most of the macro definition examples shown
2222 above, each occurrence of a macro argument name had parentheses around
2223 it.  In addition, another pair of parentheses usually surround the
2224 entire macro definition.  Here is why it is best to write macros that
2225 way.
2226
2227 Suppose you define a macro as follows,
2228
2229 @example
2230 #define ceil_div(x, y) (x + y - 1) / y
2231 @end example
2232
2233 @noindent
2234 whose purpose is to divide, rounding up.  (One use for this operation is
2235 to compute how many @code{int} objects are needed to hold a certain
2236 number of @code{char} objects.)  Then suppose it is used as follows:
2237
2238 @example
2239 a = ceil_div (b & c, sizeof (int));
2240      @expansion{} a = (b & c + sizeof (int) - 1) / sizeof (int);
2241 @end example
2242
2243 @noindent
2244 This does not do what is intended.  The operator-precedence rules of
2245 C make it equivalent to this:
2246
2247 @example
2248 a = (b & (c + sizeof (int) - 1)) / sizeof (int);
2249 @end example
2250
2251 @noindent
2252 What we want is this:
2253
2254 @example
2255 a = ((b & c) + sizeof (int) - 1)) / sizeof (int);
2256 @end example
2257
2258 @noindent
2259 Defining the macro as
2260
2261 @example
2262 #define ceil_div(x, y) ((x) + (y) - 1) / (y)
2263 @end example
2264
2265 @noindent
2266 provides the desired result.
2267
2268 Unintended grouping can result in another way.  Consider @code{sizeof
2269 ceil_div(1, 2)}.  That has the appearance of a C expression that would
2270 compute the size of the type of @code{ceil_div (1, 2)}, but in fact it
2271 means something very different.  Here is what it expands to:
2272
2273 @example
2274 sizeof ((1) + (2) - 1) / (2)
2275 @end example
2276
2277 @noindent
2278 This would take the size of an integer and divide it by two.  The
2279 precedence rules have put the division outside the @code{sizeof} when it
2280 was intended to be inside.
2281
2282 Parentheses around the entire macro definition prevent such problems.
2283 Here, then, is the recommended way to define @code{ceil_div}:
2284
2285 @example
2286 #define ceil_div(x, y) (((x) + (y) - 1) / (y))
2287 @end example
2288
2289 @node Swallowing the Semicolon
2290 @subsection Swallowing the Semicolon
2291 @cindex semicolons (after macro calls)
2292
2293 Often it is desirable to define a macro that expands into a compound
2294 statement.  Consider, for example, the following macro, that advances a
2295 pointer (the argument @code{p} says where to find it) across whitespace
2296 characters:
2297
2298 @example
2299 #define SKIP_SPACES(p, limit)  \
2300 @{ char *lim = (limit);         \
2301   while (p < lim) @{            \
2302     if (*p++ != ' ') @{         \
2303       p--; break; @}@}@}
2304 @end example
2305
2306 @noindent
2307 Here backslash-newline is used to split the macro definition, which must
2308 be a single logical line, so that it resembles the way such code would
2309 be laid out if not part of a macro definition.
2310
2311 A call to this macro might be @code{SKIP_SPACES (p, lim)}.  Strictly
2312 speaking, the call expands to a compound statement, which is a complete
2313 statement with no need for a semicolon to end it.  However, since it
2314 looks like a function call, it minimizes confusion if you can use it
2315 like a function call, writing a semicolon afterward, as in
2316 @code{SKIP_SPACES (p, lim);}
2317
2318 This can cause trouble before @code{else} statements, because the
2319 semicolon is actually a null statement.  Suppose you write
2320
2321 @example
2322 if (*p != 0)
2323   SKIP_SPACES (p, lim);
2324 else @dots{}
2325 @end example
2326
2327 @noindent
2328 The presence of two statements---the compound statement and a null
2329 statement---in between the @code{if} condition and the @code{else}
2330 makes invalid C code.
2331
2332 The definition of the macro @code{SKIP_SPACES} can be altered to solve
2333 this problem, using a @code{do @dots{} while} statement.  Here is how:
2334
2335 @example
2336 #define SKIP_SPACES(p, limit)     \
2337 do @{ char *lim = (limit);         \
2338      while (p < lim) @{            \
2339        if (*p++ != ' ') @{         \
2340          p--; break; @}@}@}          \
2341 while (0)
2342 @end example
2343
2344 Now @code{SKIP_SPACES (p, lim);} expands into
2345
2346 @example
2347 do @{@dots{}@} while (0);
2348 @end example
2349
2350 @noindent
2351 which is one statement.  The loop executes exactly once; most compilers
2352 generate no extra code for it.
2353
2354 @node Duplication of Side Effects
2355 @subsection Duplication of Side Effects
2356
2357 @cindex side effects (in macro arguments)
2358 @cindex unsafe macros
2359 Many C programs define a macro @code{min}, for ``minimum'', like this:
2360
2361 @example
2362 #define min(X, Y)  ((X) < (Y) ? (X) : (Y))
2363 @end example
2364
2365 When you use this macro with an argument containing a side effect,
2366 as shown here,
2367
2368 @example
2369 next = min (x + y, foo (z));
2370 @end example
2371
2372 @noindent
2373 it expands as follows:
2374
2375 @example
2376 next = ((x + y) < (foo (z)) ? (x + y) : (foo (z)));
2377 @end example
2378
2379 @noindent
2380 where @code{x + y} has been substituted for @code{X} and @code{foo (z)}
2381 for @code{Y}.
2382
2383 The function @code{foo} is used only once in the statement as it appears
2384 in the program, but the expression @code{foo (z)} has been substituted
2385 twice into the macro expansion.  As a result, @code{foo} might be called
2386 two times when the statement is executed.  If it has side effects or if
2387 it takes a long time to compute, the results might not be what you
2388 intended.  We say that @code{min} is an @dfn{unsafe} macro.
2389
2390 The best solution to this problem is to define @code{min} in a way that
2391 computes the value of @code{foo (z)} only once.  The C language offers
2392 no standard way to do this, but it can be done with GNU extensions as
2393 follows:
2394
2395 @example
2396 #define min(X, Y)                \
2397 (@{ typeof (X) x_ = (X);          \
2398    typeof (Y) y_ = (Y);          \
2399    (x_ < y_) ? x_ : y_; @})
2400 @end example
2401
2402 The @samp{(@{ @dots{} @})} notation produces a compound statement that
2403 acts as an expression.  Its value is the value of its last statement.
2404 This permits us to define local variables and assign each argument to
2405 one.  The local variables have underscores after their names to reduce
2406 the risk of conflict with an identifier of wider scope (it is impossible
2407 to avoid this entirely).  Now each argument is evaluated exactly once.
2408
2409 If you do not wish to use GNU C extensions, the only solution is to be
2410 careful when @emph{using} the macro @code{min}.  For example, you can
2411 calculate the value of @code{foo (z)}, save it in a variable, and use
2412 that variable in @code{min}:
2413
2414 @example
2415 @group
2416 #define min(X, Y)  ((X) < (Y) ? (X) : (Y))
2417 @dots{}
2418 @{
2419   int tem = foo (z);
2420   next = min (x + y, tem);
2421 @}
2422 @end group
2423 @end example
2424
2425 @noindent
2426 (where we assume that @code{foo} returns type @code{int}).
2427
2428 @node Self-Referential Macros
2429 @subsection Self-Referential Macros
2430 @cindex self-reference
2431
2432 A @dfn{self-referential} macro is one whose name appears in its
2433 definition.  Recall that all macro definitions are rescanned for more
2434 macros to replace.  If the self-reference were considered a use of the
2435 macro, it would produce an infinitely large expansion.  To prevent this,
2436 the self-reference is not considered a macro call.  It is passed into
2437 the preprocessor output unchanged.  Let's consider an example:
2438
2439 @example
2440 #define foo (4 + foo)
2441 @end example
2442
2443 @noindent
2444 where @code{foo} is also a variable in your program.
2445
2446 Following the ordinary rules, each reference to @code{foo} will expand
2447 into @code{(4 + foo)}; then this will be rescanned and will expand into
2448 @code{(4 + (4 + foo))}; and so on until the computer runs out of memory.
2449
2450 The self-reference rule cuts this process short after one step, at
2451 @code{(4 + foo)}.  Therefore, this macro definition has the possibly
2452 useful effect of causing the program to add 4 to the value of @code{foo}
2453 wherever @code{foo} is referred to.
2454
2455 In most cases, it is a bad idea to take advantage of this feature.  A
2456 person reading the program who sees that @code{foo} is a variable will
2457 not expect that it is a macro as well.  The reader will come across the
2458 identifier @code{foo} in the program and think its value should be that
2459 of the variable @code{foo}, whereas in fact the value is four greater.
2460
2461 One common, useful use of self-reference is to create a macro which
2462 expands to itself.  If you write
2463
2464 @example
2465 #define EPERM EPERM
2466 @end example
2467
2468 @noindent
2469 then the macro @code{EPERM} expands to @code{EPERM}.  Effectively, it is
2470 left alone by the preprocessor whenever it's used in running text.  You
2471 can tell that it's a macro with @samp{#ifdef}.  You might do this if you
2472 want to define numeric constants with an @code{enum}, but have
2473 @samp{#ifdef} be true for each constant.
2474
2475 If a macro @code{x} expands to use a macro @code{y}, and the expansion of
2476 @code{y} refers to the macro @code{x}, that is an @dfn{indirect
2477 self-reference} of @code{x}.  @code{x} is not expanded in this case
2478 either.  Thus, if we have
2479
2480 @example
2481 #define x (4 + y)
2482 #define y (2 * x)
2483 @end example
2484
2485 @noindent
2486 then @code{x} and @code{y} expand as follows:
2487
2488 @example
2489 @group
2490 x    @expansion{} (4 + y)
2491      @expansion{} (4 + (2 * x))
2492
2493 y    @expansion{} (2 * x)
2494      @expansion{} (2 * (4 + y))
2495 @end group
2496 @end example
2497
2498 @noindent
2499 Each macro is expanded when it appears in the definition of the other
2500 macro, but not when it indirectly appears in its own definition.
2501
2502 @node Argument Prescan
2503 @subsection Argument Prescan
2504 @cindex expansion of arguments
2505 @cindex macro argument expansion
2506 @cindex prescan of macro arguments
2507
2508 Macro arguments are completely macro-expanded before they are
2509 substituted into a macro body, unless they are stringified or pasted
2510 with other tokens.  After substitution, the entire macro body, including
2511 the substituted arguments, is scanned again for macros to be expanded.
2512 The result is that the arguments are scanned @emph{twice} to expand
2513 macro calls in them.
2514
2515 Most of the time, this has no effect.  If the argument contained any
2516 macro calls, they are expanded during the first scan.  The result
2517 therefore contains no macro calls, so the second scan does not change
2518 it.  If the argument were substituted as given, with no prescan, the
2519 single remaining scan would find the same macro calls and produce the
2520 same results.
2521
2522 You might expect the double scan to change the results when a
2523 self-referential macro is used in an argument of another macro
2524 (@pxref{Self-Referential Macros}): the self-referential macro would be
2525 expanded once in the first scan, and a second time in the second scan.
2526 However, this is not what happens.  The self-references that do not
2527 expand in the first scan are marked so that they will not expand in the
2528 second scan either.
2529
2530 You might wonder, ``Why mention the prescan, if it makes no difference?
2531 And why not skip it and make the preprocessor faster?''  The answer is
2532 that the prescan does make a difference in three special cases:
2533
2534 @itemize @bullet
2535 @item
2536 Nested calls to a macro.
2537
2538 We say that @dfn{nested} calls to a macro occur when a macro's argument
2539 contains a call to that very macro.  For example, if @code{f} is a macro
2540 that expects one argument, @code{f (f (1))} is a nested pair of calls to
2541 @code{f}.  The desired expansion is made by expanding @code{f (1)} and
2542 substituting that into the definition of @code{f}.  The prescan causes
2543 the expected result to happen.  Without the prescan, @code{f (1)} itself
2544 would be substituted as an argument, and the inner use of @code{f} would
2545 appear during the main scan as an indirect self-reference and would not
2546 be expanded.
2547
2548 @item
2549 Macros that call other macros that stringify or concatenate.
2550
2551 If an argument is stringified or concatenated, the prescan does not
2552 occur.  If you @emph{want} to expand a macro, then stringify or
2553 concatenate its expansion, you can do that by causing one macro to call
2554 another macro that does the stringification or concatenation.  For
2555 instance, if you have
2556
2557 @example
2558 #define AFTERX(x) X_ ## x
2559 #define XAFTERX(x) AFTERX(x)
2560 #define TABLESIZE 1024
2561 #define BUFSIZE TABLESIZE
2562 @end example
2563
2564 then @code{AFTERX(BUFSIZE)} expands to @code{X_BUFSIZE}, and
2565 @code{XAFTERX(BUFSIZE)} expands to @code{X_1024}.  (Not to
2566 @code{X_TABLESIZE}.  Prescan always does a complete expansion.)
2567
2568 @item
2569 Macros used in arguments, whose expansions contain unshielded commas.
2570
2571 This can cause a macro expanded on the second scan to be called with the
2572 wrong number of arguments.  Here is an example:
2573
2574 @example
2575 #define foo  a,b
2576 #define bar(x) lose(x)
2577 #define lose(x) (1 + (x))
2578 @end example
2579
2580 We would like @code{bar(foo)} to turn into @code{(1 + (foo))}, which
2581 would then turn into @code{(1 + (a,b))}.  Instead, @code{bar(foo)}
2582 expands into @code{lose(a,b)}, and you get an error because @code{lose}
2583 requires a single argument.  In this case, the problem is easily solved
2584 by the same parentheses that ought to be used to prevent misnesting of
2585 arithmetic operations:
2586
2587 @example
2588 #define foo (a,b)
2589 @exdent or
2590 #define bar(x) lose((x))
2591 @end example
2592
2593 The extra pair of parentheses prevents the comma in @code{foo}'s
2594 definition from being interpreted as an argument separator.
2595
2596 @end itemize
2597
2598 @node Newlines in Arguments
2599 @subsection Newlines in Arguments
2600 @cindex newlines in macro arguments
2601
2602 The invocation of a function-like macro can extend over many logical
2603 lines.  However, in the present implementation, the entire expansion
2604 comes out on one line.  Thus line numbers emitted by the compiler or
2605 debugger refer to the line the invocation started on, which might be
2606 different to the line containing the argument causing the problem.
2607
2608 Here is an example illustrating this:
2609
2610 @example
2611 #define ignore_second_arg(a,b,c) a; c
2612
2613 ignore_second_arg (foo (),
2614                    ignored (),
2615                    syntax error);
2616 @end example
2617
2618 @noindent
2619 The syntax error triggered by the tokens @code{syntax error} results in
2620 an error message citing line three---the line of ignore_second_arg---
2621 even though the problematic code comes from line five.
2622
2623 We consider this a bug, and intend to fix it in the near future.
2624
2625 @node Conditionals
2626 @chapter Conditionals
2627 @cindex conditionals
2628
2629 A @dfn{conditional} is a directive that instructs the preprocessor to
2630 select whether or not to include a chunk of code in the final token
2631 stream passed to the compiler.  Preprocessor conditionals can test
2632 arithmetic expressions, or whether a name is defined as a macro, or both
2633 simultaneously using the special @code{defined} operator.
2634
2635 A conditional in the C preprocessor resembles in some ways an @code{if}
2636 statement in C, but it is important to understand the difference between
2637 them.  The condition in an @code{if} statement is tested during the
2638 execution of your program.  Its purpose is to allow your program to
2639 behave differently from run to run, depending on the data it is
2640 operating on.  The condition in a preprocessing conditional directive is
2641 tested when your program is compiled.  Its purpose is to allow different
2642 code to be included in the program depending on the situation at the
2643 time of compilation.
2644
2645 However, the distinction is becoming less clear.  Modern compilers often
2646 do test @code{if} statements when a program is compiled, if their
2647 conditions are known not to vary at run time, and eliminate code which
2648 can never be executed.  If you can count on your compiler to do this,
2649 you may find that your program is more readable if you use @code{if}
2650 statements with constant conditions (perhaps determined by macros).  Of
2651 course, you can only use this to exclude code, not type definitions or
2652 other preprocessing directives, and you can only do it if the code
2653 remains syntactically valid when it is not to be used.
2654
2655 GCC version 3 eliminates this kind of never-executed code even when
2656 not optimizing.  Older versions did it only when optimizing.
2657
2658 @menu
2659 * Conditional Uses::
2660 * Conditional Syntax::
2661 * Deleted Code::
2662 @end menu
2663
2664 @node Conditional Uses
2665 @section Conditional Uses
2666
2667 There are three general reasons to use a conditional.
2668
2669 @itemize @bullet
2670 @item
2671 A program may need to use different code depending on the machine or
2672 operating system it is to run on.  In some cases the code for one
2673 operating system may be erroneous on another operating system; for
2674 example, it might refer to data types or constants that do not exist on
2675 the other system.  When this happens, it is not enough to avoid
2676 executing the invalid code.  Its mere presence will cause the compiler
2677 to reject the program.  With a preprocessing conditional, the offending
2678 code can be effectively excised from the program when it is not valid.
2679
2680 @item
2681 You may want to be able to compile the same source file into two
2682 different programs.  One version might make frequent time-consuming
2683 consistency checks on its intermediate data, or print the values of
2684 those data for debugging, and the other not.
2685
2686 @item
2687 A conditional whose condition is always false is one way to exclude code
2688 from the program but keep it as a sort of comment for future reference.
2689 @end itemize
2690
2691 Simple programs that do not need system-specific logic or complex
2692 debugging hooks generally will not need to use preprocessing
2693 conditionals.
2694
2695 @node Conditional Syntax
2696 @section Conditional Syntax
2697
2698 @findex #if
2699 A conditional in the C preprocessor begins with a @dfn{conditional
2700 directive}: @samp{#if}, @samp{#ifdef} or @samp{#ifndef}.
2701
2702 @menu
2703 * Ifdef::
2704 * If::
2705 * Defined::
2706 * Else::
2707 * Elif::
2708 @end menu
2709
2710 @node Ifdef
2711 @subsection Ifdef
2712 @findex #ifdef
2713 @findex #endif
2714
2715 The simplest sort of conditional is
2716
2717 @example
2718 @group
2719 #ifdef @var{MACRO}
2720
2721 @var{controlled text}
2722
2723 #endif /* @var{MACRO} */
2724 @end group
2725 @end example
2726
2727 @cindex conditional group
2728 This block is called a @dfn{conditional group}.  @var{controlled text}
2729 will be included in the output of the preprocessor if and only if
2730 @var{MACRO} is defined.  We say that the conditional @dfn{succeeds} if
2731 @var{MACRO} is defined, @dfn{fails} if it is not.
2732
2733 The @var{controlled text} inside of a conditional can include
2734 preprocessing directives.  They are executed only if the conditional
2735 succeeds.  You can nest conditional groups inside other conditional
2736 groups, but they must be completely nested.  In other words,
2737 @samp{#endif} always matches the nearest @samp{#ifdef} (or
2738 @samp{#ifndef}, or @samp{#if}).  Also, you cannot start a conditional
2739 group in one file and end it in another.
2740
2741 Even if a conditional fails, the @var{controlled text} inside it is
2742 still run through initial transformations and tokenization.  Therefore,
2743 it must all be lexically valid C@.  Normally the only way this matters is
2744 that all comments and string literals inside a failing conditional group
2745 must still be properly ended.
2746
2747 The comment following the @samp{#endif} is not required, but it is a
2748 good practice if there is a lot of @var{controlled text}, because it
2749 helps people match the @samp{#endif} to the corresponding @samp{#ifdef}.
2750 Older programs sometimes put @var{MACRO} directly after the
2751 @samp{#endif} without enclosing it in a comment.  This is invalid code
2752 according to the C standard.  CPP accepts it with a warning.  It
2753 never affects which @samp{#ifndef} the @samp{#endif} matches.
2754
2755 @findex #ifndef
2756 Sometimes you wish to use some code if a macro is @emph{not} defined.
2757 You can do this by writing @samp{#ifndef} instead of @samp{#ifdef}.
2758 One common use of @samp{#ifndef} is to include code only the first
2759 time a header file is included.  @xref{Once-Only Headers}.
2760
2761 Macro definitions can vary between compilations for several reasons.
2762 Here are some samples.
2763
2764 @itemize @bullet
2765 @item
2766 Some macros are predefined on each kind of machine
2767 (@pxref{System-specific Predefined Macros}).  This allows you to provide
2768 code specially tuned for a particular machine.
2769
2770 @item
2771 System header files define more macros, associated with the features
2772 they implement.  You can test these macros with conditionals to avoid
2773 using a system feature on a machine where it is not implemented.
2774
2775 @item
2776 Macros can be defined or undefined with the @option{-D} and @option{-U}
2777 command line options when you compile the program.  You can arrange to
2778 compile the same source file into two different programs by choosing a
2779 macro name to specify which program you want, writing conditionals to
2780 test whether or how this macro is defined, and then controlling the
2781 state of the macro with command line options, perhaps set in the
2782 Makefile.  @xref{Invocation}.
2783
2784 @item
2785 Your program might have a special header file (often called
2786 @file{config.h}) that is adjusted when the program is compiled.  It can
2787 define or not define macros depending on the features of the system and
2788 the desired capabilities of the program.  The adjustment can be
2789 automated by a tool such as @command{autoconf}, or done by hand.
2790 @end itemize
2791
2792 @node If
2793 @subsection If
2794
2795 The @samp{#if} directive allows you to test the value of an arithmetic
2796 expression, rather than the mere existence of one macro.  Its syntax is
2797
2798 @example
2799 @group
2800 #if @var{expression}
2801
2802 @var{controlled text}
2803
2804 #endif /* @var{expression} */
2805 @end group
2806 @end example
2807
2808 @var{expression} is a C expression of integer type, subject to stringent
2809 restrictions.  It may contain
2810
2811 @itemize @bullet
2812 @item
2813 Integer constants.
2814
2815 @item
2816 Character constants, which are interpreted as they would be in normal
2817 code.
2818
2819 @item
2820 Arithmetic operators for addition, subtraction, multiplication,
2821 division, bitwise operations, shifts, comparisons, and logical
2822 operations (@code{&&} and @code{||}).  The latter two obey the usual
2823 short-circuiting rules of standard C@.
2824
2825 @item
2826 Macros.  All macros in the expression are expanded before actual
2827 computation of the expression's value begins.
2828
2829 @item
2830 Uses of the @code{defined} operator, which lets you check whether macros
2831 are defined in the middle of an @samp{#if}.
2832
2833 @item
2834 Identifiers that are not macros, which are all considered to be the
2835 number zero.  This allows you to write @code{@w{#if MACRO}} instead of
2836 @code{@w{#ifdef MACRO}}, if you know that MACRO, when defined, will
2837 always have a nonzero value.  Function-like macros used without their
2838 function call parentheses are also treated as zero.
2839
2840 In some contexts this shortcut is undesirable.  The @option{-Wundef}
2841 option causes GCC to warn whenever it encounters an identifier which is
2842 not a macro in an @samp{#if}.
2843 @end itemize
2844
2845 The preprocessor does not know anything about types in the language.
2846 Therefore, @code{sizeof} operators are not recognized in @samp{#if}, and
2847 neither are @code{enum} constants.  They will be taken as identifiers
2848 which are not macros, and replaced by zero.  In the case of
2849 @code{sizeof}, this is likely to cause the expression to be invalid.
2850
2851 The preprocessor calculates the value of @var{expression}.  It carries
2852 out all calculations in the widest integer type known to the compiler;
2853 on most machines supported by GCC this is 64 bits.  This is not the same
2854 rule as the compiler uses to calculate the value of a constant
2855 expression, and may give different results in some cases.  If the value
2856 comes out to be nonzero, the @samp{#if} succeeds and the @var{controlled
2857 text} is included; otherwise it is skipped.
2858
2859 If @var{expression} is not correctly formed, GCC issues an error and
2860 treats the conditional as having failed.
2861
2862 @node Defined
2863 @subsection Defined
2864
2865 @cindex @code{defined}
2866 The special operator @code{defined} is used in @samp{#if} and
2867 @samp{#elif} expressions to test whether a certain name is defined as a
2868 macro.  @code{defined @var{name}} and @code{defined (@var{name})} are
2869 both expressions whose value is 1 if @var{name} is defined as a macro at
2870 the current point in the program, and 0 otherwise.  Thus,  @code{@w{#if
2871 defined MACRO}} is precisely equivalent to @code{@w{#ifdef MACRO}}.
2872
2873 @code{defined} is useful when you wish to test more than one macro for
2874 existence at once.  For example,
2875
2876 @example
2877 #if defined (__vax__) || defined (__ns16000__)
2878 @end example
2879
2880 @noindent
2881 would succeed if either of the names @code{__vax__} or
2882 @code{__ns16000__} is defined as a macro.
2883
2884 Conditionals written like this:
2885
2886 @example
2887 #if defined BUFSIZE && BUFSIZE >= 1024
2888 @end example
2889
2890 @noindent
2891 can generally be simplified to just @code{@w{#if BUFSIZE >= 1024}},
2892 since if @code{BUFSIZE} is not defined, it will be interpreted as having
2893 the value zero.
2894
2895 If the @code{defined} operator appears as a result of a macro expansion,
2896 the C standard says the behavior is undefined.  GNU cpp treats it as a
2897 genuine @code{defined} operator and evaluates it normally.  It will warn
2898 wherever your code uses this feature if you use the command-line option
2899 @option{-pedantic}, since other compilers may handle it differently.
2900
2901 @node Else
2902 @subsection Else
2903
2904 @findex #else
2905 The @samp{#else} directive can be added to a conditional to provide
2906 alternative text to be used if the condition fails.  This is what it
2907 looks like:
2908
2909 @example
2910 @group
2911 #if @var{expression}
2912 @var{text-if-true}
2913 #else /* Not @var{expression} */
2914 @var{text-if-false}
2915 #endif /* Not @var{expression} */
2916 @end group
2917 @end example
2918
2919 @noindent
2920 If @var{expression} is nonzero, the @var{text-if-true} is included and
2921 the @var{text-if-false} is skipped.  If @var{expression} is zero, the
2922 opposite happens.
2923
2924 You can use @samp{#else} with @samp{#ifdef} and @samp{#ifndef}, too.
2925
2926 @node Elif
2927 @subsection Elif
2928
2929 @findex #elif
2930 One common case of nested conditionals is used to check for more than two
2931 possible alternatives.  For example, you might have
2932
2933 @example
2934 #if X == 1
2935 @dots{}
2936 #else /* X != 1 */
2937 #if X == 2
2938 @dots{}
2939 #else /* X != 2 */
2940 @dots{}
2941 #endif /* X != 2 */
2942 #endif /* X != 1 */
2943 @end example
2944
2945 Another conditional directive, @samp{#elif}, allows this to be
2946 abbreviated as follows:
2947
2948 @example
2949 #if X == 1
2950 @dots{}
2951 #elif X == 2
2952 @dots{}
2953 #else /* X != 2 and X != 1*/
2954 @dots{}
2955 #endif /* X != 2 and X != 1*/
2956 @end example
2957
2958 @samp{#elif} stands for ``else if''.  Like @samp{#else}, it goes in the
2959 middle of a conditional group and subdivides it; it does not require a
2960 matching @samp{#endif} of its own.  Like @samp{#if}, the @samp{#elif}
2961 directive includes an expression to be tested.  The text following the
2962 @samp{#elif} is processed only if the original @samp{#if}-condition
2963 failed and the @samp{#elif} condition succeeds.
2964
2965 More than one @samp{#elif} can go in the same conditional group.  Then
2966 the text after each @samp{#elif} is processed only if the @samp{#elif}
2967 condition succeeds after the original @samp{#if} and all previous
2968 @samp{#elif} directives within it have failed.
2969
2970 @samp{#else} is allowed after any number of @samp{#elif} directives, but
2971 @samp{#elif} may not follow @samp{#else}.
2972
2973 @node Deleted Code
2974 @section Deleted Code
2975 @cindex commenting out code
2976
2977 If you replace or delete a part of the program but want to keep the old
2978 code around for future reference, you often cannot simply comment it
2979 out.  Block comments do not nest, so the first comment inside the old
2980 code will end the commenting-out.  The probable result is a flood of
2981 syntax errors.
2982
2983 One way to avoid this problem is to use an always-false conditional
2984 instead.  For instance, put @code{#if 0} before the deleted code and
2985 @code{#endif} after it.  This works even if the code being turned
2986 off contains conditionals, but they must be entire conditionals
2987 (balanced @samp{#if} and @samp{#endif}).
2988
2989 Some people use @code{#ifdef notdef} instead.  This is risky, because
2990 @code{notdef} might be accidentally defined as a macro, and then the
2991 conditional would succeed.  @code{#if 0} can be counted on to fail.
2992
2993 Do not use @code{#if 0} for comments which are not C code.  Use a real
2994 comment, instead.  The interior of @code{#if 0} must consist of complete
2995 tokens; in particular, single-quote characters must balance.  Comments
2996 often contain unbalanced single-quote characters (known in English as
2997 apostrophes).  These confuse @code{#if 0}.  They don't confuse
2998 @samp{/*}.
2999
3000 @node Diagnostics
3001 @chapter Diagnostics
3002 @cindex diagnostic
3003 @cindex reporting errors
3004 @cindex reporting warnings
3005
3006 @findex #error
3007 The directive @samp{#error} causes the preprocessor to report a fatal
3008 error.  The tokens forming the rest of the line following @samp{#error}
3009 are used as the error message.
3010
3011 You would use @samp{#error} inside of a conditional that detects a
3012 combination of parameters which you know the program does not properly
3013 support.  For example, if you know that the program will not run
3014 properly on a VAX, you might write
3015
3016 @example
3017 @group
3018 #ifdef __vax__
3019 #error "Won't work on VAXen.  See comments at get_last_object."
3020 #endif
3021 @end group
3022 @end example
3023
3024 If you have several configuration parameters that must be set up by
3025 the installation in a consistent way, you can use conditionals to detect
3026 an inconsistency and report it with @samp{#error}.  For example,
3027
3028 @example
3029 #if !defined(UNALIGNED_INT_ASM_OP) && defined(DWARF2_DEBUGGING_INFO)
3030 #error "DWARF2_DEBUGGING_INFO requires UNALIGNED_INT_ASM_OP."
3031 #endif
3032 @end example
3033
3034 @findex #warning
3035 The directive @samp{#warning} is like @samp{#error}, but causes the
3036 preprocessor to issue a warning and continue preprocessing.  The tokens
3037 following @samp{#warning} are used as the warning message.
3038
3039 You might use @samp{#warning} in obsolete header files, with a message
3040 directing the user to the header file which should be used instead.
3041
3042 Neither @samp{#error} nor @samp{#warning} macro-expands its argument.
3043 Internal whitespace sequences are each replaced with a single space.
3044 The line must consist of complete tokens.  It is wisest to make the
3045 argument of these directives be a single string constant; this avoids
3046 problems with apostrophes and the like.
3047
3048 @node Line Control
3049 @chapter Line Control
3050 @cindex line control
3051
3052 The C preprocessor informs the C compiler of the location in your source
3053 code where each token came from.  Presently, this is just the file name
3054 and line number.  All the tokens resulting from macro expansion are
3055 reported as having appeared on the line of the source file where the
3056 outermost macro was used.  We intend to be more accurate in the future.
3057
3058 If you write a program which generates source code, such as the
3059 @command{bison} parser generator, you may want to adjust the preprocessor's
3060 notion of the current file name and line number by hand.  Parts of the
3061 output from @command{bison} are generated from scratch, other parts come
3062 from a standard parser file.  The rest are copied verbatim from
3063 @command{bison}'s input.  You would like compiler error messages and
3064 symbolic debuggers to be able to refer to @code{bison}'s input file.
3065
3066 @findex #line
3067 @command{bison} or any such program can arrange this by writing
3068 @samp{#line} directives into the output file.  @samp{#line} is a
3069 directive that specifies the original line number and source file name
3070 for subsequent input in the current preprocessor input file.
3071 @samp{#line} has three variants:
3072
3073 @table @code
3074 @item #line @var{linenum}
3075 @var{linenum} is a non-negative decimal integer constant.  It specifies
3076 the line number which should be reported for the following line of
3077 input.  Subsequent lines are counted from @var{linenum}.
3078
3079 @item #line @var{linenum} @var{filename}
3080 @var{linenum} is the same as for the first form, and has the same
3081 effect.  In addition, @var{filename} is a string constant.  The
3082 following line and all subsequent lines are reported to come from the
3083 file it specifies, until something else happens to change that.
3084 @var{filename} is interpreted according to the normal rules for a string
3085 constant: backslash escapes are interpreted.  This is different from
3086 @samp{#include}.
3087
3088 Previous versions of CPP did not interpret escapes in @samp{#line};
3089 we have changed it because the standard requires they be interpreted,
3090 and most other compilers do.
3091
3092 @item #line @var{anything else}
3093 @var{anything else} is checked for macro calls, which are expanded.
3094 The result should match one of the above two forms.
3095 @end table
3096
3097 @samp{#line} directives alter the results of the @code{__FILE__} and
3098 @code{__LINE__} predefined macros from that point on.  @xref{Standard
3099 Predefined Macros}.  They do not have any effect on @samp{#include}'s
3100 idea of the directory containing the current file.  This is a change
3101 from GCC 2.95.  Previously, a file reading
3102
3103 @smallexample
3104 #line 1 "../src/gram.y"
3105 #include "gram.h"
3106 @end smallexample
3107
3108 would search for @file{gram.h} in @file{../src}, then the @option{-I}
3109 chain; the directory containing the physical source file would not be
3110 searched.  In GCC 3.0 and later, the @samp{#include} is not affected by
3111 the presence of a @samp{#line} referring to a different directory.
3112
3113 We made this change because the old behavior caused problems when
3114 generated source files were transported between machines.  For instance,
3115 it is common practice to ship generated parsers with a source release,
3116 so that people building the distribution do not need to have yacc or
3117 Bison installed.  These files frequently have @samp{#line} directives
3118 referring to the directory tree of the system where the distribution was
3119 created.  If GCC tries to search for headers in those directories, the
3120 build is likely to fail.
3121
3122 The new behavior can cause failures too, if the generated file is not
3123 in the same directory as its source and it attempts to include a header
3124 which would be visible searching from the directory containing the
3125 source file.  However, this problem is easily solved with an additional
3126 @option{-I} switch on the command line.  The failures caused by the old
3127 semantics could sometimes be corrected only by editing the generated
3128 files, which is difficult and error-prone.
3129
3130 @node Pragmas
3131 @chapter Pragmas
3132
3133 The @samp{#pragma} directive is the method specified by the C standard
3134 for providing additional information to the compiler, beyond what is
3135 conveyed in the language itself.  Three forms of this directive
3136 (commonly known as @dfn{pragmas}) are specified by the 1999 C standard.
3137 A C compiler is free to attach any meaning it likes to other pragmas.
3138
3139 GCC has historically preferred to use extensions to the syntax of the
3140 language, such as @code{__attribute__}, for this purpose.  However, GCC
3141 does define a few pragmas of its own.  These mostly have effects on the
3142 entire translation unit or source file.
3143
3144 In GCC version 3, all GNU-defined, supported pragmas have been given a
3145 @code{GCC} prefix.  This is in line with the @code{STDC} prefix on all
3146 pragmas defined by C99.  For backward compatibility, pragmas which were
3147 recognized by previous versions are still recognized without the
3148 @code{GCC} prefix, but that usage is deprecated.  Some older pragmas are
3149 deprecated in their entirety.  They are not recognized with the
3150 @code{GCC} prefix.  @xref{Obsolete Features}.
3151
3152 @cindex @code{_Pragma}
3153 C99 introduces the @code{@w{_Pragma}} operator.  This feature addresses a
3154 major problem with @samp{#pragma}: being a directive, it cannot be
3155 produced as the result of macro expansion.  @code{@w{_Pragma}} is an
3156 operator, much like @code{sizeof} or @code{defined}, and can be embedded
3157 in a macro.
3158
3159 Its syntax is @code{@w{_Pragma (@var{string-literal})}}, where
3160 @var{string-literal} can be either a normal or wide-character string
3161 literal.  It is destringized, by replacing all @samp{\\} with a single
3162 @samp{\} and all @samp{\"} with a @samp{"}.  The result is then
3163 processed as if it had appeared as the right hand side of a
3164 @samp{#pragma} directive.  For example,
3165
3166 @example
3167 _Pragma ("GCC dependency \"parse.y\"")
3168 @end example
3169
3170 @noindent
3171 has the same effect as @code{#pragma GCC dependency "parse.y"}.  The
3172 same effect could be achieved using macros, for example
3173
3174 @example
3175 #define DO_PRAGMA(x) _Pragma (#x)
3176 DO_PRAGMA (GCC dependency "parse.y")
3177 @end example
3178
3179 The standard is unclear on where a @code{_Pragma} operator can appear.
3180 The preprocessor does not accept it within a preprocessing conditional
3181 directive like @samp{#if}.  To be safe, you are probably best keeping it
3182 out of directives other than @samp{#define}, and putting it on a line of
3183 its own.
3184
3185 This manual documents the pragmas which are meaningful to the
3186 preprocessor itself.  Other pragmas are meaningful to the C or C++
3187 compilers.  They are documented in the GCC manual.
3188
3189 @ftable @code
3190 @item #pragma GCC dependency
3191 @code{#pragma GCC dependency} allows you to check the relative dates of
3192 the current file and another file.  If the other file is more recent than
3193 the current file, a warning is issued.  This is useful if the current
3194 file is derived from the other file, and should be regenerated.  The
3195 other file is searched for using the normal include search path.
3196 Optional trailing text can be used to give more information in the
3197 warning message.
3198
3199 @example
3200 #pragma GCC dependency "parse.y"
3201 #pragma GCC dependency "/usr/include/time.h" rerun fixincludes
3202 @end example
3203
3204 @item #pragma GCC poison
3205 Sometimes, there is an identifier that you want to remove completely
3206 from your program, and make sure that it never creeps back in.  To
3207 enforce this, you can @dfn{poison} the identifier with this pragma.
3208 @code{#pragma GCC poison} is followed by a list of identifiers to
3209 poison.  If any of those identifiers appears anywhere in the source
3210 after the directive, it is a hard error.  For example,
3211
3212 @example
3213 #pragma GCC poison printf sprintf fprintf
3214 sprintf(some_string, "hello");
3215 @end example
3216
3217 @noindent
3218 will produce an error.
3219
3220 If a poisoned identifier appears as part of the expansion of a macro
3221 which was defined before the identifier was poisoned, it will @emph{not}
3222 cause an error.  This lets you poison an identifier without worrying
3223 about system headers defining macros that use it.
3224
3225 For example,
3226
3227 @example
3228 #define strrchr rindex
3229 #pragma GCC poison rindex
3230 strrchr(some_string, 'h');
3231 @end example
3232
3233 @noindent
3234 will not produce an error.
3235
3236 @item #pragma GCC system_header
3237 This pragma takes no arguments.  It causes the rest of the code in the
3238 current file to be treated as if it came from a system header.
3239 @xref{System Headers}.
3240
3241 @end ftable
3242
3243 @node Other Directives
3244 @chapter Other Directives
3245
3246 @findex #ident
3247 The @samp{#ident} directive takes one argument, a string constant.  On
3248 some systems, that string constant is copied into a special segment of
3249 the object file.  On other systems, the directive is ignored.
3250
3251 This directive is not part of the C standard, but it is not an official
3252 GNU extension either.  We believe it came from System V@.
3253
3254 @findex #sccs
3255 The @samp{#sccs} directive is recognized on some systems, because it
3256 appears in their header files.  It is a very old, obscure, extension
3257 which we did not invent, and we have been unable to find any
3258 documentation of what it should do, so GCC simply ignores it.
3259
3260 @cindex null directive
3261 The @dfn{null directive} consists of a @samp{#} followed by a newline,
3262 with only whitespace (including comments) in between.  A null directive
3263 is understood as a preprocessing directive but has no effect on the
3264 preprocessor output.  The primary significance of the existence of the
3265 null directive is that an input line consisting of just a @samp{#} will
3266 produce no output, rather than a line of output containing just a
3267 @samp{#}.  Supposedly some old C programs contain such lines.
3268
3269 @node Preprocessor Output
3270 @chapter Preprocessor Output
3271
3272 When the C preprocessor is used with the C, C++, or Objective-C
3273 compilers, it is integrated into the compiler and communicates a stream
3274 of binary tokens directly to the compiler's parser.  However, it can
3275 also be used in the more conventional standalone mode, where it produces
3276 textual output.
3277 @c FIXME: Document the library interface.
3278
3279 @cindex output format
3280 The output from the C preprocessor looks much like the input, except
3281 that all preprocessing directive lines have been replaced with blank
3282 lines and all comments with spaces.  Long runs of blank lines are
3283 discarded.
3284
3285 The ISO standard specifies that it is implementation defined whether a
3286 preprocessor preserves whitespace between tokens, or replaces it with
3287 e.g.@: a single space.  In GNU CPP, whitespace between tokens is collapsed
3288 to become a single space, with the exception that the first token on a
3289 non-directive line is preceded with sufficient spaces that it appears in
3290 the same column in the preprocessed output that it appeared in the
3291 original source file.  This is so the output is easy to read.
3292 @xref{Differences from previous versions}.  CPP does not insert any
3293 whitespace where there was none in the original source, except where
3294 necessary to prevent an accidental token paste.
3295
3296 @cindex linemarkers
3297 Source file name and line number information is conveyed by lines
3298 of the form
3299
3300 @example
3301 # @var{linenum} @var{filename} @var{flags}
3302 @end example
3303
3304 @noindent
3305 These are called @dfn{linemarkers}.  They are inserted as needed into
3306 the output (but never within a string or character constant).  They mean
3307 that the following line originated in file @var{filename} at line
3308 @var{linenum}.  @var{filename} will never contain any non-printing
3309 characters; they are replaced with octal escape sequences.
3310
3311 After the file name comes zero or more flags, which are @samp{1},
3312 @samp{2}, @samp{3}, or @samp{4}.  If there are multiple flags, spaces
3313 separate them.  Here is what the flags mean:
3314
3315 @table @samp
3316 @item 1
3317 This indicates the start of a new file.
3318 @item 2
3319 This indicates returning to a file (after having included another file).
3320 @item 3
3321 This indicates that the following text comes from a system header file,
3322 so certain warnings should be suppressed.
3323 @item 4
3324 This indicates that the following text should be treated as being
3325 wrapped in an implicit @code{extern "C"} block.
3326 @c maybe cross reference NO_IMPLICIT_EXTERN_C
3327 @end table
3328
3329 As an extension, the preprocessor accepts linemarkers in non-assembler
3330 input files.  They are treated like the corresponding @samp{#line}
3331 directive, (@pxref{Line Control}), except that trailing flags are
3332 permitted, and are interpreted with the meanings described above.  If
3333 multiple flags are given, they must be in ascending order.
3334
3335 Some directives may be duplicated in the output of the preprocessor.
3336 These are @samp{#ident} (always), @samp{#pragma} (only if the
3337 preprocessor does not handle the pragma itself), and @samp{#define} and
3338 @samp{#undef} (with certain debugging options).  If this happens, the
3339 @samp{#} of the directive will always be in the first column, and there
3340 will be no space between the @samp{#} and the directive name.  If macro
3341 expansion happens to generate tokens which might be mistaken for a
3342 duplicated directive, a space will be inserted between the @samp{#} and
3343 the directive name.
3344
3345 @node Traditional Mode
3346 @chapter Traditional Mode
3347
3348 Traditional (pre-standard) C preprocessing is rather different from
3349 the preprocessing specified by the standard.  When GCC is given the
3350 @option{-traditional-cpp} option, it attempts to emulate a traditional
3351 preprocessor.
3352
3353 GCC versions 3.2 and later only support traditional mode semantics in
3354 the preprocessor, and not in the compiler front ends.  This chapter
3355 outlines the traditional preprocessor semantics we implemented.
3356
3357 The implementation does not correspond precisely to the behavior of
3358 earlier versions of GCC, nor to any true traditional preprocessor.
3359 After all, inconsistencies among traditional implementations were a
3360 major motivation for C standardization.  However, we intend that it
3361 should be compatible with true traditional preprocessors in all ways
3362 that actually matter.
3363
3364 @menu
3365 * Traditional lexical analysis::
3366 * Traditional macros::
3367 * Traditional miscellany::
3368 * Traditional warnings::
3369 @end menu
3370
3371 @node Traditional lexical analysis
3372 @section Traditional lexical analysis
3373
3374 The traditional preprocessor does not decompose its input into tokens
3375 the same way a standards-conforming preprocessor does.  The input is
3376 simply treated as a stream of text with minimal internal form.
3377
3378 This implementation does not treat trigraphs (@pxref{trigraphs})
3379 specially since they were an invention of the standards committee.  It
3380 handles arbitrarily-positioned escaped newlines properly and splices
3381 the lines as you would expect; many traditional preprocessors did not
3382 do this.
3383
3384 The form of horizontal whitespace in the input file is preserved in
3385 the output.  In particular, hard tabs remain hard tabs.  This can be
3386 useful if, for example, you are preprocessing a Makefile.
3387
3388 Traditional CPP only recognizes C-style block comments, and treats the
3389 @samp{/*} sequence as introducing a comment only if it lies outside
3390 quoted text.  Quoted text is introduced by the usual single and double
3391 quotes, and also by an initial @samp{<} in a @code{#include}
3392 directive.
3393
3394 Traditionally, comments are completely removed and are not replaced
3395 with a space.  Since a traditional compiler does its own tokenization
3396 of the output of the preprocessor, this means that comments can
3397 effectively be used as token paste operators.  However, comments
3398 behave like separators for text handled by the preprocessor itself,
3399 since it doesn't re-lex its input.  For example, in
3400
3401 @smallexample
3402 #if foo/**/bar
3403 @end smallexample
3404
3405 @noindent
3406 @samp{foo} and @samp{bar} are distinct identifiers and expanded
3407 separately if they happen to be macros.  In other words, this
3408 directive is equivalent to
3409
3410 @smallexample
3411 #if foo bar
3412 @end smallexample
3413
3414 @noindent
3415 rather than
3416
3417 @smallexample
3418 #if foobar
3419 @end smallexample
3420
3421 Generally speaking, in traditional mode an opening quote need not have
3422 a matching closing quote.  In particular, a macro may be defined with
3423 replacement text that contains an unmatched quote.  Of course, if you
3424 attempt to compile preprocessed output containing an unmatched quote
3425 you will get a syntax error.
3426
3427 However, all preprocessing directives other than @code{#define}
3428 require matching quotes.  For example:
3429
3430 @smallexample
3431 #define m This macro's fine and has an unmatched quote
3432 "/* This is not a comment.  */
3433 /* This is a comment.  The following #include directive
3434    is ill-formed.  */
3435 #include <stdio.h
3436 @end smallexample
3437
3438 Just as for the ISO preprocessor, what would be a closing quote can be
3439 escaped with a backslash to prevent the quoted text from closing.
3440
3441 @node Traditional macros
3442 @section Traditional macros
3443
3444 The major difference between traditional and ISO macros is that the
3445 former expand to text rather than to a token sequence.  CPP removes
3446 all leading and trailing horizontal whitespace from a macro's
3447 replacement text before storing it, but preserves the form of internal
3448 whitespace.
3449
3450 One consequence is that it is legitimate for the replacement text to
3451 contain an unmatched quote (@pxref{Traditional lexical analysis}). An
3452 unclosed string or character constant continues into the text
3453 following the macro call.  Similarly, the text at the end of a macro's
3454 expansion can run together with the text after the macro invocation to
3455 produce a single token.
3456
3457 Normally comments are removed from the replacement text after the
3458 macro is expanded, but if the @option{-CC} option is passed on the
3459 command line comments are preserved.  (In fact, the current
3460 implementation removes comments even before saving the macro
3461 replacement text, but it careful to do it in such a way that the
3462 observed effect is identical even in the function-like macro case.)
3463
3464 The ISO stringification operator @samp{#} and token paste operator
3465 @samp{##} have no special meaning.  As explained later, an effect
3466 similar to these operators can be obtained in a different way.  Macro
3467 names that are embedded in quotes, either from the main file or after
3468 macro replacement, do not expand.
3469
3470 CPP replaces an unquoted object-like macro name with its replacement
3471 text, and then rescans it for further macros to replace.  Unlike
3472 standard macro expansion, traditional macro expansion has no provision
3473 to prevent recursion.  If an object-like macro appears unquoted in its
3474 replacement text, it will be replaced again during the rescan pass,
3475 and so on @emph{ad infinitum}.  GCC detects when it is expanding
3476 recursive macros, emits an error message, and continues after the
3477 offending macro invocation.
3478
3479 @smallexample
3480 #define PLUS +
3481 #define INC(x) PLUS+x
3482 INC(foo);
3483      @expansion{} ++foo;
3484 @end smallexample
3485
3486 Function-like macros are similar in form but quite different in
3487 behavior to their ISO counterparts.  Their arguments are contained
3488 within parentheses, are comma-separated, and can cross physical lines.
3489 Commas within nested parentheses are not treated as argument
3490 separators.  Similarly, a quote in an argument cannot be left
3491 unclosed; a following comma or parenthesis that comes before the
3492 closing quote is treated like any other character.  There is no
3493 facility for handling variadic macros.
3494
3495 This implementation removes all comments from macro arguments, unless
3496 the @option{-C} option is given.  The form of all other horizontal
3497 whitespace in arguments is preserved, including leading and trailing
3498 whitespace.  In particular
3499
3500 @smallexample
3501 f( )
3502 @end smallexample
3503
3504 @noindent
3505 is treated as an invocation of the macro @samp{f} with a single
3506 argument consisting of a single space.  If you want to invoke a
3507 function-like macro that takes no arguments, you must not leave any
3508 whitespace between the parentheses.
3509
3510 If a macro argument crosses a new line, the new line is replaced with
3511 a space when forming the argument.  If the previous line contained an
3512 unterminated quote, the following line inherits the quoted state.
3513
3514 Traditional preprocessors replace parameters in the replacement text
3515 with their arguments regardless of whether the parameters are within
3516 quotes or not.  This provides a way to stringize arguments.  For
3517 example
3518
3519 @smallexample
3520 #define str(x) "x"
3521 str(/* A comment */some text )
3522      @expansion{} "some text "
3523 @end smallexample
3524
3525 @noindent
3526 Note that the comment is removed, but that the trailing space is
3527 preserved.  Here is an example of using a comment to effect token
3528 pasting.
3529
3530 @smallexample
3531 #define suffix(x) foo_/**/x
3532 suffix(bar)
3533      @expansion{} foo_bar
3534 @end smallexample
3535
3536 @node Traditional miscellany
3537 @section Traditional miscellany
3538
3539 Here are some things to be aware of when using the traditional
3540 preprocessor.
3541
3542 @itemize @bullet
3543 @item
3544 Preprocessing directives are recognized only when their leading
3545 @samp{#} appears in the first column.  There can be no whitespace
3546 between the beginning of the line and the @samp{#}, but whitespace can
3547 follow the @samp{#}.
3548
3549 @item
3550 A true traditional C preprocessor does not recognize @samp{#error} or
3551 @samp{#pragma}, and may not recognize @samp{#elif}.  CPP supports all
3552 the directives in traditional mode that it supports in ISO mode,
3553 including extensions, with the exception that the effects of
3554 @samp{#pragma GCC poison} are undefined.
3555
3556 @item
3557 __STDC__ is not defined.
3558
3559 @item
3560 If you use digraphs the behaviour is undefined.
3561
3562 @item
3563 If a line that looks like a directive appears within macro arguments,
3564 the behaviour is undefined.
3565
3566 @end itemize
3567
3568 @node Traditional warnings
3569 @section Traditional warnings
3570 You can request warnings about features that did not exist, or worked
3571 differently, in traditional C with the @option{-Wtraditional} option.
3572 GCC does not warn about features of ISO C which you must use when you
3573 are using a conforming compiler, such as the @samp{#} and @samp{##}
3574 operators.
3575
3576 Presently @option{-Wtraditional} warns about:
3577
3578 @itemize @bullet
3579 @item
3580 Macro parameters that appear within string literals in the macro body.
3581 In traditional C macro replacement takes place within string literals,
3582 but does not in ISO C@.
3583
3584 @item
3585 In traditional C, some preprocessor directives did not exist.
3586 Traditional preprocessors would only consider a line to be a directive
3587 if the @samp{#} appeared in column 1 on the line.  Therefore
3588 @option{-Wtraditional} warns about directives that traditional C
3589 understands but would ignore because the @samp{#} does not appear as the
3590 first character on the line.  It also suggests you hide directives like
3591 @samp{#pragma} not understood by traditional C by indenting them.  Some
3592 traditional implementations would not recognize @samp{#elif}, so it
3593 suggests avoiding it altogether.
3594
3595 @item
3596 A function-like macro that appears without an argument list.  In some
3597 traditional preprocessors this was an error.  In ISO C it merely means
3598 that the macro is not expanded.
3599
3600 @item
3601 The unary plus operator.  This did not exist in traditional C@.
3602
3603 @item
3604 The @samp{U} and @samp{LL} integer constant suffixes, which were not
3605 available in traditional C@.  (Traditional C does support the @samp{L}
3606 suffix for simple long integer constants.)  You are not warned about
3607 uses of these suffixes in macros defined in system headers.  For
3608 instance, @code{UINT_MAX} may well be defined as @code{4294967295U}, but
3609 you will not be warned if you use @code{UINT_MAX}.
3610
3611 You can usually avoid the warning, and the related warning about
3612 constants which are so large that they are unsigned, by writing the
3613 integer constant in question in hexadecimal, with no U suffix.  Take
3614 care, though, because this gives the wrong result in exotic cases.
3615 @end itemize
3616
3617 @node Implementation Details
3618 @chapter Implementation Details
3619
3620 Here we document details of how the preprocessor's implementation
3621 affects its user-visible behavior.  You should try to avoid undue
3622 reliance on behavior described here, as it is possible that it will
3623 change subtly in future implementations.
3624
3625 Also documented here are obsolete features and changes from previous
3626 versions of CPP@.
3627
3628 @menu
3629 * Implementation-defined behavior::
3630 * Implementation limits::
3631 * Obsolete Features::
3632 * Differences from previous versions::
3633 @end menu
3634
3635 @node Implementation-defined behavior
3636 @section Implementation-defined behavior
3637 @cindex implementation-defined behavior
3638
3639 This is how CPP behaves in all the cases which the C standard
3640 describes as @dfn{implementation-defined}.  This term means that the
3641 implementation is free to do what it likes, but must document its choice
3642 and stick to it.
3643 @c FIXME: Check the C++ standard for more implementation-defined stuff.
3644
3645 @itemize @bullet
3646 @need 1000
3647 @item The mapping of physical source file multi-byte characters to the
3648 execution character set.
3649
3650 Currently, GNU cpp only supports character sets that are strict supersets
3651 of ASCII, and performs no translation of characters.
3652
3653 @item Non-empty sequences of whitespace characters.
3654
3655 In textual output, each whitespace sequence is collapsed to a single
3656 space.  For aesthetic reasons, the first token on each non-directive
3657 line of output is preceded with sufficient spaces that it appears in the
3658 same column as it did in the original source file.
3659
3660 @item The numeric value of character constants in preprocessor expressions.
3661
3662 The preprocessor and compiler interpret character constants in the
3663 same way; i.e.@: escape sequences such as @samp{\a} are given the
3664 values they would have on the target machine.
3665
3666 The compiler values a multi-character character constant a character
3667 at a time, shifting the previous value left by the number of bits per
3668 target character, and then or-ing in the bit-pattern of the new
3669 character truncated to the width of a target character.  The final
3670 bit-pattern is given type @code{int}, and is therefore signed,
3671 regardless of whether single characters are signed or not (a slight
3672 change from versions 3.1 and earlier of GCC).  If there are more
3673 characters in the constant than would fit in the target @code{int} the
3674 compiler issues a warning, and the excess leading characters are
3675 ignored.
3676
3677 For example, 'ab' for a target with an 8-bit @code{char} would be
3678 interpreted as @w{(int) ((unsigned char) 'a' * 256 + (unsigned char)
3679 'b')}, and '\234a' as @w{(int) ((unsigned char) '\234' * 256 + (unsigned
3680 char) 'a')}.
3681
3682 @item Source file inclusion.
3683
3684 For a discussion on how the preprocessor locates header files,
3685 @ref{Include Operation}.
3686
3687 @item Interpretation of the filename resulting from a macro-expanded
3688 @samp{#include} directive.
3689
3690 @xref{Computed Includes}.
3691
3692 @item Treatment of a @samp{#pragma} directive that after macro-expansion
3693 results in a standard pragma.
3694
3695 No macro expansion occurs on any @samp{#pragma} directive line, so the
3696 question does not arise.
3697
3698 Note that GCC does not yet implement any of the standard
3699 pragmas.
3700
3701 @end itemize
3702
3703 @node Implementation limits
3704 @section Implementation limits
3705 @cindex implementation limits
3706
3707 CPP has a small number of internal limits.  This section lists the
3708 limits which the C standard requires to be no lower than some minimum,
3709 and all the others we are aware of.  We intend there to be as few limits
3710 as possible.  If you encounter an undocumented or inconvenient limit,
3711 please report that to us as a bug.  (See the section on reporting bugs in
3712 the GCC manual.)
3713
3714 Where we say something is limited @dfn{only by available memory}, that
3715 means that internal data structures impose no intrinsic limit, and space
3716 is allocated with @code{malloc} or equivalent.  The actual limit will
3717 therefore depend on many things, such as the size of other things
3718 allocated by the compiler at the same time, the amount of memory
3719 consumed by other processes on the same computer, etc.
3720
3721 @itemize @bullet
3722
3723 @item Nesting levels of @samp{#include} files.
3724
3725 We impose an arbitrary limit of 200 levels, to avoid runaway recursion.
3726 The standard requires at least 15 levels.
3727
3728 @item Nesting levels of conditional inclusion.
3729
3730 The C standard mandates this be at least 63.  CPP is limited only by
3731 available memory.
3732
3733 @item Levels of parenthesised expressions within a full expression.
3734
3735 The C standard requires this to be at least 63.  In preprocessor
3736 conditional expressions, it is limited only by available memory.
3737
3738 @item Significant initial characters in an identifier or macro name.
3739
3740 The preprocessor treats all characters as significant.  The C standard
3741 requires only that the first 63 be significant.
3742
3743 @item Number of macros simultaneously defined in a single translation unit.
3744
3745 The standard requires at least 4095 be possible.  CPP is limited only
3746 by available memory.
3747
3748 @item Number of parameters in a macro definition and arguments in a macro call.
3749
3750 We allow @code{USHRT_MAX}, which is no smaller than 65,535.  The minimum
3751 required by the standard is 127.
3752
3753 @item Number of characters on a logical source line.
3754
3755 The C standard requires a minimum of 4096 be permitted.  CPP places
3756 no limits on this, but you may get incorrect column numbers reported in
3757 diagnostics for lines longer than 65,535 characters.
3758
3759 @item Maximum size of a source file.
3760
3761 The standard does not specify any lower limit on the maximum size of a
3762 source file.  GNU cpp maps files into memory, so it is limited by the
3763 available address space.  This is generally at least two gigabytes.
3764 Depending on the operating system, the size of physical memory may or
3765 may not be a limitation.
3766
3767 @end itemize
3768
3769 @node Obsolete Features
3770 @section Obsolete Features
3771
3772 CPP has a number of features which are present mainly for
3773 compatibility with older programs.  We discourage their use in new code.
3774 In some cases, we plan to remove the feature in a future version of GCC@.
3775
3776 @menu
3777 * Assertions::
3778 * Obsolete once-only headers::
3779 @end menu
3780
3781 @node Assertions
3782 @subsection Assertions
3783 @cindex assertions
3784
3785 @dfn{Assertions} are a deprecated alternative to macros in writing
3786 conditionals to test what sort of computer or system the compiled
3787 program will run on.  Assertions are usually predefined, but you can
3788 define them with preprocessing directives or command-line options.
3789
3790 Assertions were intended to provide a more systematic way to describe
3791 the compiler's target system.  However, in practice they are just as
3792 unpredictable as the system-specific predefined macros.  In addition, they
3793 are not part of any standard, and only a few compilers support them.
3794 Therefore, the use of assertions is @strong{less} portable than the use
3795 of system-specific predefined macros.  We recommend you do not use them at
3796 all.
3797
3798 @cindex predicates
3799 An assertion looks like this:
3800
3801 @example
3802 #@var{predicate} (@var{answer})
3803 @end example
3804
3805 @noindent
3806 @var{predicate} must be a single identifier.  @var{answer} can be any
3807 sequence of tokens; all characters are significant except for leading
3808 and trailing whitespace, and differences in internal whitespace
3809 sequences are ignored.  (This is similar to the rules governing macro
3810 redefinition.)  Thus, @code{(x + y)} is different from @code{(x+y)} but
3811 equivalent to @code{@w{( x + y )}}.  Parentheses do not nest inside an
3812 answer.
3813
3814 @cindex testing predicates
3815 To test an assertion, you write it in an @samp{#if}.  For example, this
3816 conditional succeeds if either @code{vax} or @code{ns16000} has been
3817 asserted as an answer for @code{machine}.
3818
3819 @example
3820 #if #machine (vax) || #machine (ns16000)
3821 @end example
3822
3823 @noindent
3824 You can test whether @emph{any} answer is asserted for a predicate by
3825 omitting the answer in the conditional:
3826
3827 @example
3828 #if #machine
3829 @end example
3830
3831 @findex #assert
3832 Assertions are made with the @samp{#assert} directive.  Its sole
3833 argument is the assertion to make, without the leading @samp{#} that
3834 identifies assertions in conditionals.
3835
3836 @example
3837 #assert @var{predicate} (@var{answer})
3838 @end example
3839
3840 @noindent
3841 You may make several assertions with the same predicate and different
3842 answers.  Subsequent assertions do not override previous ones for the
3843 same predicate.  All the answers for any given predicate are
3844 simultaneously true.
3845
3846 @cindex assertions, cancelling
3847 @findex #unassert
3848 Assertions can be cancelled with the @samp{#unassert} directive.  It
3849 has the same syntax as @samp{#assert}.  In that form it cancels only the
3850 answer which was specified on the @samp{#unassert} line; other answers
3851 for that predicate remain true.  You can cancel an entire predicate by
3852 leaving out the answer:
3853
3854 @example
3855 #unassert @var{predicate}
3856 @end example
3857
3858 @noindent
3859 In either form, if no such assertion has been made, @samp{#unassert} has
3860 no effect.
3861
3862 You can also make or cancel assertions using command line options.
3863 @xref{Invocation}.
3864
3865 @node Obsolete once-only headers
3866 @subsection Obsolete once-only headers
3867
3868 CPP supports two more ways of indicating that a header file should be
3869 read only once.  Neither one is as portable as a wrapper @samp{#ifndef},
3870 and we recommend you do not use them in new programs.
3871
3872 @findex #import
3873 In the Objective-C language, there is a variant of @samp{#include}
3874 called @samp{#import} which includes a file, but does so at most once.
3875 If you use @samp{#import} instead of @samp{#include}, then you don't
3876 need the conditionals inside the header file to prevent multiple
3877 inclusion of the contents.  GCC permits the use of @samp{#import} in C
3878 and C++ as well as Objective-C@.  However, it is not in standard C or C++
3879 and should therefore not be used by portable programs.
3880
3881 @samp{#import} is not a well designed feature.  It requires the users of
3882 a header file to know that it should only be included once.  It is much
3883 better for the header file's implementor to write the file so that users
3884 don't need to know this.  Using a wrapper @samp{#ifndef} accomplishes
3885 this goal.
3886
3887 In the present implementation, a single use of @samp{#import} will
3888 prevent the file from ever being read again, by either @samp{#import} or
3889 @samp{#include}.  You should not rely on this; do not use both
3890 @samp{#import} and @samp{#include} to refer to the same header file.
3891
3892 Another way to prevent a header file from being included more than once
3893 is with the @samp{#pragma once} directive.  If @samp{#pragma once} is
3894 seen when scanning a header file, that file will never be read again, no
3895 matter what.
3896
3897 @samp{#pragma once} does not have the problems that @samp{#import} does,
3898 but it is not recognized by all preprocessors, so you cannot rely on it
3899 in a portable program.
3900
3901 @node Differences from previous versions
3902 @section Differences from previous versions
3903 @cindex differences from previous versions
3904
3905 This section details behavior which has changed from previous versions
3906 of CPP@.  We do not plan to change it again in the near future, but
3907 we do not promise not to, either.
3908
3909 The ``previous versions'' discussed here are 2.95 and before.  The
3910 behavior of GCC 3.0 is mostly the same as the behavior of the widely
3911 used 2.96 and 2.97 development snapshots.  Where there are differences,
3912 they generally represent bugs in the snapshots.
3913
3914 @itemize @bullet
3915
3916 @item Order of evaluation of @samp{#} and @samp{##} operators
3917
3918 The standard does not specify the order of evaluation of a chain of
3919 @samp{##} operators, nor whether @samp{#} is evaluated before, after, or
3920 at the same time as @samp{##}.  You should therefore not write any code
3921 which depends on any specific ordering.  It is possible to guarantee an
3922 ordering, if you need one, by suitable use of nested macros.
3923
3924 An example of where this might matter is pasting the arguments @samp{1},
3925 @samp{e} and @samp{-2}.  This would be fine for left-to-right pasting,
3926 but right-to-left pasting would produce an invalid token @samp{e-2}.
3927
3928 GCC 3.0 evaluates @samp{#} and @samp{##} at the same time and strictly
3929 left to right.  Older versions evaluated all @samp{#} operators first,
3930 then all @samp{##} operators, in an unreliable order.
3931
3932 @item The form of whitespace betwen tokens in preprocessor output
3933
3934 @xref{Preprocessor Output}, for the current textual format.  This is
3935 also the format used by stringification.  Normally, the preprocessor
3936 communicates tokens directly to the compiler's parser, and whitespace
3937 does not come up at all.
3938
3939 Older versions of GCC preserved all whitespace provided by the user and
3940 inserted lots more whitespace of their own, because they could not
3941 accurately predict when extra spaces were needed to prevent accidental
3942 token pasting.
3943
3944 @item Optional argument when invoking rest argument macros
3945
3946 As an extension, GCC permits you to omit the variable arguments entirely
3947 when you use a variable argument macro.  This is forbidden by the 1999 C
3948 standard, and will provoke a pedantic warning with GCC 3.0.  Previous
3949 versions accepted it silently.
3950
3951 @item @samp{##} swallowing preceding text in rest argument macros
3952
3953 Formerly, in a macro expansion, if @samp{##} appeared before a variable
3954 arguments parameter, and the set of tokens specified for that argument
3955 in the macro invocation was empty, previous versions of CPP would
3956 back up and remove the preceding sequence of non-whitespace characters
3957 (@strong{not} the preceding token).  This extension is in direct
3958 conflict with the 1999 C standard and has been drastically pared back.
3959
3960 In the current version of the preprocessor, if @samp{##} appears between
3961 a comma and a variable arguments parameter, and the variable argument is
3962 omitted entirely, the comma will be removed from the expansion.  If the
3963 variable argument is empty, or the token before @samp{##} is not a
3964 comma, then @samp{##} behaves as a normal token paste.
3965
3966 @item @samp{#line} and @samp{#include}
3967
3968 The @samp{#line} directive used to change GCC's notion of the
3969 ``directory containing the current file,'' used by @samp{#include} with
3970 a double-quoted header file name.  In 3.0 and later, it does not.
3971 @xref{Line Control}, for further explanation.
3972
3973 @item Syntax of @samp{#line}
3974
3975 In GCC 2.95 and previous, the string constant argument to @samp{#line}
3976 was treated the same way as the argument to @samp{#include}: backslash
3977 escapes were not honored, and the string ended at the second @samp{"}.
3978 This is not compliant with the C standard.  In GCC 3.0, an attempt was
3979 made to correct the behavior, so that the string was treated as a real
3980 string constant, but it turned out to be buggy.  In 3.1, the bugs have
3981 been fixed.  (We are not fixing the bugs in 3.0 because they affect
3982 relatively few people and the fix is quite invasive.)
3983
3984 @end itemize
3985
3986 @node Invocation
3987 @chapter Invocation
3988 @cindex invocation
3989 @cindex command line
3990
3991 Most often when you use the C preprocessor you will not have to invoke it
3992 explicitly: the C compiler will do so automatically.  However, the
3993 preprocessor is sometimes useful on its own.  All the options listed
3994 here are also acceptable to the C compiler and have the same meaning,
3995 except that the C compiler has different rules for specifying the output
3996 file.
3997
3998 @strong{Note:} Whether you use the preprocessor by way of @command{gcc}
3999 or @command{cpp}, the @dfn{compiler driver} is run first.  This
4000 program's purpose is to translate your command into invocations of the
4001 programs that do the actual work.  Their command line interfaces are
4002 similar but not identical to the documented interface, and may change
4003 without notice.
4004
4005 @ignore
4006 @c man begin SYNOPSIS
4007 cpp [@option{-D}@var{macro}[=@var{defn}]@dots{}] [@option{-U}@var{macro}]
4008     [@option{-I}@var{dir}@dots{}] [@option{-W}@var{warn}@dots{}]
4009     [@option{-M}|@option{-MM}] [@option{-MG}] [@option{-MF} @var{filename}]
4010     [@option{-MP}] [@option{-MQ} @var{target}@dots{}] [@option{-MT} @var{target}@dots{}]
4011     [@option{-x} @var{language}] [@option{-std=}@var{standard}]
4012     @var{infile} @var{outfile}
4013
4014 Only the most useful options are listed here; see below for the remainder.
4015 @c man end
4016 @c man begin SEEALSO
4017 gpl(7), gfdl(7), fsf-funding(7),
4018 gcc(1), as(1), ld(1), and the Info entries for @file{cpp}, @file{gcc}, and
4019 @file{binutils}.
4020 @c man end
4021 @end ignore
4022
4023 @c man begin OPTIONS
4024 The C preprocessor expects two file names as arguments, @var{infile} and
4025 @var{outfile}.  The preprocessor reads @var{infile} together with any
4026 other files it specifies with @samp{#include}.  All the output generated
4027 by the combined input files is written in @var{outfile}.
4028
4029 Either @var{infile} or @var{outfile} may be @option{-}, which as
4030 @var{infile} means to read from standard input and as @var{outfile}
4031 means to write to standard output.  Also, if either file is omitted, it
4032 means the same as if @option{-} had been specified for that file.
4033
4034 Unless otherwise noted, or the option ends in @samp{=}, all options
4035 which take an argument may have that argument appear either immediately
4036 after the option, or with a space between option and argument:
4037 @option{-Ifoo} and @option{-I foo} have the same effect.
4038
4039 @cindex grouping options
4040 @cindex options, grouping
4041 Many options have multi-letter names; therefore multiple single-letter
4042 options may @emph{not} be grouped: @option{-dM} is very different from
4043 @w{@samp{-d -M}}.
4044
4045 @cindex options
4046 @include cppopts.texi
4047 @c man end
4048
4049 @node Environment Variables
4050 @chapter Environment Variables
4051 @cindex environment variables
4052 @c man begin ENVIRONMENT
4053
4054 This section describes the environment variables that affect how CPP
4055 operates.  You can use them to specify directories or prefixes to use
4056 when searching for include files, or to control dependency output.
4057
4058 Note that you can also specify places to search using options such as
4059 @option{-I}, and control dependency output with options like
4060 @option{-M} (@pxref{Invocation}).  These take precedence over
4061 environment variables, which in turn take precedence over the
4062 configuration of GCC@.
4063  
4064 @include cppenv.texi
4065 @c man end
4066
4067 @page
4068 @include fdl.texi
4069
4070 @page
4071 @node Index of Directives
4072 @unnumbered Index of Directives
4073 @printindex fn
4074
4075 @node Option Index
4076 @unnumbered Option Index
4077 @noindent
4078 CPP's command line options and environment variables are indexed here
4079 without any initial @samp{-} or @samp{--}.
4080 @printindex op
4081
4082 @page
4083 @node Concept Index
4084 @unnumbered Concept Index
4085 @printindex cp
4086
4087 @bye