OSDN Git Service

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