OSDN Git Service

* fix-header.c (read_scan_file): Use cpp_fatal.
[pf3gnuchains/gcc-fork.git] / gcc / fix-header.c
1 /* fix-header.c - Make C header file suitable for C++.
2    Copyright (C) 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
3
4 This program is free software; you can redistribute it and/or modify it
5 under the terms of the GNU General Public License as published by the
6 Free Software Foundation; either version 2, or (at your option) any
7 later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
17
18 /* This program massages a system include file (such as stdio.h),
19    into a form more conforming with ANSI/POSIX, and more suitable for C++:
20
21    * extern "C" { ... } braces are added (inside #ifndef __cplusplus),
22    if they seem to be needed.  These prevent C++ compilers from name
23    mangling the functions inside the braces.
24
25    * If an old-style incomplete function declaration is seen (without
26    an argument list), and it is a "standard" function listed in
27    the file sys-protos.h (and with a non-empty argument list), then
28    the declaration is converted to a complete prototype by replacing
29    the empty parameter list with the argument lust from sys-protos.h.
30
31    * The program can be given a list of (names of) required standard
32    functions (such as fclose for stdio.h).  If a required function
33    is not seen in the input, then a prototype for it will be
34    written to the output.
35
36    * If all of the non-comment code of the original file is protected
37    against multiple inclusion:
38         #ifndef FOO
39         #define FOO
40         <body of include file>
41         #endif
42    then extra matter added to the include file is placed inside the <body>.
43
44    * If the input file is OK (nothing needs to be done);
45    the output file is not written (nor removed if it exists).
46
47    There are also some special actions that are done for certain
48    well-known standard include files:
49
50    * If argv[1] is "sys/stat.h", the Posix.1 macros
51    S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISREG are added if
52    they were missing, and the corresponding "traditional" S_IFxxx
53    macros were defined.
54
55    * If argv[1] is "errno.h", errno is declared if it was missing.
56
57    * TODO:  The input file should be read complete into memory, because:
58    a) it needs to be scanned twice anyway, and
59    b) it would be nice to allow update in place.
60
61    Usage:
62         fix-header FOO.H INFILE.H OUTFILE.H [OPTIONS]
63    where:
64    * FOO.H is the relative file name of the include file,
65    as it would be #include'd by a C file.  (E.g. stdio.h)
66    * INFILE.H is a full pathname for the input file (e.g. /usr/include/stdio.h)
67    * OUTFILE.H is the full pathname for where to write the output file,
68    if anything needs to be done.  (e.g. ./include/stdio.h)
69    * OPTIONS are such as you would pass to cpp.
70
71    Written by Per Bothner <bothner@cygnus.com>, July 1993. */
72
73 #include <stdio.h>
74 #include <ctype.h>
75 #include "hconfig.h"
76 #include "obstack.h"
77 #include "scan.h"
78 #include "cpplib.h"
79 #include "gansidecl.h"
80
81 #ifndef O_RDONLY
82 #define O_RDONLY 0
83 #endif
84
85 extern void cpp_fatal ();
86
87 sstring buf;
88
89 int verbose = 0;
90 int partial_count = 0;
91 int warnings = 0;
92
93 /* We no longer need to add extern "C", because cpp implicitly
94    forces the standard include files to be treated as C.  */
95 /*#define ADD_MISSING_EXTERN_C 1 */
96
97 #if ADD_MISSING_EXTERN_C
98 int missing_extern_C_count = 0;
99 #endif
100
101 #include "xsys-protos.h"
102
103 #ifdef FIXPROTO_IGNORE_LIST
104 /* This is a currently unused feature. */
105
106 /* List of files and directories to ignore.
107    A directory name (ending in '/') means ignore anything in that
108    directory.  (It might be more efficient to do directory pruning
109    earlier in fixproto, but this is simpler and easier to customize.) */
110
111 static char *files_to_ignore[] = {
112   "X11/",
113   FIXPROTO_IGNORE_LIST
114   0
115 };
116 #endif
117
118 char *inf_buffer;
119 char *inf_limit;
120 char *inf_ptr;
121
122 /* Certain standard files get extra treatment */
123
124 enum special_file
125 {
126   no_special,
127   errno_h,
128   stdio_h,
129   stdlib_h,
130   sys_stat_h
131 };
132
133 /* A NAMELIST is a sequence of names, separated by '\0', and terminated
134    by an empty name (i.e. by "\0\0"). */
135
136 typedef const char* namelist;
137
138 /* The following macros provide the bits for symbol_flags. */
139 typedef int symbol_flags;
140
141 /* Used to mark names defined in the ANSI/ISO C standard. */
142 #define ANSI_SYMBOL 1
143
144 /* Used to mark names defined in the Posix.1 or Posix.2 standard. */
145 #define POSIX1_SYMBOL 2
146 #define POSIX2_SYMBOL 4
147
148 /* Used to mark names defined in X/Open Portability Guide. */
149 #define XOPEN_SYMBOL 8
150 /* Used to mark names defined in X/Open UNIX Extensions. */
151 #define XOPEN_EXTENDED_SYMBOL 16
152
153 /* Used to indicate names that are not functions */
154 #define MACRO_SYMBOL 512
155
156 struct symbol_list {
157   symbol_flags flags;
158   namelist names;
159 };
160
161 #define SYMBOL_TABLE_SIZE 10
162 struct symbol_list symbol_table[SYMBOL_TABLE_SIZE];
163 int cur_symbol_table_size;
164
165 void
166 add_symbols (flags, names)
167      symbol_flags flags;
168      namelist names;
169 {
170   symbol_table[cur_symbol_table_size].flags = flags;
171   symbol_table[cur_symbol_table_size].names = names;
172   cur_symbol_table_size++;
173   if (cur_symbol_table_size >= SYMBOL_TABLE_SIZE)
174     fatal ("too many calls to add_symbols");
175   symbol_table[cur_symbol_table_size].names = NULL; /* Termination. */
176 }
177
178 struct std_include_entry {
179   const char *name;
180   symbol_flags flags;
181   namelist names;
182 };
183
184 const char NONE[] = "";  /* The empty namelist. */
185
186 /* Special name to indicate a continuation line in std_include_table. */
187 const char CONTINUED[] = "";
188
189 struct std_include_entry *include_entry;
190
191 struct std_include_entry std_include_table [] = {
192   { "ctype.h", ANSI_SYMBOL,
193       "isalnum\0isalpha\0iscntrl\0isdigit\0isgraph\0islower\0\
194 isprint\0ispunct\0isspace\0isupper\0isxdigit\0tolower\0toupper\0" },
195
196   { "dirent.h", POSIX1_SYMBOL, "closedir\0opendir\0readdir\0rewinddir\0"},
197
198   { "errno.h", ANSI_SYMBOL|MACRO_SYMBOL, "errno\0" },
199
200   /* ANSI_SYMBOL is wrong, but ... */
201   { "curses.h", ANSI_SYMBOL, "box\0delwin\0endwin\0getcurx\0getcury\0initscr\0\
202 mvcur\0mvwprintw\0mvwscanw\0newwin\0overlay\0overwrite\0\
203 scroll\0subwin\0touchwin\0waddstr\0wclear\0wclrtobot\0wclrtoeol\0\
204 waddch\0wdelch\0wdeleteln\0werase\0wgetch\0wgetstr\0winsch\0winsertln\0\
205 wmove\0wprintw\0wrefresh\0wscanw\0wstandend\0wstandout\0" },
206
207   { "fcntl.h", POSIX1_SYMBOL, "creat\0fcntl\0open\0" },
208
209   /* Maybe also "getgrent fgetgrent setgrent endgrent" */
210   { "grp.h", POSIX1_SYMBOL, "getgrgid\0getgrnam\0" },
211
212 /*{ "limit.h", ... provided by gcc }, */
213
214   { "locale.h", ANSI_SYMBOL, "localeconv\0setlocale\0" },
215
216   { "math.h", ANSI_SYMBOL,
217       "acos\0asin\0atan\0atan2\0ceil\0cos\0cosh\0exp\0\
218 fabs\0floor\0fmod\0frexp\0ldexp\0log10\0log\0modf\0pow\0sin\0sinh\0sqrt\0\
219 tan\0tanh\0" },
220
221   { CONTINUED, ANSI_SYMBOL|MACRO_SYMBOL, "HUGE_VAL\0" },
222
223   { "pwd.h", POSIX1_SYMBOL, "getpwnam\0getpwuid\0" },
224
225   /* Left out siglongjmp sigsetjmp - these depend on sigjmp_buf. */
226   { "setjmp.h", ANSI_SYMBOL, "longjmp\0setjmp\0" },
227
228   /* Left out signal() - its prototype is too complex for us!
229      Also left out "sigaction sigaddset sigdelset sigemptyset
230      sigfillset sigismember sigpending sigprocmask sigsuspend"
231      because these need sigset_t or struct sigaction.
232      Most systems that provide them will also declare them. */
233   { "signal.h", ANSI_SYMBOL, "kill\0raise\0" },
234
235   { "stdio.h", ANSI_SYMBOL,
236       "clearerr\0fclose\0feof\0ferror\0fflush\0fgetc\0fgetpos\0\
237 fgets\0fopen\0fprintf\0fputc\0fputs\0fread\0freopen\0fscanf\0fseek\0\
238 fsetpos\0ftell\0fwrite\0getc\0getchar\0gets\00perror\0popen\0\
239 printf\0putc\0putchar\0puts\0remove\0rename\0rewind\0scanf\0setbuf\0\
240 setvbuf\0sprintf\0sscanf\0vprintf\0vsprintf\0vfprintf\0tmpfile\0\
241 tmpnam\0ungetc\0" },
242   { CONTINUED, POSIX1_SYMBOL, "fdopen\0fileno\0" },
243   { CONTINUED, POSIX2_SYMBOL, "pclose\0popen\0" },  /* I think ... */
244 /* Should perhaps also handle NULL, EOF, ... ? */
245
246   /* "div ldiv", - ignored because these depend on div_t, ldiv_t
247      ignore these: "mblen mbstowcs mbstowc wcstombs wctomb"
248      Left out getgroups, because SunOS4 has incompatible BSD and SVR4 versions.
249      Should perhaps also add NULL */
250   { "stdlib.h", ANSI_SYMBOL,
251       "abort\0abs\0atexit\0atof\0atoi\0atol\0bsearch\0calloc\0\
252 exit\0free\0getenv\0labs\0malloc\0putenv\0qsort\0rand\0realloc\0\
253 srand\0strtod\0strtol\0strtoul\0system\0" },
254   { CONTINUED, ANSI_SYMBOL|MACRO_SYMBOL, "EXIT_FAILURE\0EXIT_SUCCESS\0" },
255
256   { "string.h", ANSI_SYMBOL, "memchr\0memcmp\0memcpy\0memmove\0memset\0\
257 strcat\0strchr\0strcmp\0strcoll\0strcpy\0strcspn\0strerror\0\
258 strlen\0strncat\0strncmp\0strncpy\0strpbrk\0strrchr\0strspn\0strstr\0\
259 strtok\0strxfrm\0" },
260 /* Should perhaps also add NULL and size_t */
261
262   { "strings.h", XOPEN_EXTENDED_SYMBOL,
263       "bcmp\0bcopy\0bzero\0ffs\0index\0rindex\0strcasecmp\0strncasecmp\0" },
264
265   { "strops.h", XOPEN_EXTENDED_SYMBOL, "ioctl\0" },
266
267   /* Actually, XPG4 does not seem to have <sys/ioctl.h>, but defines
268      ioctl in <strops.h>.  However, many systems have it is sys/ioctl.h,
269      and many systems do have <sys/ioctl.h> but not <strops.h>. */
270   { "sys/ioctl.h", XOPEN_EXTENDED_SYMBOL, "ioctl\0" },
271
272   { "sys/socket.h", XOPEN_EXTENDED_SYMBOL, "socket\0" },
273
274   { "sys/stat.h", POSIX1_SYMBOL,
275       "chmod\0fstat\0mkdir\0mkfifo\0stat\0lstat\0umask\0" },
276   { CONTINUED, POSIX1_SYMBOL|MACRO_SYMBOL,
277       "S_ISDIR\0S_ISBLK\0S_ISCHR\0S_ISFIFO\0S_ISREG\0S_ISLNK\0S_IFDIR\0\
278 S_IFBLK\0S_IFCHR\0S_IFIFO\0S_IFREG\0S_IFLNK\0" },
279   { CONTINUED, XOPEN_EXTENDED_SYMBOL, "fchmod\0" },
280
281 #if 0
282 /* How do we handle fd_set? */
283   { "sys/time.h", XOPEN_EXTENDED_SYMBOL, "select\0" },
284   { "sys/select.h", XOPEN_EXTENDED_SYMBOL /* fake */, "select\0" },
285 #endif
286
287   { "sys/times.h", POSIX1_SYMBOL, "times\0" },
288   /* "sys/types.h" add types (not in old g++-include) */
289
290   { "sys/utsname.h", POSIX1_SYMBOL, "uname\0" },
291
292   { "sys/wait.h", POSIX1_SYMBOL, "wait\0waitpid\0" },
293   { CONTINUED, POSIX1_SYMBOL|MACRO_SYMBOL,
294       "WEXITSTATUS\0WIFEXITED\0WIFSIGNALED\0WIFSTOPPED\0WSTOPSIG\0\
295 WTERMSIG\0WNOHANG\0WNOTRACED\0" },
296
297   { "tar.h", POSIX1_SYMBOL, NONE },
298
299   { "termios.h", POSIX1_SYMBOL,
300       "cfgetispeed\0cfgetospeed\0cfsetispeed\0cfsetospeed\0tcdrain\0tcflow\0tcflush\0tcgetattr\0tcsendbreak\0tcsetattr\0" },
301
302   { "time.h", ANSI_SYMBOL,
303       "asctime\0clock\0ctime\0difftime\0gmtime\0localtime\0mktime\0strftime\0time\0tzset\0" },
304
305   { "unistd.h", POSIX1_SYMBOL,
306       "_exit\0access\0alarm\0chdir\0chown\0close\0ctermid\0cuserid\0\
307 dup\0dup2\0execl\0execle\0execlp\0execv\0execve\0execvp\0fork\0fpathconf\0\
308 getcwd\0getegid\0geteuid\0getgid\0getlogin\0getpgrp\0getpid\0\
309 getppid\0getuid\0isatty\0link\0lseek\0pathconf\0pause\0pipe\0read\0rmdir\0\
310 setgid\0setpgid\0setsid\0setuid\0sleep\0sysconf\0tcgetpgrp\0tcsetpgrp\0\
311 ttyname\0unlink\0write\0" },
312   { CONTINUED, POSIX2_SYMBOL, "getopt\0" },
313   { CONTINUED, XOPEN_EXTENDED_SYMBOL,
314       "lockf\0gethostid\0gethostname\0readlink\0" },
315
316   { "utime.h", POSIX1_SYMBOL, "utime\0" },
317
318   { NULL, 0, NONE }
319 };
320
321 enum special_file special_file_handling = no_special;
322
323 /* They are set if the corresponding macro has been seen. */
324 /* The following are only used when handling sys/stat.h */
325 int seen_S_IFBLK = 0, seen_S_ISBLK  = 0;
326 int seen_S_IFCHR = 0, seen_S_ISCHR  = 0;
327 int seen_S_IFDIR = 0, seen_S_ISDIR  = 0;
328 int seen_S_IFIFO = 0, seen_S_ISFIFO = 0;
329 int seen_S_IFLNK = 0, seen_S_ISLNK  = 0;
330 int seen_S_IFREG = 0, seen_S_ISREG  = 0;
331 /* The following are only used when handling errno.h */
332 int seen_errno = 0;
333 /* The following are only used when handling stdlib.h */
334 int seen_EXIT_FAILURE = 0, seen_EXIT_SUCCESS = 0;
335 \f
336 /* Wrapper around free, to avoid prototype clashes. */
337
338 void
339 xfree (ptr)
340      char *ptr;
341 {
342   free (ptr);
343 }
344
345 /* Avoid error if config defines abort as fancy_abort.
346    It's not worth "really" implementing this because ordinary
347    compiler users never run fix-header.  */
348
349 void
350 fancy_abort ()
351 {
352   abort ();
353 }
354 \f
355 #define obstack_chunk_alloc xmalloc
356 #define obstack_chunk_free xfree
357 struct obstack scan_file_obstack;
358
359 /* NOTE:  If you edit this, also edit gen-protos.c !! */
360 struct fn_decl *
361 lookup_std_proto (name, name_length)
362      const char *name;
363      int name_length;
364 {
365   int i = hashf (name, name_length, HASH_SIZE);
366   int i0 = i;
367   for (;;)
368     {
369       struct fn_decl *fn;
370       if (hash_tab[i] == 0)
371         return NULL;
372       fn = &std_protos[hash_tab[i]];
373       if (strlen (fn->fname) == name_length
374           && strncmp (fn->fname, name, name_length) == 0)
375         return fn;
376       i = (i+1) % HASH_SIZE;
377       if (i == i0)
378         abort ();
379     }
380 }
381
382 char *inc_filename;
383 int inc_filename_length;
384 char *progname = "fix-header";
385 FILE *outf;
386 sstring line;
387
388 int lbrac_line, rbrac_line;
389
390 int required_unseen_count = 0;
391 int required_other = 0;
392
393 void 
394 write_lbrac ()
395 {
396   
397 #if ADD_MISSING_EXTERN_C
398   if (missing_extern_C_count + required_unseen_count > 0)
399     fprintf (outf, "#ifdef __cplusplus\nextern \"C\" {\n#endif\n");
400 #endif
401
402   if (partial_count)
403     {
404       fprintf (outf, "#ifndef _PARAMS\n");
405       fprintf (outf, "#if defined(__STDC__) || defined(__cplusplus)\n");
406       fprintf (outf, "#define _PARAMS(ARGS) ARGS\n");
407       fprintf (outf, "#else\n");
408       fprintf (outf, "#define _PARAMS(ARGS) ()\n");
409       fprintf (outf, "#endif\n#endif /* _PARAMS */\n");
410     }
411 }
412
413 struct partial_proto
414 {
415   struct partial_proto *next;
416   char *fname;  /* name of function */
417   char *rtype;  /* return type */
418   struct fn_decl *fn;
419   int line_seen;
420 };
421
422 struct partial_proto *partial_proto_list = NULL;
423
424 struct partial_proto required_dummy_proto, seen_dummy_proto;
425 #define REQUIRED(FN) ((FN)->partial == &required_dummy_proto)
426 #define SET_REQUIRED(FN) ((FN)->partial = &required_dummy_proto)
427 #define SET_SEEN(FN) ((FN)->partial = &seen_dummy_proto)
428 #define SEEN(FN) ((FN)->partial == &seen_dummy_proto)
429
430 void
431 recognized_macro (fname)
432      char *fname;
433 {
434   /* The original include file defines fname as a macro. */
435   struct fn_decl *fn = lookup_std_proto (fname, strlen (fname));
436
437   /* Since fname is a macro, don't require a prototype for it. */
438   if (fn)
439     {
440       if (REQUIRED (fn))
441         required_unseen_count--;
442       SET_SEEN (fn);
443     }
444
445   switch (special_file_handling)
446     {
447     case errno_h:
448       if (strcmp (fname, "errno") == 0 && !seen_errno)
449         seen_errno = 1, required_other--;
450       break;
451     case stdlib_h:
452       if (strcmp (fname, "EXIT_FAILURE") == 0 && !seen_EXIT_FAILURE)
453         seen_EXIT_FAILURE = 1, required_other--;
454       if (strcmp (fname, "EXIT_SUCCESS") == 0 && !seen_EXIT_SUCCESS)
455         seen_EXIT_SUCCESS = 1, required_other--;
456       break;
457     case sys_stat_h:
458       if (fname[0] == 'S' && fname[1] == '_')
459         {
460           if (strcmp (fname, "S_IFBLK") == 0) seen_S_IFBLK++;
461           else if (strcmp (fname, "S_ISBLK") == 0) seen_S_ISBLK++;
462           else if (strcmp (fname, "S_IFCHR") == 0) seen_S_IFCHR++;
463           else if (strcmp (fname, "S_ISCHR") == 0) seen_S_ISCHR++;
464           else if (strcmp (fname, "S_IFDIR") == 0) seen_S_IFDIR++;
465           else if (strcmp (fname, "S_ISDIR") == 0) seen_S_ISDIR++;
466           else if (strcmp (fname, "S_IFIFO") == 0) seen_S_IFIFO++;
467           else if (strcmp (fname, "S_ISFIFO") == 0) seen_S_ISFIFO++;
468           else if (strcmp (fname, "S_IFLNK") == 0) seen_S_IFLNK++;
469           else if (strcmp (fname, "S_ISLNK") == 0) seen_S_ISLNK++;
470           else if (strcmp (fname, "S_IFREG") == 0) seen_S_IFREG++;
471           else if (strcmp (fname, "S_ISREG") == 0) seen_S_ISREG++;
472         }
473     }
474 }
475
476 void
477 recognized_extern (name, name_length, type, type_length)
478      char *name;
479      char *type;
480      int name_length, type_length;
481 {
482   switch (special_file_handling)
483     {
484     case errno_h:
485       if (strcmp (name, "errno") == 0 && !seen_errno)
486         seen_errno = 1, required_other--;
487       break;
488     }
489 }
490
491 /* Called by scan_decls if it saw a function definition for a function
492    named FNAME, with return type RTYPE, and argument list ARGS,
493    in source file FILE_SEEN on line LINE_SEEN.
494    KIND is 'I' for an inline function;
495    'F' if a normal function declaration preceded by 'extern "C"'
496    (or nested inside 'extern "C"' braces); or
497    'f' for other function declarations. */
498
499 void
500 recognized_function (fname, fname_length,
501                      kind, rtype, rtype_length,
502                      have_arg_list, file_seen, line_seen)
503      char *fname;
504      int fname_length;
505      int kind; /* One of 'f' 'F' or 'I' */
506      char *rtype;
507      int rtype_length;
508      int have_arg_list;
509      char *file_seen;
510      int line_seen;
511 {
512   struct partial_proto *partial;
513   int i;
514   struct fn_decl *fn;
515 #if ADD_MISSING_EXTERN_C
516   if (kind == 'f')
517     missing_extern_C_count++;
518 #endif
519
520   fn = lookup_std_proto (fname, fname_length);
521
522   /* Remove the function from the list of required function. */
523   if (fn)
524     {
525       if (REQUIRED (fn))
526         required_unseen_count--;
527       SET_SEEN (fn);
528     }
529
530   /* If we have a full prototype, we're done. */
531   if (have_arg_list)
532     return;
533       
534   if (kind == 'I')  /* don't edit inline function */
535     return;
536
537   /* If the partial prototype was included from some other file,
538      we don't need to patch it up (in this run). */
539   i = strlen (file_seen);
540   if (i < inc_filename_length
541       || strcmp (inc_filename, file_seen + (i - inc_filename_length)) != 0)
542     return;
543
544   if (fn == NULL)
545     return;
546   if (fn->params[0] == '\0' || strcmp (fn->params, "void") == 0)
547     return;
548
549   /* We only have a partial function declaration,
550      so remember that we have to add a complete prototype. */
551   partial_count++;
552   partial = (struct partial_proto*)
553     obstack_alloc (&scan_file_obstack, sizeof (struct partial_proto));
554   partial->fname = obstack_alloc (&scan_file_obstack, fname_length + 1);
555   bcopy (fname, partial->fname, fname_length);
556   partial->fname[fname_length] = 0;
557   partial->rtype = obstack_alloc (&scan_file_obstack, rtype_length + 1);
558   sprintf (partial->rtype, "%.*s", rtype_length, rtype);
559   partial->line_seen = line_seen;
560   partial->fn = fn;
561   fn->partial = partial;
562   partial->next = partial_proto_list;
563   partial_proto_list = partial;
564   if (verbose)
565     {
566       fprintf (stderr, "(%s: %s non-prototype function declaration.)\n",
567                inc_filename, partial->fname);
568     }
569 }
570
571 /* For any name in NAMES that is defined as a macro,
572    call recognized_macro on it. */
573
574 void
575 check_macro_names (pfile, names)
576      cpp_reader *pfile;
577      namelist names;
578 {
579   while (*names)
580     {
581       if (cpp_lookup (pfile, names, -1, -1))
582         recognized_macro (names);
583       names += strlen (names) + 1;
584     }
585 }
586
587 void
588 read_scan_file (in_fname, argc, argv)
589      char *in_fname;
590      int argc;
591      char **argv;
592 {
593   cpp_reader scan_in;
594   cpp_options scan_options;
595   struct fn_decl *fn;
596   int i;
597   register struct symbol_list *cur_symbols;
598
599   obstack_init (&scan_file_obstack); 
600
601   cpp_reader_init (&scan_in);
602   scan_in.data = &scan_options;
603   cpp_options_init (&scan_options);
604   i = cpp_handle_options (&scan_in, argc, argv);
605   if (i < argc && scan_in.errors < CPP_FATAL_LIMIT)
606     cpp_fatal (&scan_in, "Invalid option `%s'", argv[i]);
607   if (scan_in.errors >= CPP_FATAL_LIMIT)
608     exit (FATAL_EXIT_CODE);
609
610   if (! cpp_start_read (&scan_in, in_fname))
611     exit (FATAL_EXIT_CODE);
612   CPP_OPTIONS (&scan_in)->no_line_commands = 1;
613
614   scan_decls (&scan_in, argc, argv);
615   for (cur_symbols = &symbol_table[0]; cur_symbols->names; cur_symbols++)
616     check_macro_names (&scan_in, cur_symbols->names);
617
618   if (verbose && (scan_in.errors + warnings) > 0)
619     fprintf (stderr, "(%s: %d errors and %d warnings from cpp)\n",
620              inc_filename, scan_in.errors, warnings);
621   if (scan_in.errors)
622     exit (0);
623
624   /* Traditionally, getc and putc are defined in terms of _filbuf and _flsbuf.
625      If so, those functions are also required. */
626   if (special_file_handling == stdio_h
627       && (fn = lookup_std_proto ("_filbuf", 7)) != NULL)
628     {
629       static char getchar_call[] = "getchar();";
630       cpp_buffer *buf =
631         cpp_push_buffer (&scan_in, getchar_call, sizeof(getchar_call) - 1);
632       int old_written = CPP_WRITTEN (&scan_in);
633       int seen_filbuf = 0;
634
635       /* Scan the macro expansion of "getchar();". */
636       for (;;)
637         {
638           enum cpp_token token = cpp_get_token (&scan_in);
639           int length = CPP_WRITTEN (&scan_in) - old_written;
640           CPP_SET_WRITTEN (&scan_in, old_written);
641           if (token == CPP_EOF) /* Should not happen ... */
642             break;
643           if (token == CPP_POP && CPP_BUFFER (&scan_in) == buf)
644             {
645               cpp_pop_buffer (&scan_in);
646               break;
647             }
648           if (token == CPP_NAME && length == 7
649               && strcmp ("_filbuf", scan_in.token_buffer + old_written) == 0)
650             seen_filbuf++;
651         }
652       if (seen_filbuf)
653         {
654           int need_filbuf = !SEEN (fn) && !REQUIRED (fn);
655           struct fn_decl *flsbuf_fn = lookup_std_proto ("_flsbuf", 7);
656           int need_flsbuf
657             = flsbuf_fn && !SEEN (flsbuf_fn) && !REQUIRED (flsbuf_fn);
658
659           /* Append "_filbuf" and/or "_flsbuf" to the required functions. */
660           if (need_filbuf + need_flsbuf)
661             {
662               char *new_list;
663               if (need_filbuf)
664                 SET_REQUIRED (fn);
665               if (need_flsbuf)
666                 SET_REQUIRED (flsbuf_fn);
667               if (need_flsbuf + need_filbuf == 2)
668                 new_list = "_filbuf\0_flsbuf\0";
669               else if (need_flsbuf)
670                 new_list = "_flsbuf\0";
671               else /* if (need_flsbuf) */
672                 new_list = "_filbuf\0";
673               add_symbols (ANSI_SYMBOL, new_list);
674               required_unseen_count += need_filbuf + need_flsbuf;
675             }
676         }
677     }
678
679   if (required_unseen_count + partial_count + required_other
680 #if ADD_MISSING_EXTERN_C
681       + missing_extern_C_count
682 #endif      
683       == 0)
684     {
685       if (verbose)
686         fprintf (stderr, "%s: OK, nothing needs to be done.\n", inc_filename);
687       exit (0);
688     }
689   if (!verbose)
690     fprintf (stderr, "%s: fixing %s\n", progname, inc_filename);
691   else
692     {
693       if (required_unseen_count)
694         fprintf (stderr, "%s: %d missing function declarations.\n",
695                  inc_filename, required_unseen_count);
696       if (partial_count)
697         fprintf (stderr, "%s: %d non-prototype function declarations.\n",
698                  inc_filename, partial_count);
699 #if ADD_MISSING_EXTERN_C
700       if (missing_extern_C_count)
701         fprintf (stderr,
702                  "%s: %d declarations not protected by extern \"C\".\n",
703                  inc_filename, missing_extern_C_count);
704 #endif
705     }
706 }
707
708 void
709 write_rbrac ()
710 {
711   struct fn_decl *fn;
712   const char *cptr;
713   register struct symbol_list *cur_symbols;
714
715   if (required_unseen_count)
716     {
717 #ifdef NO_IMPLICIT_EXTERN_C
718       fprintf (outf, "#ifdef __cplusplus\nextern \"C\" {\n#endif\n");
719 #endif
720     }
721
722   /* Now we print out prototypes for those functions that we haven't seen. */
723   for (cur_symbols = &symbol_table[0]; cur_symbols->names; cur_symbols++)
724     {
725       int if_was_emitted = 0;
726       int name_len;
727       cptr = cur_symbols->names;
728       for ( ; (name_len = strlen (cptr)) != 0; cptr+= name_len + 1)
729         {
730           int macro_protect = 0;
731
732           if (cur_symbols->flags & MACRO_SYMBOL)
733             continue;
734
735           fn = lookup_std_proto (cptr, name_len);
736           if (fn == NULL || !REQUIRED (fn))
737             continue;
738
739           if (!if_was_emitted)
740             {
741 /*            what about curses. ??? or _flsbuf/_filbuf ??? */
742               if (cur_symbols->flags & ANSI_SYMBOL)
743                 fprintf (outf,
744          "#if defined(__USE_FIXED_PROTOTYPES__) || defined(__cplusplus) || defined (__STRICT_ANSI__)\n");
745               else if (cur_symbols->flags & (POSIX1_SYMBOL|POSIX2_SYMBOL))
746                 fprintf (outf,
747        "#if defined(__USE_FIXED_PROTOTYPES__) || (defined(__cplusplus) \\\n\
748     ? (!defined(__STRICT_ANSI__) || defined(_POSIX_SOURCE)) \\\n\
749     : (defined(__STRICT_ANSI__) && defined(_POSIX_SOURCE)))\n");
750               else if (cur_symbols->flags & XOPEN_SYMBOL)
751                 {
752                 fprintf (outf,
753        "#if defined(__USE_FIXED_PROTOTYPES__) \\\n\
754    || (defined(__STRICT_ANSI__) && defined(_XOPEN_SOURCE))\n");
755                 }
756               else if (cur_symbols->flags & XOPEN_EXTENDED_SYMBOL)
757                 {
758                 fprintf (outf,
759        "#if defined(__USE_FIXED_PROTOTYPES__) \\\n\
760    || (defined(__STRICT_ANSI__) && defined(_XOPEN_EXTENDED_SOURCE))\n");
761                 }
762               else
763                 {
764                   fatal ("internal error for function %s", fn->fname);
765                 }
766               if_was_emitted = 1;
767             }
768
769           /* In the case of memmove, protect in case the application
770              defines it as a macro before including the header.  */
771           if (!strcmp (fn->fname, "memmove")
772               || !strcmp (fn->fname, "vprintf")
773               || !strcmp (fn->fname, "vfprintf")
774               || !strcmp (fn->fname, "vsprintf")
775               || !strcmp (fn->fname, "rewinddir"))
776             macro_protect = 1;
777
778           if (macro_protect)
779             fprintf (outf, "#ifndef %s\n", fn->fname);
780           fprintf (outf, "extern %s %s (%s);\n",
781                    fn->rtype, fn->fname, fn->params);
782           if (macro_protect)
783             fprintf (outf, "#endif\n");
784         }
785       if (if_was_emitted)
786         fprintf (outf,
787                  "#endif /* defined(__USE_FIXED_PROTOTYPES__) || ... */\n");
788     }
789   if (required_unseen_count)
790     {
791 #ifdef NO_IMPLICIT_EXTERN_C
792       fprintf (outf, "#ifdef __cplusplus\n}\n#endif\n");
793 #endif
794     }
795
796   switch (special_file_handling)
797     {
798     case errno_h:
799       if (!seen_errno)
800         fprintf (outf, "extern int errno;\n");
801       break;
802     case stdlib_h:
803       if (!seen_EXIT_FAILURE)
804         fprintf (outf, "#define EXIT_FAILURE 1\n");
805       if (!seen_EXIT_SUCCESS)
806         fprintf (outf, "#define EXIT_SUCCESS 0\n");
807       break;
808     case sys_stat_h:
809       if (!seen_S_ISBLK && seen_S_IFBLK)
810         fprintf (outf,
811                  "#define S_ISBLK(mode) (((mode) & S_IFMT) == S_IFBLK)\n");
812       if (!seen_S_ISCHR && seen_S_IFCHR)
813         fprintf (outf,
814                  "#define S_ISCHR(mode) (((mode) & S_IFMT) == S_IFCHR)\n");
815       if (!seen_S_ISDIR && seen_S_IFDIR)
816         fprintf (outf,
817                  "#define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)\n");
818       if (!seen_S_ISFIFO && seen_S_IFIFO)
819         fprintf (outf,
820                  "#define S_ISFIFO(mode) (((mode) & S_IFMT) == S_IFIFO)\n");
821       if (!seen_S_ISLNK && seen_S_IFLNK)
822         fprintf (outf,
823                  "#define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)\n");
824       if (!seen_S_ISREG && seen_S_IFREG)
825         fprintf (outf,
826                  "#define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG)\n");
827       break;
828     }
829
830
831 #if ADD_MISSING_EXTERN_C
832   if (missing_extern_C_count + required_unseen_count > 0)
833     fprintf (outf, "#ifdef __cplusplus\n}\n#endif\n");
834 #endif
835 }
836
837 char *
838 xstrdup (str)
839      char *str;
840 {
841   char *copy = (char *) xmalloc (strlen (str) + 1);
842   strcpy (copy, str);
843   return copy;
844 }
845
846 /* Returns 1 iff the file is properly protected from multiple inclusion:
847    #ifndef PROTECT_NAME
848    #define PROTECT_NAME
849    #endif
850
851  */
852
853 #define INF_GET() (inf_ptr < inf_limit ? *(unsigned char*)inf_ptr++ : EOF)
854 #define INF_UNGET(c) ((c)!=EOF && inf_ptr--)
855
856 int
857 inf_skip_spaces (c)
858      int c;
859 {
860   for (;;)
861     {
862       if (c == ' ' || c == '\t')
863         c = INF_GET ();
864       else if (c == '/')
865         {
866           c = INF_GET ();
867           if (c != '*')
868             {
869               INF_UNGET (c);
870               return '/';
871             }
872           c = INF_GET ();
873           for (;;)
874             {
875               if (c == EOF)
876                 return EOF;
877               else if (c != '*')
878                 {
879                   if (c == '\n')
880                     source_lineno++, lineno++;
881                   c = INF_GET ();
882                 }
883               else if ((c = INF_GET ()) == '/')
884                 return INF_GET ();
885             }
886         }
887       else
888         break;
889     }
890   return c;
891 }
892
893 /* Read into STR from inf_buffer upto DELIM. */
894
895 int
896 inf_read_upto (str, delim)
897      sstring *str;
898      int delim;
899 {
900   int ch;
901   for (;;)
902     {
903       ch = INF_GET ();
904       if (ch == EOF || ch == delim)
905         break;
906       SSTRING_PUT (str, ch);
907     }
908   MAKE_SSTRING_SPACE (str, 1);
909   *str->ptr = 0;
910   return ch;
911 }
912
913 int
914 inf_scan_ident (s, c)
915      register sstring *s;
916      int c;
917 {
918   s->ptr = s->base;
919   if (isalpha (c) || c == '_')
920     {
921       for (;;)
922         {
923           SSTRING_PUT (s, c);
924           c = INF_GET ();
925           if (c == EOF || !(isalnum (c) || c == '_'))
926             break;
927         }
928     }
929   MAKE_SSTRING_SPACE (s, 1);
930   *s->ptr = 0;
931   return c;
932 }
933
934 /* Returns 1 if the file is correctly protected against multiple
935    inclusion, setting *ifndef_line to the line number of the initial #ifndef
936    and setting *endif_line to the final #endif.
937    Otherwise return 0. */
938
939 int
940 check_protection (ifndef_line, endif_line)
941      int *ifndef_line, *endif_line;
942 {
943   int c;
944   int if_nesting = 1; /* Level of nesting of #if's */
945   char *protect_name = NULL; /* Identifier following initial #ifndef */
946   int define_seen = 0;
947
948   /* Skip initial white space (including comments). */
949   for (;; lineno++)
950     {
951       c = inf_skip_spaces (' ');
952       if (c == EOF)
953         return 0;
954       if (c != '\n')
955         break;
956     }
957   if (c != '#')
958     return 0;
959   c = inf_scan_ident (&buf, inf_skip_spaces (' '));
960   if (SSTRING_LENGTH (&buf) == 0 || strcmp (buf.base, "ifndef") != 0)
961     return 0;
962
963   /* So far so good: We've seen an initial #ifndef. */
964   *ifndef_line = lineno;
965   c = inf_scan_ident (&buf, inf_skip_spaces (c));
966   if (SSTRING_LENGTH (&buf) == 0 || c == EOF)
967     return 0;
968   protect_name = xstrdup (buf.base);
969
970   INF_UNGET (c);
971   c = inf_read_upto (&buf, '\n');
972   if (c == EOF)
973     return 0;
974   lineno++;
975
976   for (;;)
977     {
978       c = inf_skip_spaces (' ');
979       if (c == EOF)
980         return 0;
981       if (c == '\n')
982         {
983           lineno++;
984           continue;
985         }
986       if (c != '#')
987         goto skip_to_eol;
988       c = inf_scan_ident (&buf, inf_skip_spaces (' '));
989       if (SSTRING_LENGTH (&buf) == 0)
990         ;
991       else if (!strcmp (buf.base, "ifndef")
992           || !strcmp (buf.base, "ifdef") || !strcmp (buf.base, "if"))
993         {
994           if_nesting++;
995         }
996       else if (!strcmp (buf.base, "endif"))
997         {
998           if_nesting--;
999           if (if_nesting == 0)
1000             break;
1001         }
1002       else if (!strcmp (buf.base, "else"))
1003         {
1004           if (if_nesting == 1)
1005             return 0;
1006         }
1007       else if (!strcmp (buf.base, "define"))
1008         {
1009           if (if_nesting != 1)
1010             goto skip_to_eol;
1011           c = inf_skip_spaces (c);
1012           c = inf_scan_ident (&buf, c);
1013           if (buf.base[0] > 0 && strcmp (buf.base, protect_name) == 0)
1014             define_seen = 1;
1015         }
1016     skip_to_eol:
1017       for (;;)
1018         {
1019           if (c == '\n' || c == EOF)
1020             break;
1021           c = INF_GET ();
1022         }
1023       if (c == EOF)
1024         return 0;
1025       lineno++;
1026     }
1027
1028   if (!define_seen)
1029      return 0;
1030   *endif_line = lineno;
1031   /* Skip final white space (including comments). */
1032   for (;;)
1033     {
1034       c = inf_skip_spaces (' ');
1035       if (c == EOF)
1036         break;
1037       if (c != '\n')
1038         return 0;
1039     }
1040
1041   return 1;
1042 }
1043
1044 int
1045 main (argc, argv)
1046      int argc;
1047      char **argv;
1048 {
1049   int inf_fd;
1050   struct stat sbuf;
1051   int c;
1052   int i, done;
1053   const char *cptr, **pptr;
1054   int ifndef_line;
1055   int endif_line;
1056   long to_read;
1057   long int inf_size;
1058   register struct symbol_list *cur_symbols;
1059
1060   if (argv[0] && argv[0][0])
1061     {
1062       register char *p;
1063
1064       progname = 0;
1065       for (p = argv[0]; *p; p++)
1066         if (*p == '/')
1067           progname = p;
1068       progname = progname ? progname+1 : argv[0];
1069     }
1070
1071   if (argc < 4)
1072     {
1073       fprintf (stderr, "%s: Usage: foo.h infile.h outfile.h options\n",
1074                progname);
1075       exit (-1);
1076     }
1077
1078   inc_filename = argv[1];
1079   inc_filename_length = strlen (inc_filename);
1080
1081 #ifdef FIXPROTO_IGNORE_LIST
1082   for (i = 0; files_to_ignore[i] != NULL; i++)
1083     {
1084       char *ignore_name = files_to_ignore[i];
1085       int ignore_len = strlen (ignore_name);
1086       if (strncmp (inc_filename, ignore_name, ignore_len) == 0)
1087         {
1088           if (ignore_name[ignore_len-1] == '/'
1089               || inc_filename[ignore_len] == '\0')
1090             {
1091               if (verbose)
1092                 fprintf (stderr, "%s: ignoring %s\n", progname, inc_filename);
1093               exit (0);
1094             }
1095         }
1096           
1097     }
1098 #endif
1099
1100   if (strcmp (inc_filename, "sys/stat.h") == 0)
1101     special_file_handling = sys_stat_h;
1102   else if (strcmp (inc_filename, "errno.h") == 0)
1103     special_file_handling = errno_h, required_other++;
1104   else if (strcmp (inc_filename, "stdlib.h") == 0)
1105     special_file_handling = stdlib_h, required_other+=2;
1106   else if (strcmp (inc_filename, "stdio.h") == 0)
1107     special_file_handling = stdio_h;
1108   include_entry = std_include_table;
1109   while (include_entry->name != NULL
1110          && (include_entry->name == CONTINUED
1111              || strcmp (inc_filename, include_entry->name) != 0))
1112     include_entry++;
1113
1114   if (include_entry->name != NULL)
1115     {
1116       struct std_include_entry *entry;
1117       cur_symbol_table_size = 0;
1118       for (entry = include_entry; ;)
1119         {
1120           add_symbols (entry->flags, entry->names);
1121           entry++;
1122           if (entry->name != CONTINUED)
1123             break;
1124         }
1125     }
1126   else
1127     symbol_table[0].names = NULL;
1128
1129   /* Count and mark the prototypes required for this include file. */ 
1130   for (cur_symbols = &symbol_table[0]; cur_symbols->names; cur_symbols++)
1131     {
1132       int name_len;
1133       if (cur_symbols->flags & MACRO_SYMBOL)
1134         continue;
1135       cptr = cur_symbols->names;
1136       for ( ; (name_len = strlen (cptr)) != 0; cptr+= name_len + 1)
1137         {
1138           struct fn_decl *fn = lookup_std_proto (cptr, name_len);
1139           required_unseen_count++;
1140           if (fn == NULL)
1141             fprintf (stderr, "Internal error:  No prototype for %s\n", cptr);
1142           else
1143             SET_REQUIRED (fn);
1144         }
1145     }
1146
1147   read_scan_file (argv[2], argc - 4, argv + 4);
1148
1149   inf_fd = open (argv[2], O_RDONLY, 0666);
1150   if (inf_fd < 0)
1151     {
1152       fprintf (stderr, "%s: Cannot open '%s' for reading -",
1153                progname, argv[2]);
1154       perror (NULL);
1155       exit (-1);
1156     }
1157   if (fstat (inf_fd, &sbuf) < 0)
1158     {
1159       fprintf (stderr, "%s: Cannot get size of '%s' -", progname, argv[2]);
1160       perror (NULL);
1161       exit (-1);
1162     }
1163   inf_size = sbuf.st_size;
1164   inf_buffer = (char*) xmalloc (inf_size + 2);
1165   inf_buffer[inf_size] = '\n';
1166   inf_buffer[inf_size + 1] = '\0';
1167   inf_limit = inf_buffer + inf_size;
1168   inf_ptr = inf_buffer;
1169
1170   to_read = inf_size;
1171   while (to_read > 0)
1172     {
1173       long i = read (inf_fd, inf_buffer + inf_size - to_read, to_read);
1174       if (i < 0)
1175         {
1176           fprintf (stderr, "%s: Failed to read '%s' -", progname, argv[2]);
1177           perror (NULL);
1178           exit (-1);
1179         }
1180       if (i == 0)
1181         {
1182           inf_size -= to_read;
1183           break;
1184         }
1185       to_read -= i;
1186     }
1187
1188   close (inf_fd);
1189
1190   /* If file doesn't end with '\n', add one. */
1191   if (inf_limit > inf_buffer && inf_limit[-1] != '\n')
1192     inf_limit++;
1193
1194   unlink (argv[3]);
1195   outf = fopen (argv[3], "w");
1196   if (outf == NULL)
1197     {
1198       fprintf (stderr, "%s: Cannot open '%s' for writing -",
1199                progname, argv[3]);
1200       perror (NULL);
1201       exit (-1);
1202     }
1203
1204   lineno = 1;
1205
1206   if (check_protection (&ifndef_line, &endif_line))
1207     {
1208       lbrac_line = ifndef_line+1;
1209       rbrac_line = endif_line;
1210     }
1211   else
1212     {
1213       lbrac_line = 1;
1214       rbrac_line = -1;
1215     }
1216
1217   /* Reset input file. */
1218   inf_ptr = inf_buffer;
1219   lineno = 1;
1220
1221   for (;;)
1222     {
1223       if (lineno == lbrac_line)
1224         write_lbrac ();
1225       if (lineno == rbrac_line)
1226         write_rbrac ();
1227       for (;;)
1228         {
1229           struct fn_decl *fn;
1230           c = INF_GET ();
1231           if (c == EOF)
1232             break;
1233           if (isalpha (c) || c == '_')
1234             {
1235               c = inf_scan_ident (&buf, c);
1236               INF_UNGET (c);
1237               fputs (buf.base, outf);
1238               fn = lookup_std_proto (buf.base, strlen (buf.base));
1239               /* We only want to edit the declaration matching the one
1240                  seen by scan-decls, as there can be multiple
1241                  declarations, selected by #ifdef __STDC__ or whatever. */
1242               if (fn && fn->partial && fn->partial->line_seen == lineno)
1243                 {
1244                   c = inf_skip_spaces (' ');
1245                   if (c == EOF)
1246                     break;
1247                   if (c == '(')
1248                     {
1249                       c = inf_skip_spaces (' ');
1250                       if (c == ')')
1251                         {
1252                           fprintf (outf, " _PARAMS((%s))", fn->params);
1253                         }
1254                       else
1255                         {
1256                           putc ('(', outf);
1257                           INF_UNGET (c);
1258                         }
1259                     }
1260                   else
1261                     fprintf (outf, " %c", c);
1262                 }
1263             }
1264           else
1265             {
1266               putc (c, outf);
1267               if (c == '\n')
1268                 break;
1269             }
1270         }
1271       if (c == EOF)
1272         break;
1273       lineno++;
1274     }
1275   if (rbrac_line < 0)
1276     write_rbrac ();
1277
1278   fclose (outf);
1279
1280   return 0;
1281 }
1282 \f
1283 /* Stub error functions.  These replace cpperror.c,
1284    because we want to suppress error messages. */
1285
1286 void
1287 cpp_file_line_for_message (pfile, filename, line, column)
1288      cpp_reader *pfile;
1289      char *filename;
1290      int line, column;
1291 {
1292   if (!verbose)
1293     return;
1294   if (column > 0)
1295     fprintf (stderr, "%s:%d:%d: ", filename, line, column);
1296   else
1297     fprintf (stderr, "%s:%d: ", filename, line);
1298 }
1299
1300 void
1301 cpp_print_containing_files (pfile)
1302      cpp_reader *pfile;
1303 {
1304 }
1305
1306 /* IS_ERROR is 2 for fatal error, 1 for error, 0 for warning */
1307 void cpp_message (pfile, is_error, msg, arg1, arg2, arg3)
1308      int is_error;
1309      cpp_reader *pfile;
1310      char *msg;
1311      char *arg1, *arg2, *arg3;
1312 {
1313   if (is_error == 1)
1314     pfile->errors++;
1315   else if (is_error > 1)
1316     pfile->errors = CPP_FATAL_LIMIT;
1317   if (!verbose)
1318     return;
1319   if (!is_error)
1320     fprintf (stderr, "warning: ");
1321   fprintf (stderr, msg, arg1, arg2, arg3);
1322   fprintf (stderr, "\n");
1323 }
1324
1325 void
1326 fatal (str, arg)
1327      char *str, *arg;
1328 {
1329   fprintf (stderr, "%s: %s: ", progname, inc_filename);
1330   fprintf (stderr, str, arg);
1331   fprintf (stderr, "\n");
1332   exit (FATAL_EXIT_CODE);
1333 }
1334
1335 void
1336 cpp_fatal (pfile, str, arg)
1337      cpp_reader *pfile;
1338      char *str, *arg;
1339 {
1340   fatal (str, arg);
1341 }
1342
1343 void
1344 cpp_pfatal_with_name (pfile, name)
1345      cpp_reader *pfile;
1346      char *name;
1347 {
1348   cpp_perror_with_name (pfile, name);
1349   exit (FATAL_EXIT_CODE);
1350 }