Add config suport for s390
[official-gcc.git] / gcc / cpp.texi
blob756f50ac0a1a088ce156073a4f034d8da47546cc
1 \input texinfo
2 @setfilename cpp.info
3 @settitle The C Preprocessor
5 @ifinfo
6 @dircategory Programming
7 @direntry
8 * Cpp: (cpp).                  The GNU C preprocessor.
9 @end direntry
10 @end ifinfo
12 @c @smallbook
13 @c @cropmarks
14 @c @finalout
15 @setchapternewpage odd
16 @ifinfo
17 This file documents the GNU C Preprocessor.
19 Copyright 1987, 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
20 1999, 2000, 2001 Free Software Foundation, Inc.
22 Permission is granted to make and distribute verbatim copies of
23 this manual provided the copyright notice and this permission notice
24 are preserved on all copies.
26 @ignore
27 Permission is granted to process this file through Tex and print the
28 results, provided the printed document carries copying permission
29 notice identical to this one except for the removal of this paragraph
30 (this paragraph not being relevant to the printed manual).
32 @end ignore
33 Permission is granted to copy and distribute modified versions of this
34 manual under the conditions for verbatim copying, provided also that
35 the entire resulting derived work is distributed under the terms of a
36 permission notice identical to this one.
38 Permission is granted to copy and distribute translations of this manual
39 into another language, under the above conditions for modified versions.
40 @end ifinfo
42 @titlepage
43 @c @finalout
44 @title The C Preprocessor
45 @subtitle Last revised January 2001
46 @subtitle for GCC version 2
47 @author Richard M. Stallman
48 @page
49 @vskip 2pc
50 This booklet is eventually intended to form the first chapter of a GNU 
51 C Language manual.
53 @vskip 0pt plus 1filll
54 @c man begin COPYRIGHT
55 Copyright @copyright{} 1987, 1989, 1991, 1992, 1993, 1994, 1995, 1996,
56 1997, 1998, 1999, 2000, 2001
57 Free Software Foundation, Inc.
59 Permission is granted to make and distribute verbatim copies of
60 this manual provided the copyright notice and this permission notice
61 are preserved on all copies.
63 Permission is granted to copy and distribute modified versions of this
64 manual under the conditions for verbatim copying, provided also that
65 the entire resulting derived work is distributed under the terms of a
66 permission notice identical to this one.
68 Permission is granted to copy and distribute translations of this manual
69 into another language, under the above conditions for modified versions.
70 @c man end
71 @end titlepage
72 @page
74 @node Top, Global Actions,, (DIR)
75 @chapter The C Preprocessor
76 @c man begin DESCRIPTION
78 The C preprocessor is a @dfn{macro processor} that is used automatically
79 by the C compiler to transform your program before actual compilation.
80 It is called a macro processor because it allows you to define
81 @dfn{macros}, which are brief abbreviations for longer constructs.
83 The C preprocessor is intended only for macro processing of C, C++ and
84 Objective C source files.  For macro processing of other files, you are
85 strongly encouraged to use alternatives like M4, which will likely give
86 you better results and avoid many problems.  For example, normally the C
87 preprocessor does not preserve arbitrary whitespace verbatim, but
88 instead replaces each sequence with a single space.
90 For use on C-like source files, the C preprocessor provides four
91 separate facilities that you can use as you see fit:
93 @itemize @bullet
94 @item
95 Inclusion of header files.  These are files of declarations that can be
96 substituted into your program.
98 @item
99 Macro expansion.  You can define @dfn{macros}, which are abbreviations
100 for arbitrary fragments of C code, and then the C preprocessor will
101 replace the macros with their definitions throughout the program.
103 @item
104 Conditional compilation.  Using special preprocessing directives, you
105 can include or exclude parts of the program according to various
106 conditions.
108 @item
109 Line control.  If you use a program to combine or rearrange source files
110 into an intermediate file which is then compiled, you can use line
111 control to inform the compiler of where each source line originally came
112 from.
113 @end itemize
115 C preprocessors vary in some details.  This manual discusses the GNU C
116 preprocessor, which provides a small superset of the features of ISO
117 Standard C@.
119 In its default mode, the GNU C preprocessor does not do a few things
120 required by the standard.  These are features which are rarely, if ever,
121 used, and may cause surprising changes to the meaning of a program which
122 does not expect them.  To get strict ISO Standard C, you should use the
123 @samp{-std=c89} or @samp{-std=c99} options, depending on which version
124 of the standard you want.  To get all the mandatory diagnostics, you
125 must also use @samp{-pedantic}.  @xref{Invocation}.
127 @c man end
129 @menu
130 * Global Actions::       Actions made uniformly on all input files.
131 * Directives::           General syntax of preprocessing directives.
132 * Header Files::         How and why to use header files.
133 * Macros::               How and why to use macros.
134 * Conditionals::         How and why to use conditionals.
135 * Assertions::           How and why to use assertions.
136 * Line Control::         Use of line control when you combine source files.
137 * Other Directives::     Miscellaneous preprocessing directives.
138 * Output::               Format of output from the C preprocessor.
139 * Implementation::       Implementation limits and behavior.
140 * Unreliable Features::  Undefined behavior and deprecated features.
141 * Invocation::           How to invoke the preprocessor; command options.
142 * Concept Index::        Index of concepts and terms.
143 * Index::                Index of directives, predefined macros and options.
144 @end menu
146 @node Global Actions, Directives, Top, Top
147 @section Transformations Made Globally
148 @cindex ASCII NUL handling
150 Most C preprocessor features are inactive unless you give specific
151 directives to request their use.  (Preprocessing directives are lines
152 starting with a @samp{#} token, possibly preceded by whitespace;
153 @pxref{Directives}).  However, there are four transformations that the
154 preprocessor always makes on all the input it receives, even in the
155 absence of directives.  These are, in order:
157 @enumerate
158 @item
159 Trigraphs, if enabled, are replaced with the character they represent.
161 @item
162 Backslash-newline sequences are deleted, no matter where.  This
163 feature allows you to break long lines for cosmetic purposes without
164 changing their meaning.
166 Recently, the non-traditional preprocessor has relaxed its treatment of
167 escaped newlines.  Previously, the newline had to immediately follow a
168 backslash.  The current implementation allows whitespace in the form of
169 spaces, horizontal and vertical tabs, and form feeds between the
170 backslash and the subsequent newline.  The preprocessor issues a
171 warning, but treats it as a valid escaped newline and combines the two
172 lines to form a single logical line.  This works within comments and
173 tokens, including multi-line strings, as well as between tokens.
174 Comments are @emph{not} treated as whitespace for the purposes of this
175 relaxation, since they have not yet been replaced with spaces.
177 @item
178 All comments are replaced with single spaces.
180 @item
181 Predefined macro names are replaced with their expansions
182 (@pxref{Predefined}).
183 @end enumerate
185 For end-of-line indicators, any of \n, \r\n, \n\r and \r are recognised,
186 and treated as ending a single line.  As a result, if you mix these in a
187 single file you might get incorrect line numbering, because the
188 preprocessor would interpret the two-character versions as ending just
189 one line.  Previous implementations would only handle UNIX-style \n
190 correctly, so DOS-style \r\n would need to be passed through a filter
191 first.
193 The first three transformations are done @emph{before} all other parsing
194 and before preprocessing directives are recognized.  Thus, for example,
195 you can split a line mechanically with backslash-newline anywhere
196 (except within trigraphs since they are replaced first; see below).
198 @example
200 */ # /*
201 */ defi\
202 ne FO\
203 O 10\
205 @end example
207 @noindent
208 is equivalent into @samp{#define FOO 1020}.
210 There is no way to prevent a backslash at the end of a line from being
211 interpreted as a backslash-newline.  For example,
213 @example
214 "foo\\
215 bar"
216 @end example
218 is equivalent to @code{"foo\bar"}, not to @code{"foo\\bar"}.  To avoid
219 having to worry about this, do not use the GNU extension which permits
220 multi-line strings.  Instead, use string constant concatenation:
222 @example
223    "foo\\"
224    "bar"
225 @end example
227 Your program will be more portable this way, too.
229 There are a few things to note about the above four transformations.
231 @itemize @bullet
232 @item
233 Comments and predefined macro names (or any macro names, for that
234 matter) are not recognized inside the argument of an @samp{#include}
235 directive, when it is delimited with quotes or with @samp{<} and
236 @samp{>}.
238 @item
239 Comments and predefined macro names are never recognized within a
240 character or string constant.
242 @item
243 ISO ``trigraphs'' are converted before backslash-newlines are deleted.
244 If you write what looks like a trigraph with a backslash-newline inside,
245 the backslash-newline is deleted as usual, but it is too late to
246 recognize the trigraph.
248 This is relevant only if you use the @samp{-trigraphs} option to enable
249 trigraph processing.  @xref{Invocation}.
250 @end itemize
252 The preprocessor handles null characters embedded in the input file
253 depending upon the context in which the null appears.  Note that here we
254 are referring not to the two-character escape sequence "\0", but to the
255 single character ASCII NUL.
257 There are three different contexts in which a null character may
258 appear:
260 @itemize @bullet
261 @item
262 Within comments.  Here, null characters are silently ignored.
264 @item
265 Within a string or character constant.  Here the preprocessor emits a
266 warning, but preserves the null character and passes it through to the
267 output file or compiler front-end.
269 @item
270 In any other context, the preprocessor issues a warning, and discards
271 the null character.  The preprocessor treats it like whitespace,
272 combining it with any surrounding whitespace to become a single
273 whitespace block.  Representing the null character by "^@@", this means
274 that code like
276 @example
277 #define X^@@1
278 @end example
280 is equivalent to
282 @example
283 #define X 1
284 @end example
286 and X is defined with replacement text "1".
287 @end itemize
289 @node Directives, Header Files, Global Actions, Top
290 @section Preprocessing Directives
292 @cindex preprocessing directives
293 @cindex directives
294 Most preprocessor features are active only if you use preprocessing
295 directives to request their use.
297 Preprocessing directives are lines in your program that start with
298 @samp{#}.  Whitespace is allowed before and after the @samp{#}.  The
299 @samp{#} is followed by an identifier that is the @dfn{directive name}.
300 For example, @samp{#define} is the directive that defines a macro.
302 Since the @samp{#} must be the first token on the line, it cannot come
303 from a macro expansion if you wish it to begin a directive.  Also, the
304 directive name is not macro expanded.  Thus, if @samp{foo} is defined as
305 a macro expanding to @samp{define}, that does not make @samp{#foo} a
306 valid preprocessing directive.
308 The set of valid directive names is fixed.  Programs cannot define new
309 preprocessing directives.
311 Some directive names require arguments; these make up the rest of the
312 directive line and must be separated from the directive name by
313 whitespace.  For example, @samp{#define} must be followed by a macro
314 name and the intended expansion of the macro.  @xref{Object-like
315 Macros}.
317 A preprocessing directive cannot cover more than one line.  It may be
318 logically extended with backslash-newline, but that has no effect on its
319 meaning.  Comments containing newlines can also divide the directive
320 into multiple lines, but a comment is replaced by a single space before
321 the directive is interpreted.
323 @node Header Files, Macros, Directives, Top
324 @section Header Files
326 @cindex header file
327 A header file is a file containing C declarations and macro definitions
328 (@pxref{Macros}) to be shared between several source files.  You request
329 the use of a header file in your program with the C preprocessing
330 directive @samp{#include}.
332 @menu
333 * Header Uses::         What header files are used for.
334 * Include Syntax::      How to write @samp{#include} directives.
335 * Include Operation::   What @samp{#include} does.
336 * Once-Only::           Preventing multiple inclusion of one header file.
337 * Inheritance::         Including one header file in another header file.
338 * System Headers::      Special treatment for some header files.
339 @end menu
341 @node Header Uses, Include Syntax, Header Files, Header Files
342 @subsection Uses of Header Files
344 Header files serve two kinds of purposes.
346 @itemize @bullet
347 @item
348 @cindex system header files
349 System header files declare the interfaces to parts of the operating
350 system.  You include them in your program to supply the definitions and
351 declarations you need to invoke system calls and libraries.
353 @item
354 Your own header files contain declarations for interfaces between the
355 source files of your program.  Each time you have a group of related
356 declarations and macro definitions all or most of which are needed in
357 several different source files, it is a good idea to create a header
358 file for them.
359 @end itemize
361 Including a header file produces the same results in C compilation as
362 copying the header file into each source file that needs it.  Such
363 copying would be time-consuming and error-prone.  With a header file,
364 the related declarations appear in only one place.  If they need to be
365 changed, they can be changed in one place, and programs that include the
366 header file will automatically use the new version when next recompiled.
367 The header file eliminates the labor of finding and changing all the
368 copies as well as the risk that a failure to find one copy will result
369 in inconsistencies within a program.
371 The usual convention is to give header files names that end with
372 @file{.h}.  Avoid unusual characters in header file names, as they
373 reduce portability.
375 @node Include Syntax, Include Operation, Header Uses, Header Files
376 @subsection The @samp{#include} Directive
378 @findex #include
379 Both user and system header files are included using the preprocessing
380 directive @samp{#include}.  It has three variants:
382 @table @code
383 @item #include <@var{file}>
384 This variant is used for system header files.  It searches for a file
385 named @var{file} in a list of directories specified by you, then in a
386 standard list of system directories.  You specify directories to search
387 for header files with the command option @samp{-I} (@pxref{Invocation}).
388 The option @samp{-nostdinc} inhibits searching the standard system
389 directories; in this case only the directories you specify are searched.
391 The first @samp{>} character terminates the file name.  The file name
392 may contain a @samp{<} character.
394 @item #include "@var{file}"
395 This variant is used for header files of your own program.  It searches
396 for a file named @var{file} first in the current directory, then in the
397 same directories used for system header files.  The current directory is
398 the directory of the current input file.  It is tried first because it
399 is presumed to be the location of the files that the current input file
400 refers to.  (If the @samp{-I-} option is used, the special treatment of
401 the current directory is inhibited. @xref{Invocation}.)
403 The first @samp{"} character terminates the file name.
405 In both these variants, the argument behaves like a string constant in
406 that comments are not recognized, and macro names are not expanded.
407 Thus, in @samp{#include <x/*y>} the @samp{/*} does not start a comment
408 and the directive specifies inclusion of a system header file named
409 @file{x/*y}.
411 However, in either variant, if backslashes occur within @var{file}, they
412 are considered ordinary text characters, not escape characters.  None of
413 the character escape sequences appropriate to string constants in C are
414 processed.  Thus, @samp{#include "x\n\\y"} specifies a filename
415 containing three backslashes.
417 @item #include @var{anything else}
418 @cindex computed @samp{#include}
419 This variant is called a @dfn{computed #include}.  Any @samp{#include}
420 directive whose argument does not fit the above two forms is a computed
421 include.  The text @var{anything else} is checked for macro calls, which
422 are expanded (@pxref{Macros}).  When this is done, the result must match
423 one of the above two variants --- in particular, the expansion must form
424 a string literal token, or a sequence of tokens surrounded by angle
425 braces. @xref{Implementation}.
427 This feature allows you to define a macro which controls the file name
428 to be used at a later point in the program.  One application of this is
429 to allow a site-specific configuration file for your program to specify
430 the names of the system include files to be used.  This can help in
431 porting the program to various operating systems in which the necessary
432 system header files are found in different places.
433 @end table
435 @node Include Operation, Once-Only, Include Syntax, Header Files
436 @subsection How @samp{#include} Works
438 The @samp{#include} directive works by directing the C preprocessor to
439 scan the specified file as input before continuing with the rest of the
440 current file.  The output from the preprocessor contains the output
441 already generated, followed by the output resulting from the included
442 file, followed by the output that comes from the text after the
443 @samp{#include} directive.  For example, given a header file
444 @file{header.h} as follows,
446 @example
447 char *test ();
448 @end example
450 @noindent
451 and a main program called @file{program.c} that uses the header file,
452 like this,
454 @example
455 int x;
456 #include "header.h"
458 main ()
460   printf (test ());
462 @end example
464 @noindent
465 the output generated by the C preprocessor for @file{program.c} as input
466 would be
468 @example
469 int x;
470 char *test ();
472 main ()
474   printf (test ());
476 @end example
478 Included files are not limited to declarations and macro definitions;
479 those are merely the typical uses.  Any fragment of a C program can be
480 included from another file.  The include file could even contain the
481 beginning of a statement that is concluded in the containing file, or
482 the end of a statement that was started in the including file.  However,
483 a comment or a string or character constant may not start in the
484 included file and finish in the including file.  An unterminated
485 comment, string constant or character constant in an included file is
486 considered to end (with an error message) at the end of the file.
488 It is possible for a header file to begin or end a syntactic unit such
489 as a function definition, but that would be very confusing, so don't do
492 The line following the @samp{#include} directive is always treated as a
493 separate line by the C preprocessor, even if the included file lacks a
494 final newline.
496 @node Once-Only, Inheritance, Include Operation, Header Files
497 @subsection Once-Only Include Files
498 @cindex repeated inclusion
499 @cindex including just once
501 Very often, one header file includes another.  It can easily result that
502 a certain header file is included more than once.  This may lead to
503 errors, if the header file defines structure types or typedefs, and is
504 certainly wasteful.  Therefore, we often wish to prevent multiple
505 inclusion of a header file.
507 The standard way to do this is to enclose the entire real contents of the
508 file in a conditional, like this:
510 @example
511 #ifndef FILE_FOO_SEEN
512 #define FILE_FOO_SEEN
514 @var{the entire file}
516 #endif /* FILE_FOO_SEEN */
517 @end example
519 The macro @code{FILE_FOO_SEEN} indicates that the file has been included
520 once already.  In a user header file, the macro name should not begin
521 with @samp{_}.  In a system header file, this name should begin with
522 @samp{__} to avoid conflicts with user programs.  In any kind of header
523 file, the macro name should contain the name of the file and some
524 additional text, to avoid conflicts with other header files.
526 The GNU C preprocessor is programmed to notice when a header file uses
527 this particular construct and handle it efficiently.  If a header file
528 is contained entirely in a @samp{#ifndef} conditional, modulo whitespace
529 and comments, then it remembers that fact.  If a subsequent
530 @samp{#include} specifies the same file, and the macro in the
531 @samp{#ifndef} is already defined, then the directive is skipped without
532 processing the specified file at all.
534 @findex #import
535 In the Objective C language, there is a variant of @samp{#include}
536 called @samp{#import} which includes a file, but does so at most once.
537 If you use @samp{#import} @emph{instead of} @samp{#include}, then you
538 don't need the conditionals inside the header file to prevent multiple
539 execution of the contents.
541 @samp{#import} is obsolete because it is not a well designed feature.
542 It requires the users of a header file --- the applications programmers
543 --- to know that a certain header file should only be included once.  It
544 is much better for the header file's implementor to write the file so
545 that users don't need to know this.  Using @samp{#ifndef} accomplishes
546 this goal.
548 @node Inheritance, System Headers, Once-Only, Header Files
549 @subsection Inheritance and Header Files
550 @cindex inheritance
551 @cindex overriding a header file
553 @dfn{Inheritance} is what happens when one object or file derives some
554 of its contents by virtual copying from another object or file.  In
555 the case of C header files, inheritance means that one header file 
556 includes another header file and then replaces or adds something.
558 If the inheriting header file and the base header file have different
559 names, then inheritance is straightforward: simply write @samp{#include
560 "@var{base}"} in the inheriting file.
562 Sometimes it is necessary to give the inheriting file the same name as
563 the base file.  This is less straightforward.
565 For example, suppose an application program uses the system header
566 @file{sys/signal.h}, but the version of @file{/usr/include/sys/signal.h}
567 on a particular system doesn't do what the application program expects.
568 It might be convenient to define a ``local'' version, perhaps under the
569 name @file{/usr/local/include/sys/signal.h}, to override or add to the
570 one supplied by the system.
572 You can do this by compiling with the option @samp{-I.}, and writing a
573 file @file{sys/signal.h} that does what the application program expects.
574 Making this file include the standard @file{sys/signal.h} is not so easy
575 --- writing @samp{#include <sys/signal.h>} in that file doesn't work,
576 because it includes your own version of the file, not the standard
577 system version.  Used in that file itself, this leads to an infinite
578 recursion and a fatal error in compilation.
580 @samp{#include </usr/include/sys/signal.h>} would find the proper file,
581 but that is not clean, since it makes an assumption about where the
582 system header file is found.  This is bad for maintenance, since it
583 means that any change in where the system's header files are kept
584 requires a change somewhere else.
586 @findex #include_next
587 The clean way to solve this problem is to use 
588 @samp{#include_next}, which means, ``Include the @emph{next} file with
589 this name.''  This directive works like @samp{#include} except in
590 searching for the specified file: it starts searching the list of header
591 file directories @emph{after} the directory in which the current file
592 was found.
594 Suppose you specify @samp{-I /usr/local/include}, and the list of
595 directories to search also includes @file{/usr/include}; and suppose
596 both directories contain @file{sys/signal.h}.  Ordinary @samp{#include
597 <sys/signal.h>} finds the file under @file{/usr/local/include}.  If that
598 file contains @samp{#include_next <sys/signal.h>}, it starts searching
599 after that directory, and finds the file in @file{/usr/include}.
601 @samp{#include_next} is a GCC extension and should not be used in
602 programs intended to be portable to other compilers.
604 @node System Headers,, Inheritance, Header Files
605 @subsection System Headers
606 @cindex system header files
608 The header files declaring interfaces to the operating system and
609 runtime libraries often cannot be written in strictly conforming C.
610 Therefore, GNU C gives code found in @dfn{system headers} special
611 treatment.  Certain categories of warnings are suppressed, notably those
612 enabled by @samp{-pedantic}.
614 Normally, only the headers found in specific directories are considered
615 system headers.  The set of these directories is determined when GCC is
616 compiled.  There are, however, two ways to add to the set.
618 @findex -isystem
619 The @samp{-isystem} command line option adds its argument to the list of
620 directories to search for headers, just like @samp{-I}.  In addition,
621 any headers found in that directory will be considered system headers.
622 Note that unlike @samp{-I}, you must put a space between @samp{-isystem}
623 and its argument.
625 All directories named by @samp{-isystem} are searched @strong{after} all
626 directories named by @samp{-I}, no matter what their order was on the
627 command line.  If the same directory is named by both @samp{-I} and
628 @samp{-isystem}, @samp{-I} wins; it is as if the @samp{-isystem} option
629 had never been specified at all.
631 @findex #pragma GCC system_header
632 There is also a directive, @samp{#pragma GCC system_header}, which tells
633 GCC to consider the rest of the current include file a system header, no
634 matter where it was found.  Code that comes before the @samp{#pragma} in
635 the file will not be affected.
637 @samp{#pragma GCC system_header} has no effect in the primary source file.
639 @node Macros, Conditionals, Header Files, Top
640 @section Macros
642 A macro is a sort of abbreviation which you can define once and then
643 use later.  There are many complicated features associated with macros
644 in the C preprocessor.
646 @menu
647 * Object-like Macros::   Macros that always expand the same way.
648 * Function-like Macros:: Macros that accept arguments that are substituted
649                          into the macro expansion.
650 * Macro Varargs::        Macros with variable number of arguments.
651 * Predefined::           Predefined macros that are always available.
652 * Stringification::      Macro arguments converted into string constants.
653 * Concatenation::        Building tokens from parts taken from macro arguments.
654 * Undefining::           Cancelling a macro's definition.
655 * Redefining::           Changing a macro's definition.
656 * Poisoning::            Ensuring a macro is never defined or used.
657 * Macro Pitfalls::       Macros can confuse the unwary.  Here we explain
658                            several common problems and strange features.
659 @end menu
661 @node Object-like Macros, Function-like Macros, Macros, Macros
662 @subsection Object-like Macros
663 @cindex object-like macro
664 @cindex manifest constant
666 An @dfn{object-like macro} is a kind of abbreviation.  It is a name
667 which stands for a fragment of code.  Some people refer to these as
668 @dfn{manifest constants}.
670 Before you can use a macro, you must @dfn{define} it explicitly with the
671 @samp{#define} directive.  @samp{#define} is followed by the name of the
672 macro and then the token sequence it should be an abbreviation for,
673 which is variously referred to as the macro's @dfn{body},
674 @dfn{expansion} or @dfn{replacement list}.  For example,
676 @example
677 #define BUFFER_SIZE 1020
678 @end example
680 @noindent
681 defines a macro named @samp{BUFFER_SIZE} as an abbreviation for the
682 token @samp{1020}.  If somewhere after this @samp{#define} directive
683 there comes a C statement of the form
685 @example
686 foo = (char *) xmalloc (BUFFER_SIZE);
687 @end example
689 @noindent
690 then the C preprocessor will recognize and @dfn{expand} the macro
691 @samp{BUFFER_SIZE}, resulting in
693 @example
694 foo = (char *) xmalloc (1020);
695 @end example
697 The use of all upper case for macro names is a standard convention.
698 Programs are easier to read when it is possible to tell at a glance
699 which names are macros.
701 Normally, a macro definition can only span a single logical line, like
702 all C preprocessing directives.  Comments within a macro definition may
703 contain newlines, which make no difference since each comment is
704 replaced by a space regardless of its contents.
706 Apart from this, there is no restriction on what can go in a macro body
707 provided it decomposes into valid preprocessing tokens.  In particular,
708 parentheses need not balance, and the body need not resemble valid C
709 code.  (If it does not, you may get error messages from the C
710 compiler when you use the macro.)
712 The C preprocessor scans your program sequentially, so macro definitions
713 take effect at the place you write them.  Therefore, the following input
714 to the C preprocessor
716 @example
717 foo = X;
718 #define X 4
719 bar = X;
720 @end example
722 @noindent
723 produces as output
725 @example
726 foo = X;
728 bar = 4;
729 @end example
731 When the preprocessor expands a macro name, the macro's expansion
732 replaces the macro invocation, and the result is re-scanned for more
733 macros to expand.  For example, after
735 @example
736 #define BUFSIZE 1020
737 #define TABLESIZE BUFSIZE
738 @end example
740 @noindent
741 the name @samp{TABLESIZE} when used in the program would go through two
742 stages of expansion, resulting ultimately in @samp{1020}.
744 This is not the same as defining @samp{TABLESIZE} to be @samp{1020}.
745 The @samp{#define} for @samp{TABLESIZE} uses exactly the expansion you
746 specify --- in this case, @samp{BUFSIZE} --- and does not check to see
747 whether it too contains macro names.  Only when you @emph{use}
748 @samp{TABLESIZE} is the result of its expansion scanned for more macro
749 names.  @xref{Cascaded Macros}.
751 @node Function-like Macros, Macro Varargs, Object-like Macros, Macros
752 @subsection Macros with Arguments
753 @cindex macros with argument
754 @cindex arguments in macro definitions
755 @cindex function-like macro
757 An object-like macro is always replaced by exactly the same tokens each
758 time it is used.  Macros can be made more flexible by taking
759 @dfn{arguments}.  Arguments are fragments of code that you supply each
760 time the macro is used.  These fragments are included in the expansion
761 of the macro according to the directions in the macro definition.  A
762 macro that accepts arguments is called a @dfn{function-like macro}
763 because the syntax for using it looks like a function call.
765 @findex #define
766 To define a macro that uses arguments, you write a @samp{#define}
767 directive with a list of @dfn{parameters} in parentheses after the name
768 of the macro.  The parameters must be valid C identifiers, separated by
769 commas and optionally whitespace.  The @samp{(} must follow the macro
770 name immediately, with no space in between.  If you leave a space, you
771 instead define an object-like macro whose expansion begins with a
772 @samp{(}, and often leads to confusing errors at compile time.
774 As an example, here is a macro that computes the minimum of two numeric
775 values, as it is defined in many C programs:
777 @example
778 #define min(X, Y)  ((X) < (Y) ? (X) : (Y))
779 @end example
781 @noindent
782 (This is not the best way to define a ``minimum'' macro in GNU C@.
783 @xref{Side Effects}, for more information.)
785 To invoke a function-like macro, you write the name of the macro
786 followed by a list of @dfn{arguments} in parentheses, separated by
787 commas.  The invocation of the macro need not be restricted to a single
788 logical line - it can cross as many lines in the source file as you
789 wish.  The number of arguments you give must match the number of
790 parameters in the macro definition; empty arguments are fine.  Examples
791 of use of the macro @samp{min} include @samp{min (1, 2)} and @samp{min
792 (x + 28, *p)}.
794 The expansion text of the macro depends on the arguments you use.  Each
795 macro parameter is replaced throughout the macro expansion with the
796 tokens of the corresponding argument.  Leading and trailing argument
797 whitespace is dropped, and all whitespace between the tokens of an
798 argument is reduced to a single space.  Using the same macro @samp{min}
799 defined above, @samp{min (1, 2)} expands into
801 @example
802 ((1) < (2) ? (1) : (2))
803 @end example
805 @noindent
806 where @samp{1} has been substituted for @samp{X} and @samp{2} for @samp{Y}.
808 Likewise, @samp{min (x + 28, *p)} expands into
810 @example
811 ((x + 28) < (*p) ? (x + 28) : (*p))
812 @end example
814 Parentheses within each argument must balance; a comma within such
815 parentheses does not end the argument.  However, there is no requirement
816 for square brackets or braces to balance, and they do not prevent a
817 comma from separating arguments.  Thus,
819 @example
820 macro (array[x = y, x + 1])
821 @end example
823 @noindent
824 passes two arguments to @code{macro}: @samp{array[x = y} and @samp{x +
825 1]}.  If you want to supply @samp{array[x = y, x + 1]} as an argument,
826 you must write it as @samp{array[(x = y, x + 1)]}, which is equivalent C
827 code.
829 After the arguments have been substituted into the macro body, the
830 resulting expansion replaces the macro invocation, and re-scanned for
831 more macro calls.  Therefore even arguments can contain calls to other
832 macros, either with or without arguments, and even to the same macro.
833 For example, @samp{min (min (a, b), c)} expands into this text:
835 @example
836 ((((a) < (b) ? (a) : (b))) < (c)
837  ? (((a) < (b) ? (a) : (b)))
838  : (c))
839 @end example
841 @noindent
842 (Line breaks shown here for clarity would not actually be generated.)
844 @cindex empty macro arguments
845 If a macro @code{foo} takes one argument, and you want to supply an
846 empty argument, simply supply no preprocessing tokens.  Since whitespace
847 does not form a preprocessing token, it is optional.  For example,
848 @samp{foo ()}, @samp{foo ( )} and @samp{bar (, arg2)}.
850 Previous GNU preprocessor implementations and documentation were
851 incorrect on this point, insisting that a function-like macro that takes
852 a single argument be passed a space if an empty argument was required.
854 If you use a macro name followed by something other than a @samp{(}
855 (after ignoring any whitespace that might follow), it does not form an
856 invocation of the macro, and the preprocessor does not change what you
857 have written.  Therefore, it is possible for the same identifier to be a
858 variable or function in your program as well as a macro, and you can
859 choose in each instance whether to refer to the macro (if an actual
860 argument list follows) or the variable or function (if an argument list
861 does not follow).  For example,
863 @example
864 #define foo(X) X
865 foo bar foo(baz)
866 @end example
868 expands to @samp{foo bar baz}.  Such dual use of one name could be
869 confusing and should be avoided except when the two meanings are
870 effectively synonymous: that is, when the name is both a macro and a
871 function and the two have similar effects.  You can think of the name
872 simply as a function; use of the name for purposes other than calling it
873 (such as, to take the address) will refer to the function, while calls
874 will expand the macro and generate better but equivalent code.
876 For example, you can use a function named @samp{min} in the same source
877 file that defines the macro.  If you write @samp{&min} with no argument
878 list, you refer to the function.  If you write @samp{min (x, bb)}, with
879 an argument list, the macro is expanded.  If you write @samp{(min) (a,
880 bb)}, where the name @samp{min} is not followed by an open-parenthesis,
881 the macro is not expanded, so you wind up with a call to the function
882 @samp{min}.
884 In the definition of a macro with arguments, the list of argument names
885 must follow the macro name immediately with no space in between.  If
886 there is a space after the macro name, the macro is defined as taking no
887 arguments, and all the rest of the line is taken to be the expansion.
888 The reason for this is that it is often useful to define a macro that
889 takes no arguments and whose definition begins with an identifier in
890 parentheses.  This rule makes it possible for you to do either this:
892 @example
893 #define FOO(x) - 1 / (x)
894 @end example
896 @noindent
897 (which defines @samp{FOO} to take an argument and expand into minus the
898 reciprocal of that argument) or this:
900 @example
901 #define BAR (x) - 1 / (x)
902 @end example
904 @noindent
905 (which defines @samp{BAR} to take no argument and always expand into
906 @samp{(x) - 1 / (x)}).
908 Note that the @emph{uses} of a macro with arguments can have spaces
909 before the left parenthesis; it's the @emph{definition} where it matters
910 whether there is a space.
912 @node Macro Varargs, Predefined, Function-like Macros, Macros
913 @subsection Macros with Variable Numbers of Arguments
914 @cindex variable number of arguments
915 @cindex macro with variable arguments
916 @cindex rest argument (in macro)
918 In the ISO C standard of 1999, a macro can be declared to accept a
919 variable number of arguments much as a function can.  The syntax for
920 defining the macro is similar to that of a function.  Here is an
921 example:
923 @example
924 #define eprintf(...) fprintf (stderr, __VA_ARGS__)
925 @end example
927 Here @samp{@dots{}} is a @dfn{variable argument}.  In the invocation of
928 such a macro, it represents the zero or more tokens until the closing
929 parenthesis that ends the invocation, including any commas.  This set of
930 tokens replaces the identifier @code{__VA_ARGS__} in the macro body
931 wherever it appears.  Thus, we have this expansion:
933 @example
934 eprintf ("%s:%d: ", input_file_name, line_number)
935 @expansion{}
936 fprintf (stderr, "%s:%d: " , input_file_name, line_number)
937 @end example
939 Within a @samp{#define} directive, ISO C mandates that the only place
940 the identifier @code{__VA_ARGS__} can appear is in the replacement list
941 of a variable-argument macro.  It may not be used as a macro name, macro
942 argument name, or within a different type of macro.  It may also be
943 forbidden in open text; the standard is ambiguous.  We recommend you
944 avoid using it except for its defined purpose.
946 If your macro is complicated, you may want a more descriptive name for
947 the variable argument than @code{__VA_ARGS__}.  GNU cpp permits this, as
948 an extension.  You may write an argument name immediately before the
949 @samp{@dots{}}; that name is used for the variable argument.  The
950 @code{eprintf} macro above could be written
952 @example
953 #define eprintf(args...) fprintf (stderr, args)
954 @end example
956 @noindent
957 using this extension.  You cannot use @code{__VA_ARGS__} and this
958 extension in the same macro.
960 We might instead have defined eprintf as follows:
962 @example
963 #define eprintf(format, ...) fprintf (stderr, format, __VA_ARGS__)
964 @end example
966 This formulation looks more descriptive, but cannot be used as flexibly.
967 There is no way to produce expanded output of
969 @example
970 fprintf (stderr, "success!\n")
971 @end example
973 @noindent
974 because, in standard C, you are not allowed to leave the variable
975 argument out entirely, and passing an empty argument for the variable
976 arguments will not do what you want.  Writing
978 @example
979 eprintf ("success!\n", )
980 @end example
982 @noindent
983 produces
985 @example
986 fprintf (stderr, "success!\n",)
987 @end example
989 @noindent
990 where the extra comma originates from the replacement list and not from
991 the arguments to eprintf.
993 There is another extension in the GNU C preprocessor which deals with
994 this difficulty.  First, you are allowed to leave the variable argument
995 out entirely:
997 @example
998 eprintf ("success!\n")
999 @end example
1001 Second, the @samp{##} token paste operator has a special meaning when
1002 placed between a comma and a variable argument.  If you write
1004 @example
1005 #define eprintf(format, ...) fprintf (stderr, format, ##__VA_ARGS__)
1006 @end example
1008 and the variable argument is left out when the @samp{eprintf} macro is
1009 used, then the comma before the @samp{##} will be deleted.  This does
1010 @emph{not} happen if you pass an empty argument, nor does it happen if
1011 the token preceding @samp{##} is anything other than a comma.
1013 Previous versions of the preprocessor implemented this extension much
1014 more generally.  We have restricted it in order to minimize the
1015 difference from the C standard.  @xref{Unreliable Features}.
1017 @node Predefined, Stringification, Macro Varargs, Macros
1018 @subsection Predefined Macros
1020 @cindex predefined macros
1021 Several object-like macros are predefined; you use them without
1022 supplying their definitions.  They fall into two classes: standard
1023 macros and system-specific macros.
1025 @menu
1026 * Standard Predefined::     Standard predefined macros.
1027 * Nonstandard Predefined::  Nonstandard predefined macros.
1028 @end menu
1030 @node Standard Predefined, Nonstandard Predefined, Predefined, Predefined
1031 @subsubsection Standard Predefined Macros
1032 @cindex standard predefined macros
1034 The standard predefined macros are available with the same meanings
1035 regardless of the machine or operating system on which you are using GNU
1036 C@.  Their names all start and end with double underscores.  Those
1037 preceding @code{__GNUC__} in this table are standardized by ISO C; the
1038 rest are GNU C extensions.
1040 @table @code
1041 @item __FILE__
1042 @findex __FILE__
1043 This macro expands to the name of the current input file, in the form of
1044 a C string constant.  The precise name returned is the one that was
1045 specified in @samp{#include} or as the input file name argument.  For
1046 example, @samp{"/usr/local/include/myheader.h"} is a possible expansion
1047 of this macro.
1049 @item __LINE__
1050 @findex __LINE__
1051 This macro expands to the current input line number, in the form of a
1052 decimal integer constant.  While we call it a predefined macro, it's
1053 a pretty strange macro, since its ``definition'' changes with each
1054 new line of source code.
1056 This and @samp{__FILE__} are useful in generating an error message to
1057 report an inconsistency detected by the program; the message can state
1058 the source line at which the inconsistency was detected.  For example,
1060 @smallexample
1061 fprintf (stderr, "Internal error: "
1062                  "negative string length "
1063                  "%d at %s, line %d.",
1064          length, __FILE__, __LINE__);
1065 @end smallexample
1067 A @samp{#include} directive changes the expansions of @samp{__FILE__}
1068 and @samp{__LINE__} to correspond to the included file.  At the end of
1069 that file, when processing resumes on the input file that contained
1070 the @samp{#include} directive, the expansions of @samp{__FILE__} and
1071 @samp{__LINE__} revert to the values they had before the
1072 @samp{#include} (but @samp{__LINE__} is then incremented by one as
1073 processing moves to the line after the @samp{#include}).
1075 The expansions of both @samp{__FILE__} and @samp{__LINE__} are altered
1076 if a @samp{#line} directive is used.  @xref{Line Control}.
1078 @item __DATE__
1079 @findex __DATE__
1080 This macro expands to a string constant that describes the date on
1081 which the preprocessor is being run.  The string constant contains
1082 eleven characters and looks like @w{@samp{"Feb  1 1996"}}.
1083 @c After reformatting the above, check that the date remains `Feb  1 1996',
1084 @c all on one line, with two spaces between the `Feb' and the `1'.
1086 @item __TIME__
1087 @findex __TIME__
1088 This macro expands to a string constant that describes the time at
1089 which the preprocessor is being run.  The string constant contains
1090 eight characters and looks like @samp{"23:59:01"}.
1092 @item __STDC__
1093 @findex __STDC__
1094 This macro expands to the constant 1, to signify that this is ISO
1095 Standard C@.  (Whether that is actually true depends on what C compiler
1096 will operate on the output from the preprocessor.)
1098 On some hosts, system include files use a different convention, where
1099 @samp{__STDC__} is normally 0, but is 1 if the user specifies strict
1100 conformance to the C Standard.  The preprocessor follows the host
1101 convention when processing system include files, but when processing
1102 user files it follows the usual GNU C convention.
1104 This macro is not defined if the @samp{-traditional} option is used.
1106 @item __STDC_VERSION__
1107 @findex __STDC_VERSION__
1108 This macro expands to the C Standard's version number, a long integer
1109 constant of the form @samp{@var{yyyy}@var{mm}L} where @var{yyyy} and
1110 @var{mm} are the year and month of the Standard version.  This signifies
1111 which version of the C Standard the preprocessor conforms to.  Like
1112 @samp{__STDC__}, whether this version number is accurate for the entire
1113 implementation depends on what C compiler will operate on the output
1114 from the preprocessor.
1116 This macro is not defined if the @samp{-traditional} option is used.
1118 @item __GNUC__
1119 @findex __GNUC__
1120 This macro is defined if and only if this is GNU C@.  This macro is
1121 defined only when the entire GNU C compiler is in use; if you invoke the
1122 preprocessor directly, @samp{__GNUC__} is undefined.  The value
1123 identifies the major version number of GNU CC (@samp{1} for GNU CC
1124 version 1, which is now obsolete, and @samp{2} for version 2).
1126 @item __GNUC_MINOR__
1127 @findex __GNUC_MINOR__
1128 The macro contains the minor version number of the compiler.  This can
1129 be used to work around differences between different releases of the
1130 compiler (for example, if GCC 2.6.x is known to support a feature, you
1131 can test for @code{__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 6)}).
1133 @item __GNUC_PATCHLEVEL__
1134 @findex __GNUC_PATCHLEVEL__
1135 This macro contains the patch level of the compiler.  This can be
1136 used to work around differences between different patch level releases
1137 of the compiler (for example, if GCC 2.6.2 is known to contain a bug,
1138 whereas GCC 2.6.3 contains a fix, and you have code which can workaround
1139 the problem depending on whether the bug is fixed or not, you can test for
1140 @code{__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 6) || 
1141 (__GNUC__ == 2 && __GNUC_MINOR__ == 6 && __GNUC_PATCHLEVEL__ >= 3)}).
1143 @item __GNUG__
1144 @findex __GNUG__
1145 The GNU C compiler defines this when the compilation language is
1146 C++; use @samp{__GNUG__} to distinguish between GNU C and GNU
1147 C++.
1149 @item __cplusplus 
1150 @findex __cplusplus 
1151 The ISO standard for C++ requires predefining this variable.  You can
1152 use @samp{__cplusplus} to test whether a header is compiled by a C
1153 compiler or a C++ compiler. The compiler currently uses a value of
1154 @samp{1}, instead of the value @samp{199711L}, which would indicate full
1155 conformance with the standard.
1157 @item __STRICT_ANSI__
1158 @findex __STRICT_ANSI__
1159 GNU C defines this macro if and only if the @option{-ansi} switch, or a
1160 @option{-std} switch specifying strict conformance to some version of ISO C,
1161 was specified when GNU C was invoked.  Its definition is the null string.
1162 This macro exists primarily to direct certain GNU header files not to
1163 define certain traditional Unix constructs which are incompatible with
1164 ISO C@.
1166 @item __BASE_FILE__
1167 @findex __BASE_FILE__
1168 This macro expands to the name of the main input file, in the form
1169 of a C string constant.  This is the source file that was specified
1170 on the command line of the preprocessor or C compiler.
1172 @item __INCLUDE_LEVEL__
1173 @findex __INCLUDE_LEVEL_
1174 This macro expands to a decimal integer constant that represents the
1175 depth of nesting in include files.  The value of this macro is
1176 incremented on every @samp{#include} directive and decremented at the
1177 end of every included file.  It starts out at 0, it's value within the
1178 base file specified on the command line.
1180 @item __VERSION__
1181 @findex __VERSION__
1182 This macro expands to a string constant which describes the version
1183 number of GNU C@.  The string is normally a sequence of decimal numbers
1184 separated by periods, such as @samp{"2.6.0"}.
1186 @item __OPTIMIZE__
1187 @findex __OPTIMIZE__
1188 GNU CC defines this macro in optimizing compilations.  It causes certain
1189 GNU header files to define alternative macro definitions for some system
1190 library functions.  You should not refer to or test the definition of
1191 this macro unless you make very sure that programs will execute with the
1192 same effect regardless.
1194 @item __OPTIMIZE_SIZE__
1195 @findex __OPTIMIZE_SIZE__
1196 GNU CC defines this macro when optimizing for size with @samp{-Os}.  It
1197 causes certain GNU header files to define alternative macro definitions
1198 for some system library functions.  You should not refer to or test the
1199 definition of this macro unless you make very sure that programs will
1200 execute with the same effect regardless.
1202 @item __CHAR_UNSIGNED__
1203 @findex __CHAR_UNSIGNED__
1204 GNU C defines this macro if and only if the data type @code{char} is
1205 unsigned on the target machine.  It exists to cause the standard header
1206 file @file{limits.h} to work correctly.  You should not refer to this
1207 macro yourself; instead, refer to the standard macros defined in
1208 @file{limits.h}.  The preprocessor uses this macro to determine whether
1209 or not to sign-extend large character constants written in octal; see
1210 @ref{#if Directive,,The @samp{#if} Directive}.
1212 @item __REGISTER_PREFIX__
1213 @findex __REGISTER_PREFIX__
1214 This macro expands to a string (not a string constant) describing the
1215 prefix applied to CPU registers in assembler code.  You can use it to
1216 write assembler code that is usable in multiple environments.  For
1217 example, in the @samp{m68k-aout} environment it expands to the null
1218 string, but in the @samp{m68k-coff} environment it expands to the string
1219 @samp{%}.
1221 @item __USER_LABEL_PREFIX__
1222 @findex __USER_LABEL_PREFIX__
1223 Similar to @code{__REGISTER_PREFIX__}, but describes the prefix applied
1224 to user generated labels in assembler code.  For example, in the
1225 @samp{m68k-aout} environment it expands to the string @samp{_}, but in
1226 the @samp{m68k-coff} environment it expands to the null string.  This
1227 does not work with the @samp{-mno-underscores} option that the i386
1228 OSF/rose and m88k targets provide nor with the @samp{-mcall*} options of
1229 the rs6000 System V Release 4 target.
1230 @end table
1232 @node Nonstandard Predefined,, Standard Predefined, Predefined
1233 @subsubsection Nonstandard Predefined Macros
1235 The C preprocessor normally has several predefined macros that vary
1236 between machines because their purpose is to indicate what type of
1237 system and machine is in use.  This manual, being for all systems and
1238 machines, cannot tell you exactly what their names are; instead, we
1239 offer a list of some typical ones.  You can use @samp{cpp -dM} to see
1240 the values of predefined macros; see @ref{Invocation}.
1242 Some nonstandard predefined macros describe the operating system in use,
1243 with more or less specificity.  For example,
1245 @table @code
1246 @item unix
1247 @findex unix
1248 @samp{unix} is normally predefined on all Unix systems.
1250 @item BSD
1251 @findex BSD
1252 @samp{BSD} is predefined on recent versions of Berkeley Unix
1253 (perhaps only in version 4.3).
1254 @end table
1256 Other nonstandard predefined macros describe the kind of CPU, with more or
1257 less specificity.  For example,
1259 @table @code
1260 @item vax
1261 @findex vax
1262 @samp{vax} is predefined on Vax computers.
1264 @item mc68000
1265 @findex mc68000
1266 @samp{mc68000} is predefined on most computers whose CPU is a Motorola
1267 68000, 68010 or 68020.
1269 @item m68k
1270 @findex m68k
1271 @samp{m68k} is also predefined on most computers whose CPU is a 68000,
1272 68010 or 68020; however, some makers use @samp{mc68000} and some use
1273 @samp{m68k}.  Some predefine both names.  What happens in GNU C
1274 depends on the system you are using it on.
1276 @item M68020
1277 @findex M68020
1278 @samp{M68020} has been observed to be predefined on some systems that
1279 use 68020 CPUs --- in addition to @samp{mc68000} and @samp{m68k}, which
1280 are less specific.
1282 @item _AM29K
1283 @findex _AM29K
1284 @itemx _AM29000
1285 @findex _AM29000
1286 Both @samp{_AM29K} and @samp{_AM29000} are predefined for the AMD 29000
1287 CPU family.
1289 @item ns32000
1290 @findex ns32000
1291 @samp{ns32000} is predefined on computers which use the National
1292 Semiconductor 32000 series CPU.
1293 @end table
1295 Yet other nonstandard predefined macros describe the manufacturer of
1296 the system.  For example,
1298 @table @code
1299 @item sun
1300 @findex sun
1301 @samp{sun} is predefined on all models of Sun computers.
1303 @item pyr
1304 @findex pyr
1305 @samp{pyr} is predefined on all models of Pyramid computers.
1307 @item sequent
1308 @findex sequent
1309 @samp{sequent} is predefined on all models of Sequent computers.
1310 @end table
1312 These predefined symbols are not only nonstandard, they are contrary to the
1313 ISO standard because their names do not start with underscores.
1314 Therefore, the option @samp{-ansi} inhibits the definition of these
1315 symbols.
1317 This tends to make @samp{-ansi} useless, since many programs depend on
1318 the customary nonstandard predefined symbols.  Even system header files
1319 check them and will generate incorrect declarations if they do not find
1320 the names that are expected.  You might think that the header files
1321 supplied for the Uglix computer would not need to test what machine they
1322 are running on, because they can simply assume it is the Uglix; but
1323 often they do, and they do so using the customary names.  As a result,
1324 very few C programs will compile with @samp{-ansi}.  We intend to avoid
1325 such problems on the GNU system.
1327 What, then, should you do in an ISO C program to test the type of machine
1328 it will run on?
1330 GNU C offers a parallel series of symbols for this purpose, whose names
1331 are made from the customary ones by adding @samp{__} at the beginning
1332 and end.  Thus, the symbol @code{__vax__} would be available on a Vax,
1333 and so on.
1335 The set of nonstandard predefined names in the GNU C preprocessor is
1336 controlled (when @code{cpp} is itself compiled) by the macro
1337 @samp{CPP_PREDEFINES}, which should be a string containing @samp{-D}
1338 options, separated by spaces.  For example, on the Sun 3, we use the
1339 following definition:
1341 @example
1342 #define CPP_PREDEFINES "-Dmc68000 -Dsun -Dunix -Dm68k"
1343 @end example
1345 @noindent 
1346 This macro is usually specified in @file{tm.h}.
1348 @node Stringification, Concatenation, Predefined, Macros
1349 @subsection Stringification
1351 @cindex stringification
1352 @dfn{Stringification} means turning a sequence of preprocessing tokens
1353 into a string literal.  For example, stringifying @samp{foo (z)} results
1354 in @samp{"foo (z)"}.
1356 In the C preprocessor, stringification is possible when macro arguments
1357 are substituted during macro expansion.  When a parameter appears
1358 preceded by a @samp{#} token in the replacement list of a function-like
1359 macro, it indicates that both tokens should be replaced with the
1360 stringification of the corresponding argument during expansion.  The
1361 same argument may be substituted in other places in the definition
1362 without stringification if the argument name appears in those places
1363 with no preceding @samp{#}.
1365 Here is an example of a macro definition that uses stringification:
1367 @smallexample
1368 @group
1369 #define WARN_IF(EXP) \
1370 do @{ if (EXP) \
1371         fprintf (stderr, "Warning: " #EXP "\n"); @} \
1372 while (0)
1373 @end group
1374 @end smallexample
1376 @noindent
1377 Here the argument for @samp{EXP} is substituted once, as-is, into the
1378 @samp{if} statement, and once, stringified, into the argument to
1379 @samp{fprintf}.  The @samp{do} and @samp{while (0)} are a kludge to make
1380 it possible to write @samp{WARN_IF (@var{arg});}, which the resemblance
1381 of @samp{WARN_IF} to a function would make C programmers want to do; see
1382 @ref{Swallow Semicolon}.
1384 The stringification feature is limited to transforming the tokens of a
1385 macro argument into a string constant: there is no way to combine the
1386 argument with surrounding text and stringify it all together.  The
1387 example above shows how an equivalent result can be obtained in ISO
1388 Standard C, using the fact that adjacent string constants are
1389 concatenated by the C compiler to form a single string constant.  The
1390 preprocessor stringifies the actual value of @samp{EXP} into a separate
1391 string constant, resulting in text like
1393 @smallexample
1394 @group
1395 do @{ if (x == 0) \
1396         fprintf (stderr, "Warning: " "x == 0" "\n"); @} \
1397 while (0)
1398 @end group
1399 @end smallexample
1401 @noindent
1402 but the compiler then sees three consecutive string constants and
1403 concatenates them into one, producing effectively
1405 @smallexample
1406 do @{ if (x == 0) \
1407         fprintf (stderr, "Warning: x == 0\n"); @} \
1408 while (0)
1409 @end smallexample
1411 Stringification in C involves more than putting double-quote characters
1412 around the fragment.  The preprocessor backslash-escapes the surrounding
1413 quotes of string literals, and all backslashes within string and
1414 character constants, in order to get a valid C string constant with the
1415 proper contents.  Thus, stringifying @samp{p = "foo\n";} results in
1416 @samp{"p = \"foo\\n\";"}.  However, backslashes that are not inside
1417 string or character constants are not duplicated: @samp{\n} by itself
1418 stringifies to @samp{"\n"}.
1420 Whitespace (including comments) in the text being stringified is handled
1421 according to precise rules.  All leading and trailing whitespace is
1422 ignored.  Any sequence of whitespace in the middle of the text is
1423 converted to a single space in the stringified result.
1425 @node Concatenation, Undefining, Stringification, Macros
1426 @subsection Concatenation
1427 @cindex concatenation
1428 @cindex @samp{##}
1429 @dfn{Concatenation} means joining two strings into one.  In the context
1430 of macro expansion, concatenation refers to joining two preprocessing
1431 tokens to form one.  In particular, a token of a macro argument can be
1432 concatenated with another argument's token or with fixed text to produce
1433 a longer name.  The longer name might be the name of a function,
1434 variable, type, or a C keyword; it might even be the name of another
1435 macro, in which case it will be expanded.
1437 When you define a function-like or object-like macro, you request
1438 concatenation with the special operator @samp{##} in the macro's
1439 replacement list.  When the macro is called, any arguments are
1440 substituted without performing macro expansion, every @samp{##} operator
1441 is deleted, and the two tokens on either side of it are concatenated to
1442 form a single token.
1444 Consider a C program that interprets named commands.  There probably needs
1445 to be a table of commands, perhaps an array of structures declared as
1446 follows:
1448 @example
1449 struct command
1451   char *name;
1452   void (*function) ();
1455 struct command commands[] =
1457   @{ "quit", quit_command@},
1458   @{ "help", help_command@},
1459   @dots{}
1461 @end example
1463 It would be cleaner not to have to give each command name twice, once in
1464 the string constant and once in the function name.  A macro which takes the
1465 name of a command as an argument can make this unnecessary.  The string
1466 constant can be created with stringification, and the function name by
1467 concatenating the argument with @samp{_command}.  Here is how it is done:
1469 @example
1470 #define COMMAND(NAME)  @{ #NAME, NAME ## _command @}
1472 struct command commands[] =
1474   COMMAND (quit),
1475   COMMAND (help),
1476   @dots{}
1478 @end example
1480 The usual case of concatenation is concatenating two names (or a name
1481 and a number) into a longer name.  This isn't the only valid case.
1482 It is also possible to concatenate two numbers (or a number and a name,
1483 such as @samp{1.5} and @samp{e3}) into a number.  Also, multi-character
1484 operators such as @samp{+=} can be formed by concatenation.  However,
1485 two tokens that don't together form a valid token cannot be
1486 concatenated.  For example, concatenation of @samp{x} on one side and
1487 @samp{+} on the other is not meaningful because those two tokens do not
1488 form a valid preprocessing token when concatenated.  UNDEFINED
1490 Keep in mind that the C preprocessor converts comments to whitespace
1491 before macros are even considered.  Therefore, you cannot create a
1492 comment by concatenating @samp{/} and @samp{*}: the @samp{/*} sequence
1493 that starts a comment is not a token, but rather the beginning of a
1494 comment.  You can freely use comments next to @samp{##} in a macro
1495 definition, or in arguments that will be concatenated, because the
1496 comments will be converted to spaces at first sight, and concatenation
1497 operates on tokens and so ignores whitespace.
1499 @node Undefining, Redefining, Concatenation, Macros
1500 @subsection Undefining Macros
1502 @cindex undefining macros
1503 To @dfn{undefine} a macro means to cancel its definition.  This is done
1504 with the @samp{#undef} directive.  @samp{#undef} is followed by the macro
1505 name to be undefined.
1507 Like definition, undefinition occurs at a specific point in the source
1508 file, and it applies starting from that point.  The name ceases to be a
1509 macro name, and from that point on it is treated by the preprocessor as
1510 if it had never been a macro name.
1512 For example,
1514 @example
1515 #define FOO 4
1516 x = FOO;
1517 #undef FOO
1518 x = FOO;
1519 @end example
1521 @noindent
1522 expands into
1524 @example
1525 x = 4;
1527 x = FOO;
1528 @end example
1530 @noindent
1531 In this example, @samp{FOO} had better be a variable or function as well
1532 as (temporarily) a macro, in order for the result of the expansion to be
1533 valid C code.
1535 The same form of @samp{#undef} directive will cancel definitions with
1536 arguments or definitions that don't expect arguments.  The @samp{#undef}
1537 directive has no effect when used on a name not currently defined as a
1538 macro.
1540 @node Redefining, Poisoning, Undefining, Macros
1541 @subsection Redefining Macros
1543 @cindex redefining macros
1544 @dfn{Redefining} a macro means defining (with @samp{#define}) a name that
1545 is already defined as a macro.
1547 A redefinition is trivial if the new definition is transparently
1548 identical to the old one.  You probably wouldn't deliberately write a
1549 trivial redefinition, but they can happen automatically when a header
1550 file is included more than once (@pxref{Header Files}), so they are
1551 accepted silently and without effect.
1553 Nontrivial redefinition is considered likely to be an error, so it
1554 provokes a warning message from the preprocessor.  However, sometimes it
1555 is useful to change the definition of a macro in mid-compilation.  You
1556 can inhibit the warning by undefining the macro with @samp{#undef}
1557 before the second definition.
1559 In order for a redefinition to be trivial, the parameter names must
1560 match and be in the same order, and the new replacement list must
1561 exactly match the one already in effect, with two possible exceptions:
1563 @itemize @bullet
1564 @item
1565 Whitespace may be added or deleted at the beginning or the end of the
1566 replacement list.  In a sense this is vacuous, since strictly such
1567 whitespace doesn't form part of the macro's expansion.
1569 @item
1570 Between tokens in the expansion, any two forms of whitespace are
1571 considered equivalent.  In particular, whitespace may not be eliminated
1572 entirely, nor may it be added where there previously wasn't any.
1573 @end itemize
1575 Recall that a comment counts as whitespace.
1577 As a particular case of the above, you may not redefine an object-like
1578 macro as a function-like macro, and vice-versa.
1580 @node Poisoning, Macro Pitfalls, Redefining, Macros
1581 @subsection Poisoning Macros
1582 @cindex poisoning macros
1583 @findex #pragma GCC poison
1585 Sometimes, there is an identifier that you want to remove completely
1586 from your program, and make sure that it never creeps back in.  To
1587 enforce this, the @samp{#pragma GCC poison} directive can be used.
1588 @samp{#pragma GCC poison} is followed by a list of identifiers to
1589 poison, and takes effect for the rest of the source.  You cannot
1590 @samp{#undef} a poisoned identifier or test to see if it's defined with
1591 @samp{#ifdef}.
1593 For example,
1595 @example
1596 #pragma GCC poison printf sprintf fprintf
1597 sprintf(some_string, "hello");
1598 @end example
1600 @noindent
1601 will produce an error.
1603 @node Macro Pitfalls,, Poisoning, Macros
1604 @subsection Pitfalls and Subtleties of Macros
1605 @cindex problems with macros
1606 @cindex pitfalls of macros
1608 In this section we describe some special rules that apply to macros and
1609 macro expansion, and point out certain cases in which the rules have
1610 counterintuitive consequences that you must watch out for.
1612 @menu
1613 * Misnesting::        Macros can contain unmatched parentheses.
1614 * Macro Parentheses:: Why apparently superfluous parentheses
1615                          may be necessary to avoid incorrect grouping.
1616 * Swallow Semicolon:: Macros that look like functions
1617                          but expand into compound statements.
1618 * Side Effects::      Unsafe macros that cause trouble when
1619                          arguments contain side effects.
1620 * Self-Reference::    Macros whose definitions use the macros' own names.
1621 * Argument Prescan::  Arguments are checked for macro calls before they
1622                          are substituted.
1623 * Cascaded Macros::   Macros whose definitions use other macros.
1624 * Newlines in Args::  Sometimes line numbers get confused.
1625 @end menu
1627 @node Misnesting, Macro Parentheses, Macro Pitfalls, Macro Pitfalls
1628 @subsubsection Improperly Nested Constructs
1630 Recall that when a macro is called with arguments, the arguments are
1631 substituted into the macro body and the result is checked, together with
1632 the rest of the input file, for more macro calls.
1634 It is possible to piece together a macro call coming partially from the
1635 macro body and partially from the arguments.  For example,
1637 @example
1638 #define double(x) (2*(x))
1639 #define call_with_1(x) x(1)
1640 @end example
1642 @noindent
1643 would expand @samp{call_with_1 (double)} into @samp{(2*(1))}.
1645 Macro definitions do not have to have balanced parentheses.  By writing
1646 an unbalanced open parenthesis in a macro body, it is possible to create
1647 a macro call that begins inside the macro body but ends outside of it.
1648 For example,
1650 @example
1651 #define strange(file) fprintf (file, "%s %d",
1652 @dots{}
1653 strange(stderr) p, 35)
1654 @end example
1656 @noindent
1657 This bizarre example expands to @samp{fprintf (stderr, "%s %d", p, 35)}!
1659 @node Macro Parentheses, Swallow Semicolon, Misnesting, Macro Pitfalls
1660 @subsubsection Unintended Grouping of Arithmetic
1661 @cindex parentheses in macro bodies
1663 You may have noticed that in most of the macro definition examples shown
1664 above, each occurrence of a macro argument name had parentheses around
1665 it.  In addition, another pair of parentheses usually surround the
1666 entire macro definition.  Here is why it is best to write macros that
1667 way.
1669 Suppose you define a macro as follows,
1671 @example
1672 #define ceil_div(x, y) (x + y - 1) / y
1673 @end example
1675 @noindent
1676 whose purpose is to divide, rounding up.  (One use for this operation is
1677 to compute how many @samp{int} objects are needed to hold a certain
1678 number of @samp{char} objects.)  Then suppose it is used as follows:
1680 @example
1681 a = ceil_div (b & c, sizeof (int));
1682 @end example
1684 @noindent
1685 This expands into
1687 @example
1688 a = (b & c + sizeof (int) - 1) / sizeof (int);
1689 @end example
1691 @noindent
1692 which does not do what is intended.  The operator-precedence rules of
1693 C make it equivalent to this:
1695 @example
1696 a = (b & (c + sizeof (int) - 1)) / sizeof (int);
1697 @end example
1699 @noindent
1700 What we want is this:
1702 @example
1703 a = ((b & c) + sizeof (int) - 1)) / sizeof (int);
1704 @end example
1706 @noindent
1707 Defining the macro as
1709 @example
1710 #define ceil_div(x, y) ((x) + (y) - 1) / (y)
1711 @end example
1713 @noindent
1714 provides the desired result.
1716 Unintended grouping can result in another way.  Consider @samp{sizeof
1717 ceil_div(1, 2)}.  That has the appearance of a C expression that would
1718 compute the size of the type of @samp{ceil_div (1, 2)}, but in fact it
1719 means something very different.  Here is what it expands to:
1721 @example
1722 sizeof ((1) + (2) - 1) / (2)
1723 @end example
1725 @noindent
1726 This would take the size of an integer and divide it by two.  The
1727 precedence rules have put the division outside the @samp{sizeof} when it
1728 was intended to be inside.
1730 Parentheses around the entire macro definition can prevent such
1731 problems.  Here, then, is the recommended way to define @samp{ceil_div}:
1733 @example
1734 #define ceil_div(x, y) (((x) + (y) - 1) / (y))
1735 @end example
1737 @node Swallow Semicolon, Side Effects, Macro Parentheses, Macro Pitfalls
1738 @subsubsection Swallowing the Semicolon
1740 @cindex semicolons (after macro calls)
1741 Often it is desirable to define a macro that expands into a compound
1742 statement.  Consider, for example, the following macro, that advances a
1743 pointer (the argument @samp{p} says where to find it) across whitespace
1744 characters:
1746 @example
1747 #define SKIP_SPACES(p, limit)  \
1748 @{ register char *lim = (limit); \
1749   while (p != lim) @{            \
1750     if (*p++ != ' ') @{          \
1751       p--; break; @}@}@}
1752 @end example
1754 @noindent
1755 Here backslash-newline is used to split the macro definition, which must
1756 be a single logical line, so that it resembles the way such C code would
1757 be laid out if not part of a macro definition.
1759 A call to this macro might be @samp{SKIP_SPACES (p, lim)}.  Strictly
1760 speaking, the call expands to a compound statement, which is a complete
1761 statement with no need for a semicolon to end it.  However, since it
1762 looks like a function call, it minimizes confusion if you can use it
1763 like a function call, writing a semicolon afterward, as in
1764 @samp{SKIP_SPACES (p, lim);}
1766 This can cause trouble before @samp{else} statements, because the
1767 semicolon is actually a null statement.  Suppose you write
1769 @example
1770 if (*p != 0)
1771   SKIP_SPACES (p, lim);
1772 else @dots{}
1773 @end example
1775 @noindent
1776 The presence of two statements --- the compound statement and a null
1777 statement --- in between the @samp{if} condition and the @samp{else}
1778 makes invalid C code.
1780 The definition of the macro @samp{SKIP_SPACES} can be altered to solve
1781 this problem, using a @samp{do @dots{} while} statement.  Here is how:
1783 @example
1784 #define SKIP_SPACES(p, limit)     \
1785 do @{ register char *lim = (limit); \
1786      while (p != lim) @{            \
1787        if (*p++ != ' ') @{          \
1788          p--; break; @}@}@}           \
1789 while (0)
1790 @end example
1792 Now @samp{SKIP_SPACES (p, lim);} expands into
1794 @example
1795 do @{@dots{}@} while (0);
1796 @end example
1798 @noindent
1799 which is one statement.
1801 @node Side Effects, Self-Reference, Swallow Semicolon, Macro Pitfalls
1802 @subsubsection Duplication of Side Effects
1804 @cindex side effects (in macro arguments)
1805 @cindex unsafe macros
1806 Many C programs define a macro @samp{min}, for ``minimum'', like this:
1808 @example
1809 #define min(X, Y)  ((X) < (Y) ? (X) : (Y))
1810 @end example
1812 When you use this macro with an argument containing a side effect,
1813 as shown here,
1815 @example
1816 next = min (x + y, foo (z));
1817 @end example
1819 @noindent
1820 it expands as follows:
1822 @example
1823 next = ((x + y) < (foo (z)) ? (x + y) : (foo (z)));
1824 @end example
1826 @noindent
1827 where @samp{x + y} has been substituted for @samp{X} and @samp{foo (z)}
1828 for @samp{Y}.
1830 The function @samp{foo} is used only once in the statement as it appears
1831 in the program, but the expression @samp{foo (z)} has been substituted
1832 twice into the macro expansion.  As a result, @samp{foo} might be called
1833 two times when the statement is executed.  If it has side effects or if
1834 it takes a long time to compute, the results might not be what you
1835 intended.  We say that @samp{min} is an @dfn{unsafe} macro.
1837 The best solution to this problem is to define @samp{min} in a way that
1838 computes the value of @samp{foo (z)} only once.  The C language offers
1839 no standard way to do this, but it can be done with GNU C extensions as
1840 follows:
1842 @example
1843 #define min(X, Y)                     \
1844 (@{ typeof (X) __x = (X), __y = (Y);   \
1845    (__x < __y) ? __x : __y; @})
1846 @end example
1848 If you do not wish to use GNU C extensions, the only solution is to be
1849 careful when @emph{using} the macro @samp{min}.  For example, you can
1850 calculate the value of @samp{foo (z)}, save it in a variable, and use
1851 that variable in @samp{min}:
1853 @example
1854 #define min(X, Y)  ((X) < (Y) ? (X) : (Y))
1855 @dots{}
1857   int tem = foo (z);
1858   next = min (x + y, tem);
1860 @end example
1862 @noindent
1863 (where we assume that @samp{foo} returns type @samp{int}).
1865 @node Self-Reference, Argument Prescan, Side Effects, Macro Pitfalls
1866 @subsubsection Self-Referential Macros
1868 @cindex self-reference
1869 A @dfn{self-referential} macro is one whose name appears in its
1870 definition.  A special feature of ISO Standard C is that the
1871 self-reference is not considered a macro call.  It is passed into the
1872 preprocessor output unchanged.
1874 Let's consider an example:
1876 @example
1877 #define foo (4 + foo)
1878 @end example
1880 @noindent
1881 where @samp{foo} is also a variable in your program.
1883 Following the ordinary rules, each reference to @samp{foo} will expand
1884 into @samp{(4 + foo)}; then this will be rescanned and will expand into
1885 @samp{(4 + (4 + foo))}; and so on until it causes a fatal error (memory
1886 full) in the preprocessor.
1888 However, the special rule about self-reference cuts this process short
1889 after one step, at @samp{(4 + foo)}.  Therefore, this macro definition
1890 has the possibly useful effect of causing the program to add 4 to the
1891 value of @samp{foo} wherever @samp{foo} is referred to.
1893 In most cases, it is a bad idea to take advantage of this feature.  A
1894 person reading the program who sees that @samp{foo} is a variable will
1895 not expect that it is a macro as well.  The reader will come across the
1896 identifier @samp{foo} in the program and think its value should be that
1897 of the variable @samp{foo}, whereas in fact the value is four greater.
1899 The special rule for self-reference applies also to @dfn{indirect}
1900 self-reference.  This is the case where a macro @var{x} expands to use a
1901 macro @samp{y}, and the expansion of @samp{y} refers to the macro
1902 @samp{x}.  The resulting reference to @samp{x} comes indirectly from the
1903 expansion of @samp{x}, so it is a self-reference and is not further
1904 expanded.  Thus, after
1906 @example
1907 #define x (4 + y)
1908 #define y (2 * x)
1909 @end example
1911 @noindent
1912 @samp{x} would expand into @samp{(4 + (2 * x))}.  Clear?
1914 Suppose @samp{y} is used elsewhere, not from the definition of @samp{x}.
1915 Then the use of @samp{x} in the expansion of @samp{y} is not a
1916 self-reference because @samp{x} is not ``in progress''.  So it does
1917 expand.  However, the expansion of @samp{x} contains a reference to
1918 @samp{y}, and that is an indirect self-reference now because @samp{y} is
1919 ``in progress''.  The result is that @samp{y} expands to @samp{(2 * (4 +
1920 y))}.
1922 This behavior is specified by the ISO C standard, so you may need to
1923 understand it.
1925 @node Argument Prescan, Cascaded Macros, Self-Reference, Macro Pitfalls
1926 @subsubsection Separate Expansion of Macro Arguments
1927 @cindex expansion of arguments
1928 @cindex macro argument expansion
1929 @cindex prescan of macro arguments
1931 We have explained that the expansion of a macro, including the substituted
1932 arguments, is re-scanned for macro calls to be expanded.
1934 What really happens is more subtle: first each argument is scanned
1935 separately for macro calls.  Then the resulting tokens are substituted
1936 into the macro body to produce the macro expansion, and the macro
1937 expansion is scanned again for macros to expand.
1939 The result is that the arguments are scanned @emph{twice} to expand
1940 macro calls in them.
1942 Most of the time, this has no effect.  If the argument contained any
1943 macro calls, they are expanded during the first scan.  The result
1944 therefore contains no macro calls, so the second scan does not change
1945 it.  If the argument were substituted as given, with no prescan, the
1946 single remaining scan would find the same macro calls and produce the
1947 same results.
1949 You might expect the double scan to change the results when a
1950 self-referential macro is used in an argument of another macro
1951 (@pxref{Self-Reference}): the self-referential macro would be expanded
1952 once in the first scan, and a second time in the second scan.  However,
1953 this is not what happens.  The self-references that do not expand in the
1954 first scan are marked so that they will not expand in the second scan
1955 either.
1957 The prescan is not done when an argument is stringified or concatenated.
1958 Thus,
1960 @example
1961 #define str(s) #s
1962 #define foo 4
1963 str (foo)
1964 @end example
1966 @noindent
1967 expands to @samp{"foo"}.  Once more, prescan has been prevented from
1968 having any noticeable effect.
1970 More precisely, stringification and concatenation use the argument
1971 tokens as given without initially scanning for macros.  The same
1972 argument would be used in expanded form if it is substituted elsewhere
1973 without stringification or concatenation.
1975 @example
1976 #define str(s) #s lose(s)
1977 #define foo 4
1978 str (foo)
1979 @end example
1981 expands to @samp{"foo" lose(4)}.
1983 You might now ask, ``Why mention the prescan, if it makes no difference?
1984 And why not skip it and make the preprocessor faster?''  The answer is
1985 that the prescan does make a difference in three special cases:
1987 @itemize @bullet
1988 @item
1989 Nested calls to a macro.
1991 @item
1992 Macros that call other macros that stringify or concatenate.
1994 @item
1995 Macros whose expansions contain unshielded commas.
1996 @end itemize
1998 We say that @dfn{nested} calls to a macro occur when a macro's argument
1999 contains a call to that very macro.  For example, if @samp{f} is a macro
2000 that expects one argument, @samp{f (f (1))} is a nested pair of calls to
2001 @samp{f}.  The desired expansion is made by expanding @samp{f (1)} and
2002 substituting that into the definition of @samp{f}.  The prescan causes
2003 the expected result to happen.  Without the prescan, @samp{f (1)} itself
2004 would be substituted as an argument, and the inner use of @samp{f} would
2005 appear during the main scan as an indirect self-reference and would not
2006 be expanded.  Here, the prescan cancels an undesirable side effect (in
2007 the medical, not computational, sense of the term) of the special rule
2008 for self-referential macros.
2010 Prescan causes trouble in certain other cases of nested macro calls.
2011 Here is an example:
2013 @example
2014 #define foo  a,b
2015 #define bar(x) lose(x)
2016 #define lose(x) (1 + (x))
2018 bar(foo)
2019 @end example
2021 @noindent
2022 We would like @samp{bar(foo)} to turn into @samp{(1 + (foo))}, which
2023 would then turn into @samp{(1 + (a,b))}.  Instead, @samp{bar(foo)}
2024 expands into @samp{lose(a,b)}, and you get an error because @code{lose}
2025 requires a single argument.  In this case, the problem is easily solved
2026 by the same parentheses that ought to be used to prevent misnesting of
2027 arithmetic operations:
2029 @example
2030 #define foo (a,b)
2031 #define bar(x) lose((x))
2032 @end example
2034 The problem is more serious when the operands of the macro are not
2035 expressions; for example, when they are statements.  Then parentheses
2036 are unacceptable because they would make for invalid C code:
2038 @example
2039 #define foo @{ int a, b; @dots{} @}
2040 @end example
2042 @noindent
2043 In GNU C you can shield the commas using the @samp{(@{@dots{}@})}
2044 construct which turns a compound statement into an expression:
2046 @example
2047 #define foo (@{ int a, b; @dots{} @})
2048 @end example
2050 Or you can rewrite the macro definition to avoid such commas:
2052 @example
2053 #define foo @{ int a; int b; @dots{} @}
2054 @end example
2056 There is also one case where prescan is useful.  It is possible to use
2057 prescan to expand an argument and then stringify it --- if you use two
2058 levels of macros.  Let's add a new macro @samp{xstr} to the example
2059 shown above:
2061 @example
2062 #define xstr(s) str(s)
2063 #define str(s) #s
2064 #define foo 4
2065 xstr (foo)
2066 @end example
2068 This expands into @samp{"4"}, not @samp{"foo"}.  The reason for the
2069 difference is that the argument of @samp{xstr} is expanded at prescan
2070 (because @samp{xstr} does not specify stringification or concatenation
2071 of the argument).  The result of prescan then forms the argument for
2072 @samp{str}.  @samp{str} uses its argument without prescan because it
2073 performs stringification; but it cannot prevent or undo the prescanning
2074 already done by @samp{xstr}.
2076 @node Cascaded Macros, Newlines in Args, Argument Prescan, Macro Pitfalls
2077 @subsubsection Cascaded Use of Macros
2079 @cindex cascaded macros
2080 @cindex macro body uses macro
2081 A @dfn{cascade} of macros is when one macro's body contains a reference
2082 to another macro.  This is very common practice.  For example,
2084 @example
2085 #define BUFSIZE 1020
2086 #define TABLESIZE BUFSIZE
2087 @end example
2089 This is not at all the same as defining @samp{TABLESIZE} to be
2090 @samp{1020}.  The @samp{#define} for @samp{TABLESIZE} uses exactly the
2091 body you specify --- in this case, @samp{BUFSIZE} --- and does not check
2092 to see whether it too is the name of a macro.
2094 It's only when you @emph{use} @samp{TABLESIZE} that the result of its
2095 expansion is checked for more macro names.
2097 This makes a difference if you change the definition of @samp{BUFSIZE}
2098 at some point in the source file.  @samp{TABLESIZE}, defined as shown,
2099 will always expand using the definition of @samp{BUFSIZE} that is
2100 currently in effect:
2102 @example
2103 #define BUFSIZE 1020
2104 #define TABLESIZE BUFSIZE
2105 #undef BUFSIZE
2106 #define BUFSIZE 37
2107 @end example
2109 @noindent
2110 Now @samp{TABLESIZE} expands (in two stages) to @samp{37}.  (The
2111 @samp{#undef} is to prevent any warning about the nontrivial
2112 redefinition of @code{BUFSIZE}.)
2114 @node Newlines in Args,, Cascaded Macros, Macro Pitfalls
2115 @subsection Newlines in Macro Arguments
2116 @cindex newlines in macro arguments
2118 The invocation of a function-like macro can extend over many logical
2119 lines.  The ISO C standard requires that newlines within a macro
2120 invocation be treated as ordinary whitespace.  This means that when the
2121 expansion of a function-like macro replaces its invocation, it appears
2122 on the same line as the macro name did.  Thus line numbers emitted by
2123 the compiler or debugger refer to the line the invocation started on,
2124 which might be different to the line containing the argument causing the
2125 problem.
2127 Here is an example illustrating this:
2129 @example
2130 #define ignore_second_arg(a,b,c) a; c
2132 ignore_second_arg (foo (),
2133                    ignored (),
2134                    syntax error);
2135 @end example
2137 @noindent
2138 The syntax error triggered by the tokens @samp{syntax error} results in
2139 an error message citing line three --- the line of ignore_second_arg ---
2140 even though the problematic code comes from line five.
2142 @node Conditionals, Assertions, Macros, Top
2143 @section Conditionals
2145 @cindex conditionals
2146 In a macro processor, a @dfn{conditional} is a directive that allows a
2147 part of the program to be ignored during compilation, on some
2148 conditions.  In the C preprocessor, a conditional can test either an
2149 arithmetic expression or whether a name is defined as a macro.
2151 A conditional in the C preprocessor resembles in some ways an @samp{if}
2152 statement in C, but it is important to understand the difference between
2153 them.  The condition in an @samp{if} statement is tested during the
2154 execution of your program.  Its purpose is to allow your program to
2155 behave differently from run to run, depending on the data it is
2156 operating on.  The condition in a preprocessing conditional directive is
2157 tested when your program is compiled.  Its purpose is to allow different
2158 code to be included in the program depending on the situation at the
2159 time of compilation.
2161 @menu
2162 * Uses: Conditional Uses.       What conditionals are for.
2163 * Syntax: Conditional Syntax.   How conditionals are written.
2164 * Deletion: Deleted Code.       Making code into a comment.
2165 * Macros: Conditionals-Macros.  Why conditionals are used with macros.
2166 * Errors: #error Directive.     Detecting inconsistent compilation parameters.
2167 @end menu
2169 @node Conditional Uses
2170 @subsection Why Conditionals are Used
2172 Generally there are three kinds of reason to use a conditional.
2174 @itemize @bullet
2175 @item
2176 A program may need to use different code depending on the machine or
2177 operating system it is to run on.  In some cases the code for one
2178 operating system may be erroneous on another operating system; for
2179 example, it might refer to library routines that do not exist on the
2180 other system.  When this happens, it is not enough to avoid executing
2181 the invalid code: merely having it in the program makes it impossible to
2182 link the program and run it.  With a preprocessing conditional, the
2183 offending code can be effectively excised from the program when it is
2184 not valid.
2186 @item
2187 You may want to be able to compile the same source file into two
2188 different programs.  Sometimes the difference between the programs is
2189 that one makes frequent time-consuming consistency checks on its
2190 intermediate data, or prints the values of those data for debugging,
2191 while the other does not.
2193 @item
2194 A conditional whose condition is always false is a good way to exclude
2195 code from the program but keep it as a sort of comment for future
2196 reference.
2197 @end itemize
2199 Most simple programs that are intended to run on only one machine will
2200 not need to use preprocessing conditionals.
2202 @node Conditional Syntax
2203 @subsection Syntax of Conditionals
2205 @findex #if
2206 A conditional in the C preprocessor begins with a @dfn{conditional
2207 directive}: @samp{#if}, @samp{#ifdef} or @samp{#ifndef}.
2208 @xref{Conditionals-Macros}, for information on @samp{#ifdef} and
2209 @samp{#ifndef}; only @samp{#if} is explained here.
2211 @menu
2212 * If: #if Directive.     Basic conditionals using @samp{#if} and @samp{#endif}.
2213 * Else: #else Directive. Including some text if the condition fails.
2214 * Elif: #elif Directive. Testing several alternative possibilities.
2215 @end menu
2217 @node #if Directive
2218 @subsubsection The @samp{#if} Directive
2220 The @samp{#if} directive in its simplest form consists of
2222 @example
2223 #if @var{expression}
2224 @var{controlled text}
2225 #endif /* @var{expression} */
2226 @end example
2228 The comment following the @samp{#endif} is not required, but it is a
2229 good practice because it helps people match the @samp{#endif} to the
2230 corresponding @samp{#if}.  Such comments should always be used, except
2231 in short conditionals that are not nested.  In fact, you can put
2232 anything at all after the @samp{#endif} and it will be ignored by the
2233 GNU C preprocessor, but only comments are acceptable in ISO Standard C@.
2235 @var{expression} is a C expression of integer type, subject to stringent
2236 restrictions.  It may contain
2238 @itemize @bullet
2239 @item
2240 Integer constants, which are all regarded as @code{long} or
2241 @code{unsigned long}.
2243 @item
2244 Character constants, which are interpreted according to the character
2245 set and conventions of the machine and operating system on which the
2246 preprocessor is running.  The GNU C preprocessor uses the C data type
2247 @samp{char} for these character constants; therefore, whether some
2248 character codes are negative is determined by the C compiler used to
2249 compile the preprocessor.  If it treats @samp{char} as signed, then
2250 character codes large enough to set the sign bit will be considered
2251 negative; otherwise, no character code is considered negative.
2253 @item
2254 Arithmetic operators for addition, subtraction, multiplication,
2255 division, bitwise operations, shifts, comparisons, and logical
2256 operations (@samp{&&} and @samp{||}).  The latter two obey the usual
2257 short-circuiting rules of standard C.
2259 @item
2260 Identifiers that are not macros, which are all treated as zero(!).
2262 @item
2263 Macro calls.  All macro calls in the expression are expanded before
2264 actual computation of the expression's value begins.
2265 @end itemize
2267 Note that @samp{sizeof} operators and @code{enum}-type values are not
2268 allowed.  @code{enum}-type values, like all other identifiers that are
2269 not taken as macro calls and expanded, are treated as zero.
2271 The @var{controlled text} inside of a conditional can include
2272 preprocessing directives.  Then the directives inside the conditional
2273 are obeyed only if that branch of the conditional succeeds.  The text
2274 can also contain other conditional groups.  However, the @samp{#if} and
2275 @samp{#endif} directives must balance.
2277 @node #else Directive
2278 @subsubsection The @samp{#else} Directive
2280 @findex #else
2281 The @samp{#else} directive can be added to a conditional to provide
2282 alternative text to be used if the condition is false.  This is what
2283 it looks like:
2285 @example
2286 #if @var{expression}
2287 @var{text-if-true}
2288 #else /* Not @var{expression} */
2289 @var{text-if-false}
2290 #endif /* Not @var{expression} */
2291 @end example
2293 If @var{expression} is nonzero, and thus the @var{text-if-true} is 
2294 active, then @samp{#else} acts like a failing conditional and the
2295 @var{text-if-false} is ignored.  Conversely, if the @samp{#if}
2296 conditional fails, the @var{text-if-false} is considered included.
2298 @node #elif Directive
2299 @subsubsection The @samp{#elif} Directive
2301 @findex #elif
2302 One common case of nested conditionals is used to check for more than two
2303 possible alternatives.  For example, you might have
2305 @example
2306 #if X == 1
2307 @dots{}
2308 #else /* X != 1 */
2309 #if X == 2
2310 @dots{}
2311 #else /* X != 2 */
2312 @dots{}
2313 #endif /* X != 2 */
2314 #endif /* X != 1 */
2315 @end example
2317 Another conditional directive, @samp{#elif}, allows this to be
2318 abbreviated as follows:
2320 @example
2321 #if X == 1
2322 @dots{}
2323 #elif X == 2
2324 @dots{}
2325 #else /* X != 2 and X != 1*/
2326 @dots{}
2327 #endif /* X != 2 and X != 1*/
2328 @end example
2330 @samp{#elif} stands for ``else if''.  Like @samp{#else}, it goes in the
2331 middle of a @samp{#if}-@samp{#endif} pair and subdivides it; it does not
2332 require a matching @samp{#endif} of its own.  Like @samp{#if}, the
2333 @samp{#elif} directive includes an expression to be tested.
2335 The text following the @samp{#elif} is processed only if the original
2336 @samp{#if}-condition failed and the @samp{#elif} condition succeeds.
2337 More than one @samp{#elif} can go in the same @samp{#if}-@samp{#endif}
2338 group.  Then the text after each @samp{#elif} is processed only if the
2339 @samp{#elif} condition succeeds after the original @samp{#if} and any
2340 previous @samp{#elif} directives within it have failed.  @samp{#else} is
2341 equivalent to @samp{#elif 1}, and @samp{#else} is allowed after any
2342 number of @samp{#elif} directives, but @samp{#elif} may not follow
2343 @samp{#else}.
2345 @node Deleted Code
2346 @subsection Keeping Deleted Code for Future Reference
2347 @cindex commenting out code
2349 If you replace or delete a part of the program but want to keep the old
2350 code around as a comment for future reference, the easy way to do this
2351 is to put @samp{#if 0} before it and @samp{#endif} after it.  This is
2352 better than using comment delimiters @samp{/*} and @samp{*/} since those
2353 won't work if the code already contains comments (C comments do not
2354 nest).
2356 This works even if the code being turned off contains conditionals, but
2357 they must be entire conditionals (balanced @samp{#if} and @samp{#endif}).
2359 Conversely, do not use @samp{#if 0} for comments which are not C code.
2360 Use the comment delimiters @samp{/*} and @samp{*/} instead.  The
2361 interior of @samp{#if 0} must consist of complete tokens; in particular,
2362 single-quote characters must balance.  Comments often contain unbalanced
2363 single-quote characters (known in English as apostrophes).  These
2364 confuse @samp{#if 0}.  They do not confuse @samp{/*}.
2366 @node Conditionals-Macros
2367 @subsection Conditionals and Macros
2369 Conditionals are useful in connection with macros or assertions, because
2370 those are the only ways that an expression's value can vary from one
2371 compilation to another.  A @samp{#if} directive whose expression uses no
2372 macros or assertions is equivalent to @samp{#if 1} or @samp{#if 0}; you
2373 might as well determine which one, by computing the value of the
2374 expression yourself, and then simplify the program.
2376 For example, here is a conditional that tests the expression
2377 @samp{BUFSIZE == 1020}, where @samp{BUFSIZE} must be a macro.
2379 @example
2380 #if BUFSIZE == 1020
2381   printf ("Large buffers!\n");
2382 #endif /* BUFSIZE is large */
2383 @end example
2385 (Programmers often wish they could test the size of a variable or data
2386 type in @samp{#if}, but this does not work.  The preprocessor does not
2387 understand @code{sizeof}, or typedef names, or even the type keywords
2388 such as @code{int}.)
2390 @findex defined
2391 The special operator @samp{defined} is used in @samp{#if} and
2392 @samp{#elif} expressions to test whether a certain name is defined as a
2393 macro.  Either @samp{defined @var{name}} or @samp{defined (@var{name})}
2394 is an expression whose value is 1 if @var{name} is defined as macro at
2395 the current point in the program, and 0 otherwise.  To the
2396 @samp{defined} operator it makes no difference what the definition of
2397 the macro is; all that matters is whether there is a definition.  Thus,
2398 for example,@refill
2400 @example
2401 #if defined (vax) || defined (ns16000)
2402 @end example
2404 @noindent
2405 would succeed if either of the names @samp{vax} and @samp{ns16000} is
2406 defined as a macro.  You can test the same condition using assertions
2407 (@pxref{Assertions}), like this:
2409 @example
2410 #if #cpu (vax) || #cpu (ns16000)
2411 @end example
2413 If a macro is defined and later undefined with @samp{#undef}, subsequent
2414 use of the @samp{defined} operator returns 0, because the name is no
2415 longer defined.  If the macro is defined again with another
2416 @samp{#define}, @samp{defined} will recommence returning 1.
2418 If the @samp{defined} operator appears as a result of a macro expansion,
2419 the C standard says the behavior is undefined.  GNU cpp treats it as a
2420 genuine @samp{defined} operator and evaluates it normally.  It will warn
2421 wherever your code uses this feature if you use the command-line option
2422 @samp{-pedantic}, since other compilers may handle it differently.
2424 @findex #ifdef
2425 @findex #ifndef
2426 Conditionals that test whether a single macro is defined are very common,
2427 so there are two special short conditional directives for this case.
2429 @table @code
2430 @item #ifdef @var{name}
2431 is equivalent to @samp{#if defined (@var{name})}.
2433 @item #ifndef @var{name}
2434 is equivalent to @samp{#if ! defined (@var{name})}.
2435 @end table
2437 Macro definitions can vary between compilations for several reasons.
2439 @itemize @bullet
2440 @item
2441 Some macros are predefined on each kind of machine.  For example, on a
2442 Vax, the name @samp{vax} is a predefined macro.  On other machines, it
2443 would not be defined.
2445 @item
2446 Many more macros are defined by system header files.  Different systems
2447 and machines define different macros, or give them different values.  It
2448 is useful to test these macros with conditionals to avoid using a system
2449 feature on a machine where it is not implemented.
2451 @item
2452 Macros are a common way of allowing users to customize a program for
2453 different machines or applications.  For example, the macro
2454 @samp{BUFSIZE} might be defined in a configuration file for your program
2455 that is included as a header file in each source file.  You would use
2456 @samp{BUFSIZE} in a preprocessing conditional in order to generate
2457 different code depending on the chosen configuration.
2459 @item
2460 Macros can be defined or undefined with @samp{-D} and @samp{-U} command
2461 options when you compile the program.  You can arrange to compile the
2462 same source file into two different programs by choosing a macro name to
2463 specify which program you want, writing conditionals to test whether or
2464 how this macro is defined, and then controlling the state of the macro
2465 with compiler command options.  @xref{Invocation}.
2466 @end itemize
2468 @ifinfo
2469 Assertions are usually predefined, but can be defined with preprocessor
2470 directives or command-line options.
2471 @end ifinfo
2473 @node #error Directive
2474 @subsection The @samp{#error} and @samp{#warning} Directives
2476 @findex #error
2477 The directive @samp{#error} causes the preprocessor to report a fatal
2478 error.  The tokens forming the rest of the line following @samp{#error}
2479 are used as the error message, and not macro-expanded.  Internal
2480 whitespace sequences are each replaced with a single space.  The line
2481 must consist of complete tokens.
2483 You would use @samp{#error} inside of a conditional that detects a
2484 combination of parameters which you know the program does not properly
2485 support.  For example, if you know that the program will not run
2486 properly on a Vax, you might write
2488 @smallexample
2489 @group
2490 #ifdef __vax__
2491 #error "Won't work on Vaxen.  See comments at get_last_object."
2492 #endif
2493 @end group
2494 @end smallexample
2496 @noindent
2497 @xref{Nonstandard Predefined}, for why this works.
2499 If you have several configuration parameters that must be set up by
2500 the installation in a consistent way, you can use conditionals to detect
2501 an inconsistency and report it with @samp{#error}.  For example,
2503 @smallexample
2504 #if HASH_TABLE_SIZE % 2 == 0 || HASH_TABLE_SIZE % 3 == 0 \
2505     || HASH_TABLE_SIZE % 5 == 0
2506 #error HASH_TABLE_SIZE should not be divisible by a small prime
2507 #endif
2508 @end smallexample
2510 @findex #warning
2511 The directive @samp{#warning} is like the directive @samp{#error}, but
2512 causes the preprocessor to issue a warning and continue preprocessing.
2513 The tokens following @samp{#warning} are used as the warning message,
2514 and not macro-expanded.
2516 You might use @samp{#warning} in obsolete header files, with a message
2517 directing the user to the header file which should be used instead.
2519 @node Assertions, Line Control, Conditionals, Top
2520 @section Assertions
2521 @cindex assertions
2522 @dfn{Assertions} are a more systematic alternative to macros in writing
2523 conditionals to test what sort of computer or system the compiled
2524 program will run on.  Assertions are usually predefined, but you can
2525 define them with preprocessing directives or command-line options.
2527 @cindex predicates
2528 The macros traditionally used to describe the type of target are not
2529 classified in any way according to which question they answer; they may
2530 indicate a hardware architecture, a particular hardware model, an
2531 operating system, a particular version of an operating system, or
2532 specific configuration options.  These are jumbled together in a single
2533 namespace.  In contrast, each assertion consists of a named question and
2534 an answer.  The question is usually called the @dfn{predicate}.  An
2535 assertion looks like this:
2537 @example
2538 #@var{predicate} (@var{answer})
2539 @end example
2541 @noindent
2542 You must use a properly formed identifier for @var{predicate}.  The
2543 value of @var{answer} can be any sequence of words; all characters are
2544 significant except for leading and trailing whitespace, and differences
2545 in internal whitespace sequences are ignored.  (This is similar to the
2546 rules governing macro redefinition.)  Thus, @samp{x + y} is different
2547 from @samp{x+y} but equivalent to @samp{ x + y }.  @samp{)} is not
2548 allowed in an answer.
2550 @cindex testing predicates
2551 Here is a conditional to test whether the answer @var{answer} is asserted
2552 for the predicate @var{predicate}:
2554 @example
2555 #if #@var{predicate} (@var{answer})
2556 @end example
2558 @noindent
2559 There may be more than one answer asserted for a given predicate.  If
2560 you omit the answer, you can test whether @emph{any} answer is asserted
2561 for @var{predicate}:
2563 @example
2564 #if #@var{predicate}
2565 @end example
2567 @findex #system
2568 @findex #machine
2569 @findex #cpu
2570 Most of the time, the assertions you test will be predefined assertions.
2571 GNU C provides three predefined predicates: @code{system}, @code{cpu},
2572 and @code{machine}.  @code{system} is for assertions about the type of
2573 software, @code{cpu} describes the type of computer architecture, and
2574 @code{machine} gives more information about the computer.  For example,
2575 on a GNU system, the following assertions would be true:
2577 @example
2578 #system (gnu)
2579 #system (mach)
2580 #system (mach 3)
2581 #system (mach 3.@var{subversion})
2582 #system (hurd)
2583 #system (hurd @var{version})
2584 @end example
2586 @noindent
2587 and perhaps others.  The alternatives with
2588 more or less version information let you ask more or less detailed
2589 questions about the type of system software.
2591 On a Unix system, you would find @code{#system (unix)} and perhaps one of:
2592 @code{#system (aix)}, @code{#system (bsd)}, @code{#system (hpux)},
2593 @code{#system (lynx)}, @code{#system (mach)}, @code{#system (posix)},
2594 @code{#system (svr3)}, @code{#system (svr4)}, or @code{#system (xpg4)}
2595 with possible version numbers following.
2597 Other values for @code{system} are @code{#system (mvs)}
2598 and @code{#system (vms)}.
2600 @strong{Portability note:} Many Unix C compilers provide only one answer
2601 for the @code{system} assertion: @code{#system (unix)}, if they support
2602 assertions at all.  This is less than useful.
2604 An assertion with a multi-word answer is completely different from several
2605 assertions with individual single-word answers.  For example, the presence
2606 of @code{system (mach 3.0)} does not mean that @code{system (3.0)} is true.
2607 It also does not directly imply @code{system (mach)}, but in GNU C, that
2608 last will normally be asserted as well.
2610 The current list of possible assertion values for @code{cpu} is:
2611 @code{#cpu (a29k)}, @code{#cpu (alpha)}, @code{#cpu (arm)}, @code{#cpu
2612 (clipper)}, @code{#cpu (convex)}, @code{#cpu (elxsi)}, @code{#cpu
2613 (tron)}, @code{#cpu (h8300)}, @code{#cpu (i370)}, @code{#cpu (i386)},
2614 @code{#cpu (i860)}, @code{#cpu (i960)}, @code{#cpu (m68k)}, @code{#cpu
2615 (m88k)}, @code{#cpu (mips)}, @code{#cpu (ns32k)}, @code{#cpu (hppa)},
2616 @code{#cpu (pyr)}, @code{#cpu (ibm032)}, @code{#cpu (rs6000)},
2617 @code{#cpu (sh)}, @code{#cpu (sparc)}, @code{#cpu (spur)}, @code{#cpu
2618 (tahoe)}, @code{#cpu (vax)}, @code{#cpu (we32000)}.
2620 @findex #assert
2621 You can create assertions within a C program using @samp{#assert}, like
2622 this:
2624 @example
2625 #assert @var{predicate} (@var{answer})
2626 @end example
2628 @noindent
2629 (Note the absence of a @samp{#} before @var{predicate}.)
2631 @cindex unassert
2632 @cindex assertions, undoing
2633 @cindex retracting assertions
2634 @findex #unassert
2635 Each time you do this, you assert a new true answer for @var{predicate}.
2636 Asserting one answer does not invalidate previously asserted answers;
2637 they all remain true.  The only way to remove an answer is with
2638 @samp{#unassert}.  @samp{#unassert} has the same syntax as
2639 @samp{#assert}.  You can also remove all answers to a @var{predicate}
2640 like this:
2642 @example
2643 #unassert @var{predicate}
2644 @end example
2646 You can also add or cancel assertions using command options
2647 when you run @code{gcc} or @code{cpp}.  @xref{Invocation}.
2649 @node Line Control, Other Directives, Assertions, Top
2650 @section Combining Source Files
2652 @cindex line control
2653 One of the jobs of the C preprocessor is to inform the C compiler of where
2654 each line of C code came from: which source file and which line number.
2656 C code can come from multiple source files if you use @samp{#include};
2657 both @samp{#include} and the use of conditionals and macros can cause
2658 the line number of a line in the preprocessor output to be different
2659 from the line's number in the original source file.  You will appreciate
2660 the value of making both the C compiler (in error messages) and symbolic
2661 debuggers such as GDB use the line numbers in your source file.
2663 The C preprocessor builds on this feature by offering a directive by
2664 which you can control the feature explicitly.  This is useful when a
2665 file for input to the C preprocessor is the output from another program
2666 such as the @code{bison} parser generator, which operates on another
2667 file that is the true source file.  Parts of the output from
2668 @code{bison} are generated from scratch, other parts come from a
2669 standard parser file.  The rest are copied nearly verbatim from the
2670 source file, but their line numbers in the @code{bison} output are not
2671 the same as their original line numbers.  Naturally you would like
2672 compiler error messages and symbolic debuggers to know the original
2673 source file and line number of each line in the @code{bison} input.
2675 @findex #line
2676 @code{bison} arranges this by writing @samp{#line} directives into the output
2677 file.  @samp{#line} is a directive that specifies the original line number
2678 and source file name for subsequent input in the current preprocessor input
2679 file.  @samp{#line} has three variants:
2681 @table @code
2682 @item #line @var{linenum}
2683 Here @var{linenum} is a decimal integer constant.  This specifies that
2684 the line number of the following line of input, in its original source file,
2685 was @var{linenum}.
2687 @item #line @var{linenum} @var{filename}
2688 Here @var{linenum} is a decimal integer constant and @var{filename} is a
2689 string constant.  This specifies that the following line of input came
2690 originally from source file @var{filename} and its line number there was
2691 @var{linenum}.  Keep in mind that @var{filename} is not just a file
2692 name; it is surrounded by double-quote characters so that it looks like
2693 a string constant.
2695 @item #line @var{anything else}
2696 @var{anything else} is checked for macro calls, which are expanded.
2697 The result should be a decimal integer constant followed optionally
2698 by a string constant, as described above.
2699 @end table
2701 @samp{#line} directives alter the results of the @samp{__FILE__} and
2702 @samp{__LINE__} predefined macros from that point on.  @xref{Standard
2703 Predefined}.
2705 The output of the preprocessor (which is the input for the rest of the
2706 compiler) contains directives that look much like @samp{#line}
2707 directives.  They start with just @samp{#} instead of @samp{#line}, but
2708 this is followed by a line number and file name as in @samp{#line}.
2709 @xref{Output}.
2711 @node Other Directives, Output, Line Control, Top
2712 @section Miscellaneous Preprocessing Directives
2714 This section describes some additional, rarely used, preprocessing
2715 directives.
2717 @findex #pragma
2718 @findex #pragma GCC
2720 The ISO standard specifies that the effect of the @samp{#pragma}
2721 directive is implementation-defined.  The GNU C preprocessor recognizes
2722 some pragmas, and passes unrecognized ones through to the preprocessor
2723 output, so they are available to the compilation pass.
2725 In line with the C99 standard, which introduces a STDC namespace for C99
2726 pragmas, the preprocessor introduces a GCC namespace for GCC pragmas.
2727 Supported GCC preprocessor pragmas are of the form @samp{#pragma GCC
2728 ...}.  For backwards compatibility previously supported pragmas are also
2729 recognized without the @samp{GCC} prefix, however that use is
2730 deprecated.  Pragmas that are already deprecated are not recognized with
2731 a @samp{GCC} prefix.
2733 @findex #pragma GCC dependency
2734 The @samp{#pragma GCC dependency} allows you to check the relative dates
2735 of the current file and another file. If the other file is more recent
2736 than the current file, a warning is issued. This is useful if the
2737 include file is derived from the other file, and should be regenerated.
2738 The other file is searched for using the normal include search path.
2739 Optional trailing text can be used to give more information in the
2740 warning message.
2742 @smallexample
2743 #pragma GCC dependency "parse.y"
2744 #pragma GCC dependency "/usr/include/time.h" rerun /path/to/fixincludes
2745 @end smallexample
2747 @findex _Pragma
2748 The C99 standard also introduces the @samp{_Pragma} operator.  The
2749 syntax is @code{_Pragma (string-literal)}, where @samp{string-literal}
2750 can be either a normal or wide-character string literal.  It is
2751 destringized, by replacing all @samp{\\} with a single @samp{\} and all
2752 @samp{\"} with a @samp{"}.  The result is then processed as if it had
2753 appeared as the right hand side of a @samp{#pragma} directive.  For
2754 example,
2756 @smallexample
2757 _Pragma ("GCC dependency \"parse.y\"")
2758 @end smallexample
2760 @noindent has the same effect as @samp{#pragma GCC dependency
2761 "parse.y"}.  The same effect could be achieved using macros, for example
2763 @smallexample
2764 #define DO_PRAGMA(x) _Pragma (#x)
2765 DO_PRAGMA (GCC dependency "parse.y")
2766 @end smallexample
2768 The standard is unclear on where a @samp{_Pragma} operator can appear.
2769 The preprocessor accepts it even within a preprocessing conditional
2770 directive like @samp{#if}.  To be safe, you are probably best keeping it
2771 out of directives other than @samp{#define}, and putting it on a line of
2772 its own.
2774 @findex #ident
2775 The @samp{#ident} directive is supported for compatibility with certain
2776 other systems.  It is followed by a line of text.  On some systems, the
2777 text is copied into a special place in the object file; on most systems,
2778 the text is ignored and this directive has no effect.  Typically
2779 @samp{#ident} is only used in header files supplied with those systems
2780 where it is meaningful.
2782 @cindex null directive
2783 The @dfn{null directive} consists of a @samp{#} followed by a newline,
2784 with only whitespace (including comments) in between.  A null directive
2785 is understood as a preprocessing directive but has no effect on the
2786 preprocessor output.  The primary significance of the existence of the
2787 null directive is that an input line consisting of just a @samp{#} will
2788 produce no output, rather than a line of output containing just a
2789 @samp{#}.  Supposedly some old C programs contain such lines.
2791 @node Output, Implementation, Other Directives, Top
2792 @section C Preprocessor Output
2794 @cindex output format
2795 The output from the C preprocessor looks much like the input, except
2796 that all preprocessing directive lines have been replaced with blank
2797 lines and all comments with spaces.
2799 The ISO standard specifies that it is implementation defined whether a
2800 preprocessor preserves whitespace between tokens, or replaces it with
2801 e.g. a single space.  In the GNU C preprocessor, whitespace between
2802 tokens is collapsed to become a single space, with the exception that
2803 the first token on a non-directive line is preceded with sufficient
2804 spaces that it appears in the same column in the preprocessed output
2805 that it appeared in in the original source file.  This is so the output
2806 is easy to read.  @xref{Unreliable Features}.
2808 Source file name and line number information is conveyed by lines
2809 of the form
2811 @example
2812 # @var{linenum} @var{filename} @var{flags}
2813 @end example
2815 @noindent
2816 which are inserted as needed into the output (but never within a string
2817 or character constant), and in place of long sequences of empty lines.
2818 Such a line means that the following line originated in file
2819 @var{filename} at line @var{linenum}.
2821 After the file name comes zero or more flags, which are @samp{1},
2822 @samp{2}, @samp{3}, or @samp{4}.  If there are multiple flags, spaces
2823 separate them.  Here is what the flags mean:
2825 @table @samp
2826 @item 1
2827 This indicates the start of a new file.
2828 @item 2
2829 This indicates returning to a file (after having included another file).
2830 @item 3
2831 This indicates that the following text comes from a system header file,
2832 so certain warnings should be suppressed.
2833 @item 4
2834 This indicates that the following text should be treated as C@.
2835 @c maybe cross reference NO_IMPLICIT_EXTERN_C
2836 @end table
2838 @node Implementation, Unreliable Features, Output, Top
2839 @section Implementation-defined Behavior and Implementation Limits
2840 @cindex implementation limits
2841 @cindex implementation-defined behavior
2843 The ISO C standard mandates that implementations document various
2844 aspects of preprocessor behavior.  You should try to avoid undue
2845 reliance on behaviour described here, as it is possible that it will
2846 change subtly in future implementations.
2848 @itemize @bullet
2850 @item The mapping of physical source file multi-byte characters to the
2851 execution character set.
2853 Currently, GNU cpp only supports character sets that are strict supersets
2854 of ASCII, and performs no translation of characters.
2856 @item Non-empty sequences of whitespace characters.
2858 Each whitespace sequence is not preserved, but collapsed to a single
2859 space.  For aesthetic reasons, the first token on each non-directive
2860 line of output is preceded with sufficient spaces that it appears in the
2861 same column as it did in the original source file.
2863 @item The numeric value of character constants in preprocessor expressions.
2865 The preprocessor interprets character constants in preprocessing
2866 directives on the host machine.  Expressions outside preprocessing
2867 directives are compiled to be interpreted on the target machine.  In the
2868 normal case of a native compiler, these two environments are the same
2869 and so character constants will be evaluated identically in both cases.
2870 However, in the case of a cross compiler, the values may be different.
2872 Multi-character character constants are interpreted a character at a
2873 time, shifting the previous result left by the number of bits per
2874 character on the host, and adding the new character.  For example, 'ab'
2875 on an 8-bit host would be interpreted as 'a' * 256 + 'b'.  If there are
2876 more characters in the constant than can fit in the widest native
2877 integer type on the host, usually a @samp{long}, the behavior is
2878 undefined.
2880 Evaluation of wide character constants is not properly implemented yet.
2882 @item Source file inclusion.
2884 For a discussion on how the preprocessor locates header files,
2885 @pxref{Include Operation}.
2887 @item Interpretation of the filename resulting from a macro-expanded
2888 @samp{#include} directive.
2890 If the macro expands to a string literal, the @samp{#include} directive
2891 is processed as if the string had been specified directly.  Otherwise,
2892 the macro must expand to a token stream beginning with a @samp{<} token
2893 and including a @samp{>} token.  In this case, the tokens between the
2894 @samp{<} and the first @samp{>} are combined to form the filename to be
2895 included.  Any whitespace between tokens is reduced to a single space;
2896 then any space after the initial @samp{<} is retained, but a trailing
2897 space before the closing @samp{>} is ignored.
2899 In either case, if any excess tokens remain, an error occurs and the
2900 directive is not processed.
2902 @item Treatment of a @samp{#pragma} directive that after macro-expansion
2903 results in a standard pragma.
2905 The pragma is processed as if it were a normal standard pragma.
2907 @end itemize
2909 The following documents internal limits of GNU cpp.
2911 @itemize @bullet
2913 @item Nesting levels of @samp{#include} files.
2915 We impose an arbitrary limit of 200 levels, to avoid runaway recursion.
2916 The standard requires at least 15 levels.
2918 @item Nesting levels of conditional inclusion.
2920 The C standard mandates this be at least 63.  The GNU C preprocessor
2921 is limited only by available memory.
2923 @item Levels of parenthesised expressions within a full expression.
2925 The C standard requires this to be at least 63.  In preprocessor
2926 conditional expressions it is limited only by available memory.
2928 @item Significant initial characters in an identifier or macro name.
2930 The preprocessor treats all characters as significant.  The C standard
2931 requires only that the first 63 be significant.
2933 @item Number of macros simultaneously defined in a single translation unit.
2935 The standard requires at least 4095 be possible; GNU cpp is limited only
2936 by available memory.
2938 @item Number of parameters in a macro definition and arguments in a macro call.
2940 We allow USHRT_MAX, which is normally 65,535, and above the minimum of
2941 127 required by the standard.
2943 @item Number of characters on a logical source line.
2945 The C standard requires a minimum of 4096 be permitted.  GNU cpp places
2946 no limits on this, but you may get incorrect column numbers reported in
2947 diagnostics for lines longer than 65,535 characters.
2949 @end itemize
2951 @node Unreliable Features, Invocation, Implementation, Top
2952 @section Undefined Behavior and Deprecated Features
2953 @cindex undefined behavior
2954 @cindex deprecated features
2956 This section details GNU C preprocessor behavior that is subject to
2957 change or deprecated.  You are @emph{strongly advised} to write your
2958 software so it does not rely on anything described here; future versions
2959 of the preprocessor may subtly change such behavior or even remove the
2960 feature altogether.
2962 Preservation of the form of whitespace between tokens is unlikely to
2963 change from current behavior (@ref{Output}), but you are advised not
2964 to rely on it.
2966 The following are undocumented and subject to change:-
2968 @itemize @bullet
2970 @item Precedence of ## operators with respect to each other
2972 Whether a sequence of ## operators is evaluated left-to-right,
2973 right-to-left or indeed in a consistent direction at all is not
2974 specified.  An example of where this might matter is pasting the
2975 arguments @samp{1}, @samp{e} and @samp{-2}.  This would be fine for
2976 left-to-right pasting, but right-to-left pasting would produce an
2977 invalid token @samp{e-2}.  It is possible to guarantee precedence by
2978 suitable use of nested macros.
2980 @item Precedence of # operator with respect to the ## operator
2982 Which of these two operators is evaluated first is not specified.
2984 @end itemize
2986 The following features are in flux and should not be used in portable
2987 code:
2989 @itemize @bullet
2991 @item Optional argument when invoking rest argument macros
2993 As an extension, GCC permits you to omit the variable arguments entirely
2994 when you use a variable argument macro.  This works whether or not you
2995 give the variable argument a name.  For example, the two macro
2996 invocations in the example below expand to the same thing:
2998 @smallexample
2999 #define debug(format, ...) printf (format, __VA_ARGS__)
3000 debug("string");       /* Not permitted by C standard.  */
3001 debug("string",);      /* OK.  */
3002 @end smallexample
3004 This extension will be preserved, but the special behavior of @samp{##}
3005 in this context has changed in the past and may change again in the
3006 future.
3008 @item ## swallowing preceding text in rest argument macros
3010 Formerly, in a macro expansion, if @samp{##} appeared before a variable
3011 arguments parameter, and the set of tokens specified for that argument in
3012 the macro invocation was empty, previous versions of the GNU C
3013 preprocessor would back up and remove the preceding sequence of
3014 non-whitespace characters (@strong{not} the preceding token).  This
3015 extension is in direct conflict with the 1999 C standard and has been
3016 drastically pared back.
3018 In the current version of the preprocessor, if @samp{##} appears between
3019 a comma and a variable arguments parameter, and the variable argument is
3020 omitted entirely, the comma will be removed from the expansion.  If the
3021 variable argument is empty, or the token before @samp{##} is not a
3022 comma, then @samp{##} behaves as a normal token paste.  
3024 Portable code should avoid this extension at all costs.
3026 @end itemize
3028 The following features are deprecated and will likely be removed at some
3029 point in the future:-
3031 @itemize @bullet
3033 @item Attempting to paste two tokens which together do not form a valid
3034 preprocessing token
3036 The preprocessor currently warns about this and outputs the two tokens
3037 adjacently, which is probably the behavior the programmer intends.  It
3038 may not work in future, though.
3040 Most of the time, when you get this warning, you will find that @samp{##}
3041 is being used superstitiously, to guard against whitespace appearing
3042 between two tokens.  It is almost always safe to delete the @samp{##}.
3044 @findex #pragma once
3045 @item #pragma once
3047 This pragma was once used to tell the preprocessor that it need not
3048 include a file more than once.  It is now obsolete and should not be
3049 used at all.
3051 @item #pragma poison
3053 This pragma has been superseded by @samp{#pragma GCC poison}.
3054 @xref{Poisoning}.
3056 @item Multi-line string literals in directives
3058 The GNU C preprocessor currently allows newlines in string literals
3059 within a directive.  This is forbidden by the C standard and will
3060 eventually be removed.  (Multi-line string literals in open text are
3061 still supported.)
3063 @item Preprocessing things which are not C
3065 The C preprocessor is intended to be used only with C, C++, and
3066 Objective C source code.  In the past, it has been abused as a general
3067 text processor.  It will choke on input which is not lexically valid C;
3068 for example, apostrophes will be interpreted as the beginning of
3069 character constants, and cause errors.  Also, you cannot rely on it
3070 preserving characteristics of the input which are not significant to
3071 C-family languages.  For instance, if a Makefile is preprocessed, all
3072 the hard tabs will be lost, and the Makefile will not work.
3074 Having said that, you can often get away with using cpp on things which
3075 are not C.  Other Algol-ish programming languages are often safe
3076 (Pascal, Ada, ...)  and so is assembly, with caution. @samp{-traditional}
3077 mode is much more permissive, and can safely be used with e.g. Fortran.
3078 Many of the problems go away if you write C or C++ style comments
3079 instead of native language comments, and if you avoid elaborate macros.
3081 Wherever possible, you should use a preprocessor geared to the language
3082 you are writing in.  Modern versions of the GNU assembler have macro
3083 facilities.  Most high level programming languages have their own
3084 conditional compilation and inclusion mechanism.  If all else fails,
3085 try a true general text processor, such as @xref{Top, M4, , m4, GNU `m4'}.
3087 @end itemize
3089 @node Invocation, Concept Index, Unreliable Features, Top
3090 @section Invoking the C Preprocessor
3091 @cindex invocation of the preprocessor
3093 Most often when you use the C preprocessor you will not have to invoke it
3094 explicitly: the C compiler will do so automatically.  However, the
3095 preprocessor is sometimes useful on its own.
3097 @ignore
3098 @c man begin SYNOPSIS
3099 cpp [@samp{-P}] [@samp{-C}] [@samp{-gcc}] [@samp{-traditional}]
3100     [@samp{-undef}] [@samp{-trigraphs}] [@samp{-pedantic}]
3101     [@samp{-W}@var{warn}...] [@samp{-I}@var{dir}...]
3102     [@samp{-D}@var{macro}[=@var{defn}]...] [@samp{-U}@var{macro}]
3103     [@samp{-A}@var{predicate}(@var{answer})]
3104     [@samp{-M}|@samp{-MM}][@samp{-MG}][@samp{-MF}@var{filename}]
3105     [@samp{-MP}][@samp{-MQ}@var{target}...][@samp{-MT}@var{target}...]
3106     [@samp{-x} @var{language}] [@samp{-std=}@var{standard}]
3107     @var{infile} @var{outfile}
3109 Only the most useful options are listed here; see below for the remainder.
3110 @c man end
3111 @c man begin SEEALSO
3112 gcc(1), as(1), ld(1), and the Info entries for @file{cpp}, @file{gcc}, and
3113 @file{binutils}.
3114 @c man end
3115 @end ignore
3117 @c man begin OPTIONS
3118 The C preprocessor expects two file names as arguments, @var{infile} and
3119 @var{outfile}.  The preprocessor reads @var{infile} together with any
3120 other files it specifies with @samp{#include}.  All the output generated
3121 by the combined input files is written in @var{outfile}.
3123 Either @var{infile} or @var{outfile} may be @samp{-}, which as
3124 @var{infile} means to read from standard input and as @var{outfile}
3125 means to write to standard output.  Also, if either file is omitted, it
3126 means the same as if @samp{-} had been specified for that file.
3128 @cindex options
3129 Here is a table of command options accepted by the C preprocessor.
3130 These options can also be given when compiling a C program; they are
3131 passed along automatically to the preprocessor when it is invoked by the
3132 compiler.
3134 @table @samp
3135 @item -P
3136 @findex -P
3137 Inhibit generation of @samp{#}-lines with line-number information in the
3138 output from the preprocessor.  This might be useful when running the
3139 preprocessor on something that is not C code and will be sent to a
3140 program which might be confused by the @samp{#}-lines.  @xref{Output}.
3142 @item -C
3143 @findex -C
3144 Do not discard comments.  All comments are passed through to the output
3145 file, except for comments in processed directives, which are deleted
3146 along with the directive.  Comments appearing in the expansion list of a
3147 macro will be preserved, and appear in place wherever the macro is
3148 invoked.
3150 You should be prepared for side effects when using @samp{-C}; it causes
3151 the preprocessor to treat comments as tokens in their own right.  For
3152 example, macro redefinitions that were trivial when comments were
3153 replaced by a single space might become significant when comments are
3154 retained.  Also, comments appearing at the start of what would be a
3155 directive line have the effect of turning that line into an ordinary
3156 source line, since the first token on the line is no longer a @samp{#}.
3158 @item -traditional
3159 @findex -traditional
3160 Try to imitate the behavior of old-fashioned C, as opposed to ISO C@.
3162 @itemize @bullet
3163 @item
3164 Traditional macro expansion pays no attention to single-quote or
3165 double-quote characters; macro argument symbols are replaced by the
3166 argument values even when they appear within apparent string or
3167 character constants.
3169 @item
3170 Traditionally, it is permissible for a macro expansion to end in the
3171 middle of a string or character constant.  The constant continues into
3172 the text surrounding the macro call.
3174 @item
3175 However, traditionally the end of the line terminates a string or
3176 character constant, with no error.
3178 @item
3179 In traditional C, a comment is equivalent to no text at all.  (In ISO
3180 C, a comment counts as whitespace.)
3182 @item
3183 Traditional C does not have the concept of a ``preprocessing number''.
3184 It considers @samp{1.0e+4} to be three tokens: @samp{1.0e}, @samp{+},
3185 and @samp{4}.
3187 @item
3188 A macro is not suppressed within its own definition, in traditional C@.
3189 Thus, any macro that is used recursively inevitably causes an error.
3191 @item
3192 The character @samp{#} has no special meaning within a macro definition
3193 in traditional C@.
3195 @item
3196 In traditional C, the text at the end of a macro expansion can run
3197 together with the text after the macro call, to produce a single token.
3198 (This is impossible in ISO C@.)
3200 @item
3201 None of the GNU extensions to the preprocessor are available in
3202 @samp{-traditional} mode.
3204 @end itemize
3206 @cindex Fortran
3207 @cindex unterminated
3208 Use the @samp{-traditional} option when preprocessing Fortran code, so
3209 that single-quotes and double-quotes within Fortran comment lines (which
3210 are generally not recognized as such by the preprocessor) do not cause
3211 diagnostics about unterminated character or string constants.
3213 However, this option does not prevent diagnostics about unterminated
3214 comments when a C-style comment appears to start, but not end, within
3215 Fortran-style commentary.
3217 So, the following Fortran comment lines are accepted with
3218 @samp{-traditional}:
3220 @smallexample
3221 C This isn't an unterminated character constant
3222 C Neither is "20000000000, an octal constant
3223 C in some dialects of Fortran
3224 @end smallexample
3226 However, this type of comment line will likely produce a diagnostic, or
3227 at least unexpected output from the preprocessor, due to the
3228 unterminated comment:
3230 @smallexample
3231 C Some Fortran compilers accept /* as starting
3232 C an inline comment.
3233 @end smallexample
3235 @cindex g77
3236 Note that @code{g77} automatically supplies the @samp{-traditional}
3237 option when it invokes the preprocessor.  However, a future version of
3238 @code{g77} might use a different, more-Fortran-aware preprocessor in
3239 place of @code{cpp}.
3241 @item -trigraphs
3242 @findex -trigraphs
3243 Process ISO standard trigraph sequences.  These are three-character
3244 sequences, all starting with @samp{??}, that are defined by ISO C to
3245 stand for single characters.  For example, @samp{??/} stands for
3246 @samp{\}, so @samp{'??/n'} is a character constant for a newline.  By
3247 default, GCC ignores trigraphs, but in standard-conforming modes it
3248 converts them.  See the @samp{-std} option.
3250 The nine trigraph sequences are
3251 @table @samp
3252 @item ??(
3253 -> @samp{[}
3255 @item ??)
3256 -> @samp{]}
3258 @item ??<
3259 -> @samp{@{}
3261 @item ??>
3262 -> @samp{@}}
3264 @item ??=
3265 -> @samp{#}
3267 @item ??/
3268 -> @samp{\}
3270 @item ??'
3271 -> @samp{^}
3273 @item ??!
3274 -> @samp{|}
3276 @item ??-
3277 -> @samp{~}
3279 @end table
3281 Trigraph support is not popular, so many compilers do not implement it
3282 properly.  Portable code should not rely on trigraphs being either
3283 converted or ignored.
3285 @item -pedantic
3286 @findex -pedantic
3287 Issue warnings required by the ISO C standard in certain cases such
3288 as when text other than a comment follows @samp{#else} or @samp{#endif}.
3290 @item -pedantic-errors
3291 @findex -pedantic-errors
3292 Like @samp{-pedantic}, except that errors are produced rather than
3293 warnings.
3295 @item -Wcomment
3296 @findex -Wcomment
3297 @itemx -Wcomments
3298 (Both forms have the same effect).
3299 Warn whenever a comment-start sequence @samp{/*} appears in a @samp{/*}
3300 comment, or whenever a backslash-newline appears in a @samp{//} comment.
3302 @item -Wtrigraphs
3303 @findex -Wtrigraphs
3304 Warn if any trigraphs are encountered.  This option used to take effect
3305 only if @samp{-trigraphs} was also specified, but now works
3306 independently.  Warnings are not given for trigraphs within comments, as
3307 we feel this is obnoxious.
3309 @item -Wwhite-space
3310 @findex -Wwhite-space
3311 Warn about possible white space confusion, e.g. white space between a
3312 backslash and a newline.
3314 @item -Wall
3315 @findex -Wall
3316 Requests @samp{-Wcomment}, @samp{-Wtrigraphs}, and @samp{-Wwhite-space}
3317 (but not @samp{-Wtraditional} or @samp{-Wundef}).
3319 @item -Wtraditional
3320 @findex -Wtraditional
3321 Warn about certain constructs that behave differently in traditional and
3322 ISO C@.
3324 @itemize @bullet
3325 @item
3326 Macro parameters that appear within string literals in the macro body.
3327 In traditional C macro replacement takes place within string literals,
3328 but does not in ISO C.
3330 @item
3331 In traditional C, some preprocessor directives did not exist.
3332 Traditional preprocessors would only consider a line to be a directive
3333 if the @samp{#} appeared in column 1 on the line.  Therefore
3334 @samp{-Wtraditional} warns about directives that traditional C
3335 understands but would ignore because the @samp{#} does not appear as the
3336 first character on the line.  It also suggests you hide directives like
3337 @samp{#pragma} not understood by traditional C by indenting them.  Some
3338 traditional implementations would not recognise @samp{#elif}, so it
3339 suggests avoiding it altogether.
3341 @item
3342 A function-like macro that appears without arguments.
3344 @item
3345 The unary plus operator.
3347 @item
3348 The `U' integer constant suffix.  (Traditonal C does support the `L'
3349 suffix on integer constants.)  Note, these suffixes appear in macros
3350 defined in the system headers of most modern systems, e.g. the _MIN/_MAX
3351 macros in limits.h.  Use of these macros can lead to spurious warnings
3352 as they do not necessarily reflect whether the code in question is any
3353 less portable to traditional C given that suitable backup definitions
3354 are provided.
3355 @end itemize
3357 @item -Wundef
3358 @findex -Wundef
3359 Warn if an undefined identifier is evaluated in an @samp{#if} directive.
3361 @item -I @var{directory}
3362 @findex -I
3363 Add the directory @var{directory} to the head of the list of
3364 directories to be searched for header files (@pxref{Include Syntax}).
3365 This can be used to override a system header file, substituting your
3366 own version, since these directories are searched before the system
3367 header file directories.  If you use more than one @samp{-I} option,
3368 the directories are scanned in left-to-right order; the standard
3369 system directories come after.
3371 @item -I-
3372 Any directories specified with @samp{-I} options before the @samp{-I-}
3373 option are searched only for the case of @samp{#include "@var{file}"};
3374 they are not searched for @samp{#include <@var{file}>}.
3376 If additional directories are specified with @samp{-I} options after
3377 the @samp{-I-}, these directories are searched for all @samp{#include}
3378 directives.
3380 In addition, the @samp{-I-} option inhibits the use of the current
3381 directory as the first search directory for @samp{#include "@var{file}"}.
3382 Therefore, the current directory is searched only if it is requested
3383 explicitly with @samp{-I.}.  Specifying both @samp{-I-} and @samp{-I.}
3384 allows you to control precisely which directories are searched before
3385 the current one and which are searched after.
3387 @item -nostdinc
3388 @findex -nostdinc
3389 Do not search the standard system directories for header files.
3390 Only the directories you have specified with @samp{-I} options
3391 (and the current directory, if appropriate) are searched.
3393 By using both @samp{-nostdinc} and @samp{-I-}, you can limit the include-file
3394 search path to only those directories you specify explicitly.
3396 @item -nostdinc++
3397 @findex -nostdinc++
3398 Do not search for header files in the C++-specific standard directories,
3399 but do still search the other standard directories.  (This option is
3400 used when building the C++ library.)
3402 @item -remap
3403 @findex -remap
3404 When searching for a header file in a directory, remap file names if a
3405 file named @file{header.gcc} exists in that directory.  This can be used
3406 to work around limitations of file systems with file name restrictions.
3407 The @file{header.gcc} file should contain a series of lines with two
3408 tokens on each line: the first token is the name to map, and the second
3409 token is the actual name to use.
3411 @item -D @var{name}
3412 @findex -D
3413 Predefine @var{name} as a macro, with definition @samp{1}.
3415 @item -D @var{name}=@var{definition}
3416 Predefine @var{name} as a macro, with definition @var{definition}.
3417 There are no restrictions on the contents of @var{definition}, but if
3418 you are invoking the preprocessor from a shell or shell-like program you
3419 may need to use the shell's quoting syntax to protect characters such as
3420 spaces that have a meaning in the shell syntax.  If you use more than
3421 one @samp{-D} for the same @var{name}, the rightmost definition takes
3422 effect.
3424 Any @samp{-D} and @samp{-U} options on the command line are processed in
3425 order, and always before @samp{-imacros @var{file}}, regardless of the
3426 order in which they are written.
3428 @item -U @var{name}
3429 @findex -U
3430 Do not predefine @var{name}.
3432 Any @samp{-D} and @samp{-U} options on the command line are processed in
3433 order, and always before @samp{-imacros @var{file}}, regardless of the
3434 order in which they are written.
3436 @item -undef
3437 @findex -undef
3438 Do not predefine any nonstandard macros.
3440 @item -gcc
3441 @findex -gcc
3442 Define the macros @var{__GNUC__}, @var{__GNUC_MINOR__} and
3443 @var{__GNUC_PATCHLEVEL__}. These are defined automatically when you use
3444 @samp{gcc -E}; you can turn them off in that case with @samp{-no-gcc}.
3446 @item -A @var{predicate}=@var{answer}
3447 @findex -A
3448 Make an assertion with the predicate @var{predicate} and answer
3449 @var{answer}.  This form is preferred to the older form @samp{-A
3450 @var{predicate}(@var{answer})}, which is still supported, because
3451 it does not use shell special characters.  @xref{Assertions}.
3453 @item -A -@var{predicate}=@var{answer}
3454 Disable an assertion with the predicate @var{predicate} and answer
3455 @var{answer}.  Specifying no predicate, by @samp{-A-} or @samp{-A -},
3456 disables all predefined assertions and all assertions preceding it on
3457 the command line; and also undefines all predefined macros and all
3458 macros preceding it on the command line.
3460 @item -dM
3461 @findex -dM
3462 Instead of outputting the result of preprocessing, output a list of
3463 @samp{#define} directives for all the macros defined during the
3464 execution of the preprocessor, including predefined macros.  This gives
3465 you a way of finding out what is predefined in your version of the
3466 preprocessor; assuming you have no file @samp{foo.h}, the command
3468 @example
3469 touch foo.h; cpp -dM foo.h
3470 @end example
3472 @noindent 
3473 will show the values of any predefined macros.
3475 @item -dD
3476 @findex -dD
3477 Like @samp{-dM} except in two respects: it does @emph{not} include the
3478 predefined macros, and it outputs @emph{both} the @samp{#define}
3479 directives and the result of preprocessing.  Both kinds of output go to
3480 the standard output file.
3482 @item -dN
3483 @findex -dN
3484 Like @samp{-dD}, but emit only the macro names, not their expansions.
3486 @item -dI
3487 @findex -dI
3488 Output @samp{#include} directives in addition to the result of
3489 preprocessing.
3491 @item -M
3492 @findex -M
3493 Instead of outputting the result of preprocessing, output a rule
3494 suitable for @code{make} describing the dependencies of the main source
3495 file.  The preprocessor outputs one @code{make} rule containing the
3496 object file name for that source file, a colon, and the names of all the
3497 included files, including those coming from @samp{-include} or
3498 @samp{-imacros} command line options.  Unless specified explicitly (with
3499 @samp{-MT} or @samp{-MQ}), the object file name consists of the basename
3500 of the source file with any suffix replaced with object file suffix.
3501 If there are many included files
3502 then the rule is split into several lines using @samp{\}-newline.
3504 @item -MM
3505 @findex -MM
3506 Like @samp{-M}, but mention only the files included with @samp{#include
3507 "@var{file}"} or with @samp{-include} or @samp{-imacros} command line
3508 options.  System header files included with @samp{#include <@var{file}>}
3509 are omitted.
3511 @item -MF @var{file}
3512 @findex -MF
3513 When used with @samp{-M} or @samp{-MM}, specifies a file to write the
3514 dependencies to.  This allows the preprocessor to write the preprocessed
3515 file to stdout normally.  If no @samp{-MF} switch is given, CPP sends
3516 the rules to stdout and suppresses normal preprocessed output.
3518 @item -MG
3519 @findex -MG
3520 When used with @samp{-M} or @samp{-MM}, @samp{-MG} says to treat missing
3521 header files as generated files and assume they live in the same
3522 directory as the source file.  It suppresses preprocessed output, as a
3523 missing header file is ordinarily an error.
3525 This feature is used in automatic updating of makefiles.
3527 @item -MP
3528 @findex -MP
3529 This option instructs CPP to add a phony target for each dependency
3530 other than the main file, causing each to depend on nothing.  These
3531 dummy rules work around errors @code{make} gives if you remove header
3532 files without updating the @code{Makefile} to match.
3534 This is typical output:-
3536 @smallexample
3537 /tmp/test.o: /tmp/test.c /tmp/test.h
3539 /tmp/test.h:
3540 @end smallexample
3542 @item -MQ @var{target}
3543 @item -MT @var{target}
3544 @findex -MQ
3545 @findex -MT
3546 By default CPP uses the main file name, including any path, and appends
3547 the object suffix, normally ``.o'', to it to obtain the name of the
3548 target for dependency generation.  With @samp{-MT} you can specify a
3549 target yourself, overriding the default one.
3551 If you want multiple targets, you can specify them as a single argument
3552 to @samp{-MT}, or use multiple @samp{-MT} options.
3554 The targets you specify are output in the order they appear on the
3555 command line.  @samp{-MQ} is identical to @samp{-MT}, except that the
3556 target name is quoted for Make, but with @samp{-MT} it isn't.  For
3557 example, -MT '$(objpfx)foo.o' gives
3559 @smallexample
3560 $(objpfx)foo.o: /tmp/foo.c
3561 @end smallexample
3563 but -MQ '$(objpfx)foo.o' gives
3565 @smallexample
3566 $$(objpfx)foo.o: /tmp/foo.c
3567 @end smallexample
3569 The default target is automatically quoted, as if it were given with
3570 @samp{-MQ}.
3572 @item -H
3573 @findex -H
3574 Print the name of each header file used, in addition to other normal
3575 activities.
3577 @item -imacros @var{file}
3578 @findex -imacros
3579 Process @var{file} as input, discarding the resulting output, before
3580 processing the regular input file.  Because the output generated from
3581 @var{file} is discarded, the only effect of @samp{-imacros @var{file}}
3582 is to make the macros defined in @var{file} available for use in the
3583 main input.
3585 @item -include @var{file}
3586 @findex -include
3587 Process @var{file} as input, and include all the resulting output,
3588 before processing the regular input file.  
3590 @item -idirafter @var{dir}
3591 @findex -idirafter
3592 @cindex second include path
3593 Add the directory @var{dir} to the second include path.  The directories
3594 on the second include path are searched when a header file is not found
3595 in any of the directories in the main include path (the one that
3596 @samp{-I} adds to).
3598 @item -iprefix @var{prefix}
3599 @findex -iprefix
3600 Specify @var{prefix} as the prefix for subsequent @samp{-iwithprefix}
3601 options.  If the prefix represents a directory, you should include the
3602 final @samp{/}.
3604 @item -iwithprefix @var{dir}
3605 @findex -iwithprefix
3606 Add a directory to the second include path.  The directory's name is
3607 made by concatenating @var{prefix} and @var{dir}, where @var{prefix} was
3608 specified previously with @samp{-iprefix}.
3610 @item -isystem @var{dir}
3611 @findex -isystem
3612 Add a directory to the beginning of the second include path, marking it
3613 as a system directory, so that it gets the same special treatment as
3614 is applied to the standard system directories.  @xref{System Headers}.
3616 @item -x c
3617 @itemx -x c++
3618 @itemx -x objective-c
3619 @itemx -x assembler-with-cpp
3620 @findex -x c
3621 @findex -x objective-c
3622 @findex -x assembler-with-cpp
3623 Specify the source language: C, C++, Objective-C, or assembly.  This has
3624 nothing to do with standards conformance or extensions; it merely
3625 selects which base syntax to expect.  If you give none of these options,
3626 cpp will deduce the language from the extension of the source file:
3627 @samp{.c}, @samp{.cc}, @samp{.m}, or @samp{.S}.  Some other common
3628 extensions for C++ and assembly are also recognized.  If cpp does not
3629 recognize the extension, it will treat the file as C; this is the most
3630 generic mode.
3632 @strong{Note:} Previous versions of cpp accepted a @samp{-lang} option
3633 which selected both the language and the standards conformance level.
3634 This option has been removed, because it conflicts with the @samp{-l}
3635 option.
3637 @item -std=@var{standard}
3638 @itemx -ansi
3639 @findex -std
3640 @findex -ansi
3641 Specify the standard to which the code should conform.  Currently cpp
3642 only knows about the standards for C; other language standards will be
3643 added in the future.
3645 @var{standard}
3646 may be one of:
3647 @table @code
3648 @item iso9899:1990
3649 @itemx c89
3650 The ISO C standard from 1990.  @samp{c89} is the customary shorthand for
3651 this version of the standard.
3653 The @samp{-ansi} option is equivalent to @samp{-std=c89}.
3655 @item iso9899:199409
3656 The 1990 C standard, as amended in 1994.
3658 @item iso9899:1999
3659 @itemx c99
3660 @itemx iso9899:199x
3661 @itemx c9x
3662 The revised ISO C standard, published in December 1999.  Before
3663 publication, this was known as C9X.
3665 @item gnu89
3666 The 1990 C standard plus GNU extensions.  This is the default.
3668 @item gnu99
3669 @itemx gnu9x
3670 The 1999 C standard plus GNU extensions.
3671 @end table
3673 @item -ftabstop=NUMBER
3674 @findex -ftabstop
3675 Set the distance between tab stops.  This helps the preprocessor
3676 report correct column numbers in warnings or errors, even if tabs appear
3677 on the line.  Values less than 1 or greater than 100 are ignored.  The
3678 default is 8.
3680 @item -$
3681 @findex -$
3682 Forbid the use of @samp{$} in identifiers.  The C standard allows
3683 implementations to define extra characters that can appear in
3684 identifiers.  By default the GNU C preprocessor permits @samp{$}, a
3685 common extension.
3686 @end table
3687 @c man end
3689 @node Concept Index, Index, Invocation, Top
3690 @unnumbered Concept Index
3691 @printindex cp
3693 @node Index,, Concept Index, Top
3694 @unnumbered Index of Directives, Macros and Options
3695 @printindex fn
3697 @contents
3698 @bye