OSDN Git Service

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