OSDN Git Service

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