OSDN Git Service

fc39fbbd2b8bf7cd18564e443d14bdb7ca8b2bfa
[pf3gnuchains/gcc-fork.git] / gcc / fixinc / inclhack.def
1 /* -*- Mode: C -*-  */
2
3 autogen definitions fixincl;
4
5 /* Define all the fixes we know about for repairing damaged headers.
6    Please see the README before adding or changing entries in this file.
7
8    This is the sort command:
9
10    blocksort output=inclhack.sorted \
11           pattern='^/\*$' \
12           trailer='^/\*EOF\*[/]' \
13           input=inclhack.def \
14           key='hackname[        ]*=[    ]*(.*);'
15
16    Set up a debug test so we can make the templates emit special
17    code while debugging these fixes:  */
18
19 #ifdef DEBUG
20 FIXINC_DEBUG = yes;
21 #endif
22
23 /*
24  *  This fixes __FD_ZERO bug for linux 2.x.y (x <= 2 && y <= some n)
25  */
26 fix = {
27     hackname = AAB_fd_zero_asm_posix_types_h;
28     files    = asm/posix_types.h;
29     mach     = 'i[34567]86-*-linux*';
30     bypass   = '} while';
31
32     /*
33      * Define _POSIX_TYPES_H_WRAPPER at the end of the wrapper, not
34      * the start, so that if #include_next gets another instance of
35      * the wrapper, this will follow the #include_next chain until
36      * we arrive at the real <asm/posix_types.h>.
37      */
38     replace  = <<-  _EndOfHeader_
39         /* This file fixes a bug in the __FD_ZERO macro
40            for older versions of the Linux kernel. */
41         #ifndef _POSIX_TYPES_H_WRAPPER
42         #include <features.h>
43          #include_next <asm/posix_types.h>
44         
45         #if defined(__FD_ZERO) && !defined(__GLIBC__)
46         #undef __FD_ZERO
47         #define __FD_ZERO(fdsetp) \
48           do { \
49             int __d0, __d1; \
50                         __asm__ __volatile__("cld ; rep ; stosl" \
51                                 : "=&c" (__d0), "=&D" (__d1) \
52                                 : "a" (0), "0" (__FDSET_LONGS), \
53                                   "1" ((__kernel_fd_set *) (fdsetp)) :"memory"); \
54           } while (0)
55         #endif
56         
57         #define _POSIX_TYPES_H_WRAPPER
58         #endif /* _POSIX_TYPES_H_WRAPPER */
59         _EndOfHeader_;
60 };
61
62
63 /*
64  *  This fixes __FD_ZERO bug for glibc-1.x
65  */
66 fix = {
67     hackname = AAB_fd_zero_gnu_types_h;
68     files    = gnu/types.h;
69     mach     = 'i[34567]86-*-linux*';
70
71     /*
72      * Define _TYPES_H_WRAPPER at the end of the wrapper, not
73      * the start, so that if #include_next gets another instance of
74      * the wrapper, this will follow the #include_next chain until
75      * we arrive at the real <gnu/types.h>.
76      */
77     replace  = <<-  _EndOfHeader_
78         /* This file fixes a bug in the __FD_ZERO macro present in glibc 1.x. */
79         #ifndef _TYPES_H_WRAPPER
80         #include <features.h>
81         #include_next <gnu/types.h>
82
83         #if defined(__FD_ZERO) && !defined(__GLIBC__)
84         #undef __FD_ZERO
85         # define __FD_ZERO(fdsetp) \\
86           do { \\
87             int __d0, __d1; \\
88                 __asm__ __volatile__("cld ; rep ; stosl" \\
89                 : "=&c" (__d0), "=&D" (__d1) \\
90                 : "a" (0), "0" (__FDSET_LONGS), \\
91                   "1" ((__fd_set *) (fdsetp)) :"memory"); \\
92           } while (0)
93         #endif
94
95         #define _TYPES_H_WRAPPER
96         #endif /* _TYPES_H_WRAPPER */
97         _EndOfHeader_;
98 };
99
100
101 /*
102  *  This fixes __FD_ZERO bug for glibc-2.0.x
103  */
104 fix = {
105     hackname = AAB_fd_zero_selectbits_h;
106     files    = selectbits.h;
107     mach     = 'i[34567]86-*-linux*';
108
109     /*
110      * Define _SELECTBITS_H_WRAPPER at the end of the wrapper, not
111      * the start, so that if #include_next gets another instance of
112      * the wrapper, this will follow the #include_next chain until
113      * we arrive at the real <selectbits.h>.
114      */
115     replace  = <<-  _EndOfHeader_
116         /* This file fixes a bug in the __FD_ZERO macro present in glibc 2.0.x. */
117         #ifndef _SELECTBITS_H_WRAPPER
118           #include <features.h>
119           #include_next <selectbits.h>
120
121           #if defined(__FD_ZERO) && defined(__GLIBC__) \\
122           && defined(__GLIBC_MINOR__) && __GLIBC__ == 2 \\
123           && __GLIBC_MINOR__ == 0
124              #undef __FD_ZERO
125              #define __FD_ZERO(fdsetp) \\
126              do { \\
127                 int __d0, __d1; \\
128               __asm__ __volatile__ ("cld; rep; stosl" \\
129                         : "=&c" (__d0), "=&D" (__d1) \\
130                         : "a" (0), "0" (sizeof (__fd_set) \\
131                                         / sizeof (__fd_mask)), \\
132                           "1" ((__fd_mask *) (fdsetp)) \\
133                         : "memory"); \\
134               } while (0)
135           #endif
136
137           #define _SELECTBITS_H_WRAPPER
138         #endif /* _SELECTBITS_H_WRAPPER */
139         _EndOfHeader_;
140 };
141
142
143 /*
144  * Solaris <sys/varargs.h> is a DDK (aka kernel-land) header providing
145  * the same interface as <stdarg.h>.  No idea why they couldn't have just
146  * used the standard header.
147  */
148 fix = {
149     hackname = AAB_solaris_sys_varargs_h;
150     files    = "sys/varargs.h";
151     mach     = '*-*-solaris*';
152     replace  = <<-  _EndOfHeader_
153         #ifdef __STDC__
154           #include <stdarg.h>
155         #else
156           #include <varargs.h>
157         #endif
158         _EndOfHeader_;
159 };
160
161
162 /*
163  *  Fix non-ANSI memcpy declaration that conflicts with gcc's builtin
164  *  declaration on Sun OS 4.x.  We must only fix this on Sun OS 4.x, because
165  *  many other systems have similar text but correct versions of the file.
166  *  To ensure only Sun's is fixed, we grep for a likely unique string.
167  *  Fix also on sysV68 R3V7.1 (head/memory.h\t50.1\t )
168  */
169 fix = {
170     hackname = AAB_sun_memcpy;
171     files    = memory.h;
172     select   = "/\\*\t@\\(#\\)"
173              "(head/memory.h\t50.1\t "
174              "|memory\\.h 1\\.[2-4] 8./../.. SMI; from S5R2 1\\.2\t)\\*/";
175
176     replace = <<-  _EndOfHeader_
177         /* This file was generated by fixincludes */
178         #ifndef __memory_h__
179           #define __memory_h__
180
181           #ifdef __STDC__
182             extern void *memccpy();
183             extern void *memchr();
184             extern void *memcpy();
185             extern void *memset();
186           #else
187             extern char *memccpy();
188             extern char *memchr();
189             extern char *memcpy();
190             extern char *memset();
191           #endif /* __STDC__ */
192
193           extern int memcmp();
194
195         #endif /* __memory_h__ */
196         _EndOfHeader;
197 };
198
199
200 /*
201  *  Completely replace <sys/varargs.h> with a file that includes gcc's
202  *  stdarg.h or varargs.h files as appropriate.
203  */
204 #ifdef SVR4
205 fix = {
206     hackname = AAB_svr4_no_varargs;
207     files    = sys/varargs.h;
208     replace  = "/* This file was generated by fixincludes.  */\n"
209                "#ifndef _SYS_VARARGS_H\n"
210                "#define _SYS_VARARGS_H\n\n"
211                                                                                 
212                "#ifdef __STDC__\n"
213                "#include <stdarg.h>\n"
214                "#else\n"
215                "#include <varargs.h>\n"
216                "#endif\n\n"
217                                                                                 
218                "#endif  /* _SYS_VARARGS_H */\n";
219 };
220 #endif
221
222
223 /*
224  *  Completely replace <sys/byteorder.h>; with a file that implements gcc's
225  *  optimized byteswapping.  Restricted to "SVR4" machines until either
226  *  it is shown to be safe to replace this file always, or we get bolder ;-)
227  */
228 fix = {
229     hackname = AAB_svr4_replace_byteorder;
230 #ifndef SVR5
231     mach     = "*-*-sysv4*";
232     mach     = "i[34567]86-*-sysv5*";
233     mach     = "i[34567]86-*-udk*";
234     mach     = "i[34567]86-*-solaris2.[0-4]";
235     mach     = "powerpcle-*-solaris2.[0-4]";
236     mach     = "sparc-*-solaris2.[0-4]";
237 #endif /* SVR5 */
238     files    = sys/byteorder.h;
239     replace  = <<-  _EndOfHeader_
240         #ifndef _SYS_BYTEORDER_H
241         #define _SYS_BYTEORDER_H
242
243         /* Functions to convert `short' and `long' quantities from host byte order
244            to (internet) network byte order (i.e. big-endian).
245
246            Written by Ron Guilmette (rfg@ncd.com).
247
248            This isn't actually used by GCC.  It is installed by fixinc.svr4.
249
250            For big-endian machines these functions are essentially no-ops.
251
252            For little-endian machines, we define the functions using specialized
253            asm sequences in cases where doing so yields better code (e.g. i386).  */
254
255         #if !defined (__GNUC__) && !defined (__GNUG__)
256           #error You lose!  This file is only useful with GNU compilers.
257         #endif
258
259         #ifndef __BYTE_ORDER__
260           /* Byte order defines.  These are as defined on UnixWare 1.1, but with
261              double underscores added at the front and back.  */
262           #define __LITTLE_ENDIAN__   1234
263           #define __BIG_ENDIAN__      4321
264           #define __PDP_ENDIAN__      3412
265         #endif
266
267         #ifdef __STDC__
268           static __inline__ unsigned long htonl (unsigned long);
269           static __inline__ unsigned short htons (unsigned int);
270           static __inline__ unsigned long ntohl (unsigned long);
271           static __inline__ unsigned short ntohs (unsigned int);
272         #endif /* defined (__STDC__) */
273
274         #if defined (__i386__)
275
276           #ifndef __BYTE_ORDER__
277             #define __BYTE_ORDER__ __LITTLE_ENDIAN__
278           #endif
279
280           /* Convert a host long to a network long.  */
281
282           /* We must use a new-style function definition, so that this will also
283              be valid for C++.  */
284           static __inline__ unsigned long
285           htonl (unsigned long __arg)
286           {
287             register unsigned long __result;
288
289             __asm__ ("xchg%B0 %b0,%h0
290                   ror%L0 $16,%0
291                   xchg%B0 %b0,%h0" : "=q" (__result) : "0" (__arg));
292             return __result;
293           }
294
295           /* Convert a host short to a network short.  */
296
297           static __inline__ unsigned short
298           htons (unsigned int __arg)
299           {
300             register unsigned short __result;
301
302             __asm__ ("xchg%B0 %b0,%h0" : "=q" (__result) : "0" (__arg));
303             return __result;
304           }
305
306         #elif (defined (__ns32k__) || defined (__vax__) || defined (__arm__))
307
308           #ifndef __BYTE_ORDER__
309             #define __BYTE_ORDER__ __LITTLE_ENDIAN__
310           #endif
311
312           /* For other little-endian machines, using C code is just as efficient as
313              using assembly code.  */
314
315           /* Convert a host long to a network long.  */
316
317           static __inline__ unsigned long
318           htonl (unsigned long __arg)
319           {
320             register unsigned long __result;
321
322             __result = (__arg >> 24) & 0x000000ff;
323             __result |= (__arg >> 8) & 0x0000ff00;
324             __result |= (__arg << 8) & 0x00ff0000;
325             __result |= (__arg << 24) & 0xff000000;
326             return __result;
327           }
328
329           /* Convert a host short to a network short.  */
330
331           static __inline__ unsigned short
332           htons (unsigned int __arg)
333           {
334             register unsigned short __result;
335
336             __result = (__arg << 8) & 0xff00;
337             __result |= (__arg >> 8) & 0x00ff;
338             return __result;
339           }
340
341         #else /* must be a big-endian machine */
342
343           #ifndef __BYTE_ORDER__
344             #define __BYTE_ORDER__ __BIG_ENDIAN__
345           #endif
346
347           /* Convert a host long to a network long.  */
348
349           static __inline__ unsigned long
350           htonl (unsigned long __arg)
351           {
352             return __arg;
353           }
354
355           /* Convert a host short to a network short.  */
356
357           static __inline__ unsigned short
358           htons (unsigned int __arg)
359           {
360             return __arg;
361           }
362
363         #endif /* big-endian */
364
365         /* Convert a network long to a host long.  */
366
367         static __inline__ unsigned long
368         ntohl (unsigned long __arg)
369         {
370           return htonl (__arg);
371         }
372
373         /* Convert a network short to a host short.  */
374
375         static __inline__ unsigned short
376         ntohs (unsigned int __arg)
377         {
378           return htons (__arg);
379         }
380         #endif
381         _EndOfHeader_;
382 };
383
384
385 /*
386  *  Cancel out ansi_compat.h on Ultrix.  Replace it with an empty file.
387  */
388 fix = {
389     hackname = AAB_ultrix_ansi_compat;
390     files    = ansi_compat.h;
391     select   = ULTRIX;
392     replace  = "/* This file intentionally left blank.  */\n";
393 };
394
395
396 /*
397  *  The Ultrix 4.3 file limits.h is a symbolic link to sys/limits.h.
398  *  Replace limits.h with a file that includes sys/limits.h.
399  */
400 fix = {
401     hackname = AAB_ultrix_limits;
402     files    = limits.h;
403     mach     = "*-*-ultrix4.3";
404     replace  = <<-  _EndOfHeader_
405         #ifndef _LIMITS_INCLUDED
406           #define _LIMITS_INCLUDED
407           #include <sys/limits.h>
408         #endif /* _LIMITS_INCLUDED */
409         _EndOfHeader_;
410 };
411
412
413 /*
414  *  The ULTRIX 4.3 version of memory.h duplicates definitions
415  *  present in strings.h.  Replace memory.h with a file that includes
416  *  strings.h to prevent problems from multiple inclusion.
417  */
418 fix = {
419     hackname = AAB_ultrix_memory;
420     files    = memory.h;
421     mach     = "*-*-ultrix4.3";
422     replace  = <<-  _EndOfHeader_
423         #ifndef _MEMORY_INCLUDED
424           #define _MEMORY_INCLUDED
425           #include <strings.h>
426         #endif /* _MEMORY_INCLUDED */
427         _EndOfHeader_;
428 };
429
430
431 /*
432  *  The Ultrix 4.3 file string.h is a symbolic link to strings.h.
433  *  Replace string.h link with a file that includes strings.h to prevent
434  *  problems from multiple inclusion.
435  */
436 fix = {
437     hackname = AAB_ultrix_string;
438     files    = string.h;
439     mach     = "*-*-ultrix4.3";
440     replace  = <<-  _EndOfHeader_
441         #ifndef _STRING_INCLUDED
442           #define _STRING_INCLUDED
443           #include <strings.h>
444         #endif /* _STRING_INCLUDED */
445         _EndOfHeader_;
446 };
447
448
449 /*
450  *  pthread.h on AIX 4.3.3 tries to define a macro without whitspace
451  *  which violates a requirement of ISO C.
452  */
453 fix = {
454     hackname  = aix_pthread;
455     files     = "pthread.h";
456     select    = "(#define [A-Za-z_0-9]+)(\\\\\n[^A-Za-z_0-9 \t\n(])";
457     c_fix     = format;
458     c_fix_arg = "%1 %2";
459     test_text = "#define PTHREAD_MUTEX_INITIALIZER\\\\\n"
460                 "{...init stuff...}";
461 };
462
463
464 /*
465  *  sys/machine.h on AIX 4.3.3 puts whitespace between a \ and a newline
466  *  in an otherwise harmless (and #ifed out) macro definition
467  */
468 fix = {
469     hackname  = aix_sysmachine;
470     files     = sys/machine.h;
471     select    = "\\\\ +\n";
472     c_fix     = format;
473     c_fix_arg = "\\\n";
474     test_text = "#define FOO \\\n"
475     " bar \\ \n baz \\ \n bat";
476 };
477
478
479 /*
480  *  sys/wait.h on AIX 3.2.5 puts the declaration of wait3 before the
481  *  definition of struct rusage, so the prototype added by fixproto fails.
482  */
483 fix = {
484     hackname  = aix_syswait;
485     files     = sys/wait.h;
486     select    = "^extern pid_t wait3\\(\\);\n";
487     select    = "bos325,";
488     c_fix     = format;
489     c_fix_arg = "struct rusage;\n%0";
490     test_text = "/* bos325, */\n"
491     "extern pid_t wait3();\n"
492     "\t/* pid_t wait3(int *, int, struct rusage *); */";
493 };
494
495
496 /*
497  *  sys/signal.h on some versions of AIX uses volatile in the typedef of
498  *  sig_atomic_t, which causes gcc to generate a warning about duplicate
499  *  volatile when a sig_atomic_t variable is declared volatile, as
500  *  required by ANSI C.
501  */
502 fix = {
503     hackname  = aix_volatile;
504     files     = sys/signal.h;
505     select    = "typedef volatile int sig_atomic_t";
506     c_fix     = format;
507     c_fix_arg = "typedef int sig_atomic_t";
508     test_text = "typedef volatile int sig_atomic_t;";
509 };
510
511
512 /*
513  *  Fix __assert declaration in assert.h on Alpha OSF/1.
514  */
515 fix = {
516     hackname  = alpha___assert;
517     files     = "assert.h";
518     select    = '__assert\(char \*, char \*, int\)';
519     c_fix     = format;
520     c_fix_arg = "__assert(const char *, const char *, int)";
521     test_text = 'extern void __assert(char *, char *, int);';
522 };
523
524
525 /*
526  *  Fix assert macro in assert.h on Alpha OSF/1.
527  *  The superfluous int cast breaks C++.
528  */
529 fix = {
530     hackname  = alpha_assert;
531     files     = "assert.h";
532     select    = '(#define assert\(EX\).*)\(\(int\) \(EX\)\)';
533     c_fix     = format;
534     c_fix_arg = "%1(EX)";
535     test_text = '#define assert(EX) (((int) (EX)) ? (void)0 : __assert(#EX, __FILE__, __LINE__))';
536 };
537
538
539 /*
540  *  Fix getopt declarations in stdio.h and stdlib.h on Alpha OSF/1 and AIX.
541  */
542 fix = {
543     hackname  = alpha_getopt;
544     files     = "stdio.h";
545     files     = "stdlib.h";
546     select    = 'getopt\(int, char \*\[\], *char \*\)';
547     c_fix     = format;
548     c_fix_arg = "getopt(int, char *const[], const char *)";
549     test_text = 'extern int getopt(int, char *[], char *);';
550 };
551
552
553 /*
554  * Remove erroneous parentheses in sym.h on Alpha OSF/1.
555  */
556 fix = {
557     hackname  = alpha_parens;
558     files     = sym.h;
559     select    = '#ifndef\(__mips64\)';
560     c_fix     = format;
561     c_fix_arg = "#ifndef __mips64";
562     test_text = "#ifndef(__mips64) /* bogus */\nextern int foo;\n#endif";
563 };
564
565
566 /*
567  *  Fix return value of sbrk in unistd.h on Alpha OSF/1 V2.0
568  */
569 fix = {
570     hackname = alpha_sbrk;
571     files    = unistd.h;
572     select   = "char[ \t]*\\*[\t ]*sbrk[ \t]*\\(";
573     c_fix     = format;
574     c_fix_arg = "void *sbrk(";
575     test_text = "extern char* sbrk(ptrdiff_t increment);";
576 };
577
578
579 /*
580  *  For C++, avoid any typedef or macro definition of bool,
581  *  and use the built in type instead.
582  *  HP/UX 10.20 also has it in curses_colr/curses.h.
583  */
584 fix = {
585     hackname  = avoid_bool_define;
586     files     = curses.h;
587     files     = curses_colr/curses.h;
588     files     = term.h;
589     files     = tinfo.h;
590
591     select    = "#[ \t]*define[ \t]+bool[ \t]";
592     bypass    = "we must use the C\\+\\+ compiler's type";
593
594     c_fix     = format;
595     c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
596     c_fix_arg = "^[ \t]*#[ \t]*define[ \t]+bool[ \t].*";
597
598     test_text = "# define bool\t char \n";
599 };
600
601
602 fix = {
603     hackname = avoid_bool_type;
604     files    = curses.h;
605     files    = curses_colr/curses.h;
606     files    = term.h;
607     files    = tinfo.h;
608
609     select    = "^[ \t]*typedef[ \t].*[ \t]bool[ \t]*;";
610     bypass    = "we must use the C\\+\\+ compiler's type";
611
612     c_fix     = format;
613     c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
614
615     test_text = "typedef unsigned int\tbool \t; /* bool\n type */";
616 };
617
618
619 /*
620  *  For C++, avoid any typedef definition of wchar_t,
621  *  and use the built in type instead.
622  */
623
624 fix = {
625     hackname = avoid_wchar_t_type;
626
627     select    = "^[ \t]*typedef[ \t].*[ \t]wchar_t[ \t]*;";
628
629     c_fix     = format;
630     c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
631
632     test_text = "typedef unsigned short\twchar_t \t; /* wchar_t\n type */";
633 };
634
635
636 /*
637  *  Fix #defines under Alpha OSF/1:
638  *  The following files contain '#pragma extern_prefix "_FOO"' followed by
639  *  a '#define something(x,y,z) _FOOsomething(x,y,z)'.  The intent of these
640  *  statements is to reduce namespace pollution.  While these macros work
641  *  properly in most cases, they don't allow you to take a pointer to the
642  *  "something" being modified.  To get around this limitation, change these
643  *  statements to be of the form '#define something _FOOsomething'.
644  *
645  *  sed ain't egrep, lesson 2463:  sed can use self-referential
646  *  regular expressions.  In the substitute expression below,
647  *  "\\1" and "\\2" refer to subexpressions found earlier in the
648  *  same match.  So, we continue to use sed.  "extern_prefix" will
649  *  be a rare match anyway...
650  */
651 fix = {
652     hackname = bad_lval;
653
654     select   = "^[ \t]*#[ \t]*pragma[ \t]+extern_prefix";
655
656     files    = libgen.h;
657     files    = dirent.h;
658     files    = ftw.h;
659     files    = grp.h;
660     files    = ndbm.h;
661     files    = pthread.h;
662     files    = pwd.h;
663     files    = signal.h;
664     files    = standards.h;
665     files    = stdlib.h;
666     files    = string.h;
667     files    = stropts.h;
668     files    = time.h;
669     files    = unistd.h;
670
671     sed      =
672         "s/^[ \t]*#[ \t]*define[ \t][ \t]*\\([^(]*\\)\\(([^)]*)\\)[ \t]*"
673                "\\(_.*\\)\\1\\2[ \t]*$/#define \\1 \\3\\1/";
674
675     test_text = '#pragma extern_prefix "_FOO"'"\n"
676                 "#define something(x,y,z) _FOOsomething(x,y,z)\n"
677                 "#define mumble _FOOmumble";
678 };
679
680
681 /*
682  *  Fix `typedef struct term;' on hppa1.1-hp-hpux9.
683  */
684 fix = {
685     hackname  = bad_struct_term;
686     files     = curses.h;
687     select    = "^[ \t]*typedef[ \t]+struct[ \t]+term[ \t]*;";
688     c_fix     = format;
689     c_fix_arg = "struct term;";
690
691     test_text = 'typedef struct term;';
692 };
693
694
695 /*
696  *  Fix one other error in this file:
697  *  a mismatched quote not inside a C comment.
698  */
699 fix = {
700     hackname  = badquote;
701     files     = sundev/vuid_event.h;
702     select    = "doesn't";
703     c_fix     = format;
704     c_fix_arg = "does not";
705
706     test_text = "/* doesn't have matched single quotes */";
707 };
708
709
710 /*
711  *  check for broken assert.h that needs stdio.h
712  */
713 fix = {
714     hackname  = broken_assert_stdio;
715     files     = assert.h;
716     select    = stderr;
717     bypass    = "include.*stdio\\.h";
718     c_fix     = wrap;
719     c_fix_arg = "#include <stdio.h>\n";
720     test_text = "extern FILE* stderr;";
721 };
722
723
724 /*
725  *  check for broken assert.h that needs stdlib.h
726  */
727 fix = {
728     hackname  = broken_assert_stdlib;
729     files     = assert.h;
730     select    = 'exit *\(|abort *\(';
731     bypass    = "include.*stdlib\\.h";
732     c_fix     = wrap;
733     c_fix_arg = "#ifdef __cplusplus\n"
734                 "#include <stdlib.h>\n"
735                 "#endif\n";
736     test_text = "extern void exit ( int );";
737 };
738
739
740 /*
741  *  Remove `extern double cabs' declarations from math.h.
742  *  This conflicts with C99.  Discovered on AIX.
743  *  SunOS4 has its cabs() declaration followed by a comment which
744  *  terminates on the following line.
745  */
746 fix = {
747     hackname = broken_cabs;
748     files  = "math.h";
749     select = '^extern[ \t]+double[ \t]+cabs';
750
751     c_fix     = format;
752     c_fix_arg = "";
753     c_fix_arg = "^extern[ \t]+double[ \t]+cabs\\((struct dbl_hypot|)\\);";
754
755     test_text = "#ifdef __STDC__\n"
756                 "extern     double   cabs(struct dbl_hypot);\n"
757                 "#else\n"
758                 "extern     double   cabs();\n"
759                 "#endif\n"
760                 "extern double cabs(); /* This is a comment\n"
761                 "                         and it ends here. */";
762 };
763
764
765 /*
766  *  Fix various macros used to define ioctl numbers.
767  *  The traditional syntax was:
768  *
769  *    #define _CTRL(n, x) (('n'<<8)+x)
770  *    #define TCTRLCFOO _CTRL(T, 1)
771  *
772  *  but this does not work with the C standard, which disallows macro
773  *  expansion inside strings.  We have to rewrite it thus:
774  *
775  *    #define _CTRL(n, x) ((n<<8)+x)
776  *    #define TCTRLCFOO  _CTRL('T', 1)
777  *
778  *  The select expressions match too much, but the c_fix code is cautious.
779  *
780  *  CTRL might be: CTRL _CTRL ISCTRL BSD43_CTRL ...
781  */
782 fix = {
783     hackname  = ctrl_quotes_def;
784     select    = "define[ \t]+[A-Z0-9_]+CTRL\\([a-zA-Z][,)]";
785     c_fix     = char_macro_def;
786     c_fix_arg = "CTRL";
787
788     /*
789      *  This is two tests in order to ensure that the "CTRL(c)" can
790      *  be selected in isolation from the multi-arg format
791      */
792     test_text = "#define BSD43_CTRL(n, x) (('n'<<8)+x)\n";
793     test_text = "#define _CTRL(c) ('c'&037)";
794 };
795
796 fix = {
797     hackname  = ctrl_quotes_use;
798     select    = "define[ \t]+[A-Z0-9_]+[ \t]+[A-Z0-9_]+CTRL[ \t]*\\( *[^,']";
799     c_fix     = char_macro_use;
800     c_fix_arg = "CTRL";
801     test_text = "#define TCTRLFOO BSD43_CTRL(T, 1)";
802 };
803
804
805 /*
806  *  sys/mman.h on HP/UX is not C++ ready,
807  *  even though NO_IMPLICIT_EXTERN_C is defined on HP/UX.
808  *
809  *  rpc/types.h on OSF1/2.0 is not C++ ready,
810  *  even though NO_IMPLICIT_EXTERN_C is defined for the alpha.
811  *
812  *  The problem is the declaration of malloc.
813  */
814 fix = {
815     hackname = cxx_unready;
816     files    = sys/mman.h;
817     files    = rpc/types.h;
818     select   = '[^#]+malloc.*;';  /* Catch any form of declaration
819                                      not within a macro.  */
820     bypass   = '"C"|__BEGIN_DECLS';
821
822     c_fix     = wrap;
823     c_fix_arg = "#ifdef __cplusplus\n"
824                 "extern \"C\" {\n"
825                 "#endif\n";
826     c_fix_arg = "#ifdef __cplusplus\n"
827                 "}\n"
828                 "#endif\n";
829     test_text = "extern void* malloc( size_t );";
830 };
831
832
833 /*
834  *  Fix <c_asm.h> on Digital UNIX V4.0:
835  *  It contains a prototype for a DEC C internal asm() function,
836  *  clashing with gcc's asm keyword.  So protect this with __DECC.
837  */
838 fix = {
839     hackname = dec_intern_asm;
840     files    = c_asm.h;
841     sed = "/^[ \t]*float[ \t]*fasm/i\\\n#ifdef __DECC\n";
842     sed = "/^[ \t]*#[ \t]*pragma[ \t]*intrinsic([ \t]*dasm/a\\\n"
843           "#endif\n";
844     test_text =
845     "float fasm {\n"
846     "    ... asm stuff ...\n"
847     "};\n#pragma intrinsic( dasm )\n/* END ASM TEST*/";
848 };
849
850
851 /*
852  * Fix typo in <wchar.h> on DJGPP 2.03.
853  */
854 fix = {
855     hackname  = djgpp_wchar_h;
856     file      = wchar.h;
857     select    = "__DJ_wint_t";
858     bypass    = "sys/djtypes.h";
859     c_fix     = format;
860     c_fix_arg = "%0\n#include <sys/djtypes.h>";
861     c_fix_arg = "#include <stddef.h>";
862     test_text = "#include <stddef.h>\n"
863                 "extern __DJ_wint_t x;\n";
864 };
865
866
867 /*
868  * Fix these Sun OS files to avoid an invalid identifier in an #ifdef.
869  */
870 fix = {
871     hackname  = ecd_cursor;
872     files     = "sunwindow/win_lock.h";
873     files     = "sunwindow/win_cursor.h";
874     select    = 'ecd\.cursor';
875     c_fix     = format;
876     c_fix_arg = 'ecd_cursor';
877
878     test_text = "#ifdef ecd.cursor\n#error bogus\n#endif /* ecd+cursor */";
879 };
880
881
882 /*
883  *  Between 8/24/1998 and 2/17/2001, FreeBSD system headers presume
884  *  neither the existence of GCC 3 nor its exact feature set yet break
885  *  (by design?) when __GNUC__ is set beyond 2.
886  */
887 fix = {
888     hackname  = freebsd_gcc3_breakage;
889     mach      = *-*-freebsd*;
890     files     = sys/cdefs.h;
891     select    = '^#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7$';
892     bypass    = '__GNUC__[ \t]*([>=]=[ \t]*[3-9]|>[ \t]*2)';
893     c_fix     = format;
894     c_fix_arg = '%0 || __GNUC__ >= 3';
895     test_text = '#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7';
896 };
897
898
899 /*
900  * Fix these files to use the same types that we think they should.
901  */
902 fix = {
903     hackname  = gnu_types;
904     files  = "sys/types.h";
905     files  = "stdlib.h";
906     files  = "sys/stdtypes.h";
907     files  = "stddef.h";
908     files  = "memory.h";
909     files  = "unistd.h";
910     bypass    = '_GCC_(PTRDIFF|SIZE|WCHAR)_T';
911     select    = "^[ \t]*typedef[ \t]+.*[ \t](ptrdiff|size|wchar)_t;";
912     c_fix     = gnu_type;
913
914     test_text = "typedef long int ptrdiff_t; /* long int */\n"
915                 "typedef uint_t size_t; /* uint_t */\n"
916                 "typedef ushort_t wchar_t; /* ushort_t */";
917 };
918
919
920 /*
921  *  Fix HP & Sony's use of "../machine/xxx.h"
922  *  to refer to:  <machine/xxx.h>
923  */
924 fix = {
925     hackname  = hp_inline;
926     files     = sys/spinlock.h;
927     files     = machine/machparam.h;
928     select    = "[ \t]*#[ \t]*include[ \t]+"  '"\.\./machine/';
929
930     c_fix     = format;
931     c_fix_arg = "%1<machine/%2.h>";
932
933     c_fix_arg = "([ \t]*#[ \t]*include[ \t]+)"  '"\.\./machine/'
934                 '([a-z]+)\.h"';
935
936     test_text = ' # include "../machine/mumble.h"';
937 };
938
939
940 /*
941  *  Check for (...) in C++ code in HP/UX sys/file.h.
942  */
943 fix = {
944     hackname  = hp_sysfile;
945     files     = sys/file.h;
946     select    = "HPUX_SOURCE";
947
948     c_fix     = format;
949     c_fix_arg = "(struct file *, ...)";
950     c_fix_arg = '\(\.\.\.\)';
951
952     test_text = "extern void foo(...); /* HPUX_SOURCE - bad varargs */";
953 };
954
955
956 /*
957  * Delete C++ double pow (double, int) inline function from HP-UX 10 & 11
958  * math.h to prevent clash with define in c_std/bits/std_cmath.h.
959  */
960 fix = {
961     hackname  = hpux10_cpp_pow_inline;
962     files     = fixinc-test-limits.h, math.h;
963     select    = <<-     END_POW_INLINE
964         ^# +ifdef +__cplusplus
965          +}
966          +inline +double +pow\(double +__d,int +__expon\) +{
967         [       ]+return +pow\(__d,\(double\)__expon\);
968          +}
969          +extern +"C" +{
970         #else
971         # +endif
972         END_POW_INLINE;
973  
974     c_fix     = format;
975     c_fix_arg = "";
976
977     test_text =
978         "#    ifdef __cplusplus\n"
979         "     }\n"
980         "     inline double pow(double __d,int __expon) {\n"
981         "\t return pow(__d,(double)__expon);\n"
982         "     }\n"
983         '     extern "C"' " {\n"
984         "#else\n"
985         "#    endif";
986 };
987
988 fix = {
989      hackname  = hpux11_cpp_pow_inline;
990      files     = math.h;
991      select    = " +inline double pow\\(double d,int expon\\) {\n"
992                  " +return pow\\(d, \\(double\\)expon\\);\n"
993                  " +}\n";
994      c_fix     = format;
995      c_fix_arg = "";
996
997      test_text =
998             "   inline double pow(double d,int expon) {\n"
999             "     return pow(d, (double)expon);\n"
1000             "   }\n";
1001 };
1002
1003
1004 /*
1005  *  Make sure hpux defines abs in header.
1006  */
1007 fix = {
1008     hackname  = hpux11_abs;
1009     mach      = ia64-hp-hpux11*;
1010     files     = stdlib.h;
1011     select    = "ifndef _MATH_INCLUDED";
1012     c_fix     = format;
1013     c_fix_arg = "if !defined(_MATH_INCLUDED) || defined(__GNUG__)";
1014 //  sed       = "s/ifndef _MATH_INCLUDED/if !defined(_MATH_INCLUDED) || defined(__GNUG__)/";
1015     test_text = "#ifndef _MATH_INCLUDED";
1016 };
1017
1018
1019 /*
1020  *  Keep HP-UX 11 from stomping on C++ math namespace
1021  *  with defines for fabsf.
1022  */
1023 fix = {
1024     hackname  = hpux11_fabsf;
1025     files     = math.h;
1026     select    = "^[ \t]*#[ \t]*define[ \t]+fabsf\\(.*";
1027     bypass    = "__cplusplus";
1028
1029     c_fix     = format;
1030     c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
1031
1032     test_text =
1033     "#ifdef _PA_RISC\n"
1034     "#  define fabsf(x) ((float)fabs((double)(float)(x)))\n"
1035     "#endif";
1036 };
1037
1038
1039 /*
1040  * Prevent HP-UX 11 from defining __size_t and preventing size_t from
1041  * being defined by having it define _hpux_size_t instead.
1042  */
1043 fix = {
1044     hackname  = hpux11_size_t;
1045     mach      = "*-hp-hpux11*";
1046     select    = "__size_t";
1047
1048     c_fix     = format;
1049     c_fix_arg = "_hpux_size_t";
1050
1051     test_text =
1052     "#define __size_t size_t\n"
1053     "       extern int getpwuid_r( char *, __size_t, struct passwd **);\n";
1054 };
1055
1056
1057 /*
1058  * In inttypes.h on HPUX 11, the use of __CONCAT__ in the definition
1059  * of UINT32_C has undefined behavior according to ISO/ANSI:
1060  * the arguments to __CONCAT__ are not macro expanded before the
1061  * concatination happens so the trailing ')' in the first argument
1062  * is concatinated with the 'l' in the second argument creating an
1063  * invalid pp token.  The behavior of invalid pp tokens is undefined.
1064  * GCC does not handle these invalid tokens the way the HP compiler does.
1065  * This problem will potentially occur anytime macros are used in the
1066  * arguments to __CONCAT__.  A general solution to this problem would be to
1067  * insert another layer of macro between __CONCAT__ and its use
1068  * in UINT32_C.  An example of this solution can be found in the C standard.
1069  * A more specific solution, the one used here, is to change the UINT32_C
1070  * macro to not used macros in the arguments to __CONCAT__.
1071  */
1072 fix = {
1073     hackname = hpux11_uint32_c;
1074     files    = inttypes.h;
1075     select   = "^#define UINT32_C\\(__c\\)[ \t]*"
1076                          "__CONCAT__\\(__CONCAT_U__\\(__c\\),l\\)";
1077     c_fix    = format;
1078     c_fix_arg = '#define UINT32_C(__c) __CONCAT__(__c,ul)';
1079     test_text =
1080     "#define CONCAT_U__(__c)\t__CONCAT__(__c,u)\n"
1081     "#define UINT32_C(__c)\t__CONCAT__(__CONCAT_U__(__c),l)";
1082 };
1083
1084
1085 /*
1086  *  Fix hpux 11.00 broken vsnprintf declaration
1087  */
1088 fix = {
1089     hackname = hpux11_vsnprintf;
1090     files    = stdio.h;
1091     select   = '(extern int vsnprintf\(char \*, _[hpux]*_size_t, '
1092                                      'const char \*,) __va__list\);';
1093     c_fix     = format;
1094     c_fix_arg = "%1 __va_list);";
1095
1096     test_text = 'extern int vsnprintf(char *, _hpux_size_t, const char *,'
1097                                      ' __va__list);';
1098 };
1099
1100
1101 /*
1102  *  get rid of bogus inline definitions in HP-UX 8.0
1103  */
1104 fix = {
1105     hackname = hpux8_bogus_inlines;
1106     files    = math.h;
1107     select   = inline;
1108     sed = "s@inline int abs(int [a-z][a-z]*) {.*}"
1109            "@extern \"C\" int abs(int);@";
1110     sed = "s@inline double abs(double [a-z][a-z]*) {.*}@@";
1111     sed = "s@inline int sqr(int [a-z][a-z]*) {.*}@@";
1112     sed = "s@inline double sqr(double [a-z][a-z]*) {.*}@@";
1113     test_text = "inline int abs(int v) { return (v>=0)?v:-v; }\n"
1114                 "inline double sqr(double v) { return v**0.5; }";
1115 };
1116
1117
1118 /*
1119  *  HPUX 10.x sys/param.h defines MAXINT which clashes with values.h
1120  */
1121 fix = {
1122     hackname  = hpux_maxint;
1123     files     = sys/param.h;
1124     files     = values.h;
1125     select    = "^#[ \t]*define[ \t]+MAXINT[ \t]";
1126     bypass    = "^#[ \t]*ifndef[ \t]+MAXINT";
1127     test =
1128     "-n \"`egrep '#[ \t]*define[ \t]+MAXINT[ \t]' sys/param.h`\"";
1129
1130     c_fix     = format;
1131     c_fix_arg = "#ifndef MAXINT\n%0\n#endif";
1132     c_fix_arg = "^#[ \t]*define[ \t]+MAXINT[ \t].*";
1133
1134     test_text = '#define MAXINT 0x7FFFFFFF';
1135 };
1136
1137
1138 /*
1139  *  Fix hpux10.20 <sys/time.h> to avoid invalid forward decl
1140  */
1141 fix = {
1142     hackname = hpux_systime;
1143     files    = sys/time.h;
1144     select   = "^extern struct sigevent;";
1145
1146     c_fix     = format;
1147     c_fix_arg = "struct sigevent;";
1148
1149     test_text = 'extern struct sigevent;';
1150 };
1151
1152
1153 /*
1154  *  Fix return type of abort and free
1155  */
1156 fix = {
1157     hackname  = int_abort_free_and_exit;
1158     files     = stdlib.h;
1159     select    = "int[ \t]+(abort|free|exit)[ \t]*\\(";
1160
1161     c_fix     = format;
1162     c_fix_arg = "void\t%1(";
1163
1164     test_text = "extern int abort(int);\n"
1165                 "extern int free(void*);\n"
1166                 "extern int exit(void*);";
1167 };
1168
1169
1170 /*
1171  *  Fix various macros used to define ioctl numbers.
1172  *  The traditional syntax was:
1173  *
1174  *    #define _IO(n, x) (('n'<<8)+x)
1175  *    #define TIOCFOO _IO(T, 1)
1176  *
1177  *  but this does not work with the C standard, which disallows macro
1178  *  expansion inside strings.  We have to rewrite it thus:
1179  *
1180  *    #define _IO(n, x) ((n<<8)+x)
1181  *    #define TIOCFOO  _IO('T', 1)
1182  *
1183  *  The select expressions match too much, but the c_fix code is cautious.
1184  *
1185  *  _IO might be: _IO DESIO BSD43__IO with W, R, WR, C, ... suffixes.
1186  */
1187 fix = {
1188     hackname  = io_quotes_def;
1189     select    = "define[ \t]+[A-Z0-9_]+IO[A-Z]*\\([a-zA-Z][,)]";
1190     c_fix     = char_macro_def;
1191     c_fix_arg = "IO";
1192     test_text =
1193     "#define BSD43__IOWR(n, x) (('n'<<8)+x)\n"
1194     "#define _IOWN(x,y,t)  (_IOC_IN|(((t)&_IOCPARM_MASK)<<16)|('x'<<8)|y)\n"
1195     "#define _IO(x,y)      ('x'<<8|y)";
1196     test_text =
1197     "#define XX_IO(x)        ('x'<<8|256)";
1198 };
1199
1200 fix = {
1201     hackname  = io_quotes_use;
1202     select    = "define[ \t]+[A-Z0-9_]+[ \t]+[A-Z0-9_]+IO[A-Z]*[ \t]*"
1203                 "\\( *[^,']";
1204     c_fix     = char_macro_use;
1205     c_fix_arg = "IO";
1206     test_text = "#define TIOCFOO BSD43__IOWR(T, 1)\n"
1207                 "#define TIOCFOO \\\\\n"
1208                 "BSD43__IOWR(T, 1) /* Some are multi-line */";
1209 };
1210
1211
1212 /*
1213  *  Check for missing ';' in struct
1214  */
1215 fix = {
1216     hackname = ip_missing_semi;
1217     files    = netinet/ip.h;
1218     select   = "}$";
1219     sed      = "/^struct/,/^};/s/}$/};/";
1220     test_text=
1221     "struct mumble {\n"
1222     "  union {\n"
1223     "    int x;\n"
1224     "  }\n"
1225     "}; /* mumbled struct */\n";
1226 };
1227
1228
1229 /*
1230  *  IRIX 5.2's <sys/asm.h> contains an asm comment with a contraction
1231  *  that causes the assembly preprocessor to complain about an
1232  *  unterminated character constant.
1233  */
1234 fix = {
1235     hackname  = irix_asm_apostrophe;
1236     files     = sys/asm.h;
1237
1238     select    = "^[ \t]*#.*[Ww]e're";
1239     c_fix     = format;
1240     c_fix_arg = "%1 are";
1241     c_fix_arg = "^([ \t]*#.*[Ww]e)'re";
1242     test_text = "\t# and we're on vacation";
1243 };
1244
1245
1246 /*
1247  *  Non-traditional "const" declaration in Irix's limits.h.
1248  */
1249 fix = {
1250     hackname    = irix_limits_const;
1251     files       = fixinc-test-limits.h, limits.h;
1252     select      = "^extern const ";
1253     c_fix       = format;
1254     c_fix_arg   = "extern __const ";
1255     test_text   = "extern const char limit; /* test limits */";
1256 };
1257
1258
1259 /*
1260  *  IRIX 5.x's stdio.h declares some functions that take a va_list as
1261  *  taking char *.  However, GCC uses void * for va_list, so
1262  *  calling vfprintf with a va_list fails in C++.  */
1263 fix = {
1264     hackname  = irix_stdio_va_list;
1265     files     = stdio.h;
1266
1267     select = '(printf\(.*), /\* va_list \*/ char \*';
1268     c_fix  = format;
1269     c_fix_arg = "%1, __gnuc_va_list";
1270     test_text =
1271     "extern int printf( const char *, /* va_list */ char * );";
1272 };
1273
1274
1275 /*
1276  * Fixing ISC fmod declaration
1277  */
1278 fix = {
1279     hackname  = isc_fmod;
1280     files     = math.h;
1281     select    = 'fmod\(double\)';
1282     c_fix     = format;
1283     c_fix_arg = "fmod(double, double)";
1284     test_text = "extern double  fmod(double);";
1285 };
1286
1287
1288 /*
1289  *  On Interactive Unix 2.2, certain traditional Unix definitions
1290  *  (notably getc and putc in stdio.h) are omitted if __STDC__ is
1291  *  defined, not just if _POSIX_SOURCE is defined.  This makes it
1292  *  impossible to compile any nontrivial program except with -posix.
1293  */
1294 fix = {
1295     hackname = isc_omits_with_stdc;
1296
1297     files     = "stdio.h";
1298     files     = "math.h";
1299     files     = "ctype.h";
1300     files     = "sys/limits.h";
1301     files     = "sys/fcntl.h";
1302     files     = "sys/dirent.h";
1303
1304     select    = '!defined\(__STDC__\) && !defined\(_POSIX_SOURCE\)';
1305     c_fix     = format;
1306     c_fix_arg = '!defined(_POSIX_SOURCE)';
1307     test_text = "#if !defined(__STDC__) && !defined(_POSIX_SOURCE) /* ? ! */"
1308                 "\nint foo;\n#endif";
1309 };
1310
1311
1312 /*
1313  * These files in Sun OS 4.x and ARM/RISCiX and BSD4.3
1314  * use / * * / to concatenate tokens.
1315  */
1316 fix = {
1317     hackname = kandr_concat;
1318     files  = "sparc/asm_linkage.h";
1319     files  = "sun3/asm_linkage.h";
1320     files  = "sun3x/asm_linkage.h";
1321     files  = "sun4/asm_linkage.h";
1322     files  = "sun4c/asm_linkage.h";
1323     files  = "sun4m/asm_linkage.h";
1324     files  = "sun4c/debug/asm_linkage.h";
1325     files  = "sun4m/debug/asm_linkage.h";
1326     files  = "arm/as_support.h";
1327     files  = "arm/mc_type.h";
1328     files  = "arm/xcb.h";
1329     files  = "dev/chardefmac.h";
1330     files  = "dev/ps_irq.h";
1331     files  = "dev/screen.h";
1332     files  = "dev/scsi.h";
1333     files  = "sys/tty.h";
1334     files  = "Xm.acorn/XmP.h";
1335     files  = bsd43/bsd43_.h;
1336     select = '/\*\*/';
1337     c_fix     = format;
1338     c_fix_arg = '##';
1339     test_text = "#define __CONCAT__(a,b) a/**/b";
1340 };
1341
1342
1343 /*
1344  *  Fix libc1 _G_va_list definition, used in declarations of several
1345  *  more-or-less standard functions, for example vasprintf.
1346  */
1347 fix = {
1348     hackname = libc1_G_va_list;
1349     files    = _G_config.h;
1350     mach     = '*-*-linux*libc1';
1351     select   = 'typedef void \* _G_va_list;';
1352     c_fix     = format;
1353     c_fix_arg = "typedef __builtin_va_list _G_va_list;";
1354     test_text = 'typedef void * _G_va_list;';
1355 };
1356
1357
1358 /*
1359  *  GNU libc1 string.h does not prototype memcpy and memcmp for gcc
1360  *  versions > 1.  This fix will open up the declaration for all
1361  *  versions of GCC and for g++.
1362  */
1363 fix = {
1364     hackname  = libc1_ifdefd_memx;
1365
1366     /* The string.h result is overwritten by AAB_ultrix_string when doing
1367        "make check" and will fail.  Therefore, we add the following kludgery
1368        to insert the test_text into the special testing header.  :-}  */
1369     files     = testing.h;
1370     files     = string.h;
1371
1372     c_fix     = format;
1373     select    = "' is a built-in function for gcc 2\\.x\\. \\*/";
1374     bypass    = __cplusplus;
1375     c_fix_arg = "%1";
1376     c_fix_arg =
1377        '/\* `mem...\' is a built-in function for gcc 2\.x\. \*/' "\n"
1378        '#if defined\(__STDC__\) && __GNUC__ < 2'                 "\n"
1379        "(/\\* .* \\*/\n"
1380        "extern [a-z_]+ mem.*(\n[^#].*)*;)\n"
1381        "#endif";
1382
1383     test_text =
1384     "/* \\`memcpy' is a built-in function for gcc 2.x. */\n"
1385     "#if defined(__STDC__) && __GNUC__ < 2\n"
1386     "/* Copy N bytes of SRC to DEST.  */\n"
1387     "extern __ptr_t memcpy __P ((__ptr_t __dest, __const __ptr_t __src,\n"
1388     "                         size_t __n));\n"
1389     "#endif";
1390 };
1391
1392
1393 /*
1394  *  In limits.h, put #ifndefs around things that are supposed to be defined
1395  *  in float.h to avoid redefinition errors if float.h is included first.
1396  *  On HP/UX this patch does not work, because on HP/UX limits.h uses
1397  *  multi line comments and the inserted #endif winds up inside the
1398  *  comment.  Fortunately, HP/UX already uses #ifndefs in limits.h; if
1399  *  we find a #ifndef FLT_MIN we assume that all the required #ifndefs
1400  *  are there, and we do not add them ourselves.
1401  *
1402  *  QNX Software Systems also guards the defines, but doesn't define
1403  *  FLT_MIN.  Therefore, bypass the fix for *either* guarded FLT_MIN
1404  *  or guarded FLT_MAX.
1405  */
1406 fix = {
1407     hackname = limits_ifndefs;
1408     files  = "sys/limits.h";
1409     files  = "limits.h";
1410     bypass = "ifndef[ \t]+FLT_(MIN|MAX)";
1411
1412     c_fix     = format;
1413     c_fix_arg = "#ifndef %1\n%0\n#endif";
1414     c_fix_arg = "^[ \t]*#[ \t]*define[ \t]+"
1415                 "((FLT|DBL)_(MIN|MAX|DIG))[ \t].*";
1416     test_text = " #\tdefine\tDBL_DIG \t 0  /* somthin' */";
1417 };
1418
1419
1420 /*
1421  *  Delete the '#define void int' line from curses.h on Lynx
1422  */
1423 fix = {
1424     hackname  = lynx_void_int;
1425     files     = curses.h;
1426     select    = "#[ \t]*define[ \t]+void[ \t]+int[ \t]*";
1427     c_fix     = format;
1428     c_fix_arg = "";
1429     test_text = "# define\tvoid\tint \t/* curses foiled again */";
1430 };
1431
1432
1433 /*
1434  *  Fix fcntl prototype in fcntl.h on LynxOS.
1435  */
1436 fix = {
1437     hackname  = lynxos_fcntl_proto;
1438     files     = fcntl.h;
1439     select    = "fcntl[ \t]*" '\(int, int, int\)';
1440     c_fix     = format;
1441     c_fix_arg = '%1...)';
1442     c_fix_arg = "(fcntl[ \t]*" '\(int, int, )int\)';
1443     test_text = "extern int fcntl(int, int, int);";
1444 };
1445
1446
1447 /*
1448  * Fix BSD machine/ansi.h to use __builtin_va_list to define _BSD_VA_LIST_.
1449  *
1450  * On NetBSD, machine is a symbolic link to an architecture specific
1451  * directory name, so we can't match a specific file name here.
1452  */
1453 fix = {
1454     hackname = machine_ansi_h_va_list;
1455     select   = "define[ \t]+_BSD_VA_LIST_[ \t]";
1456     bypass   = '__builtin_va_list';
1457
1458     c_fix     = format;
1459     c_fix_arg = "%1__builtin_va_list";
1460     c_fix_arg = "(define[ \t]+_BSD_VA_LIST_[ \t]+).*";
1461
1462     test_text = " # define _BSD_VA_LIST_\tchar**";
1463 };
1464
1465
1466 /*
1467  *  Fix non-ansi machine name defines
1468  */
1469 fix = {
1470     hackname  = machine_name;
1471     c_test    = machine_name;
1472     c_fix     = machine_name;
1473
1474     test_text = "/* MACH_DIFF: */\n"
1475     "#if defined( i386 ) || defined( sparc ) || defined( vax )"
1476     "\n/* no uniform test, so be careful  :-) */";
1477 };
1478
1479
1480 /*
1481  *  Some math.h files define struct exception, which conflicts with
1482  *  the class exception defined in the C++ file std/stdexcept.h.  We
1483  *  redefine it to __math_exception.  This is not a great fix, but I
1484  *  haven't been able to think of anything better.
1485  *  Note that we have to put the #ifdef/#endif blocks at beginning
1486  *  and end of file, because fixproto runs after us and may insert
1487  *  additional references to struct exception.
1488  */
1489 fix = {
1490     hackname  = math_exception;
1491     files     = math.h;
1492     select    = "struct exception";
1493     bypass    = 'We have a problem when using C\+\+';
1494     c_fix     = wrap;
1495
1496     c_fix_arg = "#ifdef __cplusplus\n"
1497                 "#define exception __math_exception\n"
1498                 "#endif\n";
1499
1500     c_fix_arg = "#ifdef __cplusplus\n"
1501                 "#undef exception\n"
1502                 "#endif\n";
1503
1504     test_text = "typedef struct exception t_math_exception;";
1505 };
1506
1507
1508 /*
1509  *  This looks pretty broken to me.  ``dbl_max_def'' will contain
1510  *  "define DBL_MAX " at the start, when what we really want is just
1511  *  the value portion.  Can't figure out how to write a test case
1512  *  for this either  :-(
1513  */
1514 fix = {
1515     hackname = math_huge_val_from_dbl_max;
1516     files    = math.h;
1517
1518     /*
1519      * IF HUGE_VAL is defined to be DBL_MAX *and* DBL_MAX is _not_ defined
1520      * in math.h, this fix applies.
1521      */
1522     select   = "define[ \t]+HUGE_VAL[ \t]+DBL_MAX";
1523     bypass   = "define[ \t]+DBL_MAX";
1524
1525     shell    =
1526     /*
1527      *  See if we have a definition for DBL_MAX in float.h.
1528      *  If we do, we will replace the one in math.h with that one.
1529      */
1530
1531     "\tdbl_max_def=`egrep 'define[ \t]+DBL_MAX[ \t]+.*' float.h "
1532                    "| sed 's/.*DBL_MAX[ \t]*//' 2>/dev/null`\n\n"
1533
1534     "\tif ( test -n \"${dbl_max_def}\" ) > /dev/null 2>&1\n"
1535     "\tthen sed -e '/define[ \t]*HUGE_VAL[ \t]*DBL_MAX/"
1536                         "s@DBL_MAX@'\"$dbl_max_def@\"\n"
1537     "\telse cat\n"
1538     "\tfi";
1539
1540     test_text =
1541     "`echo '#define DBL_MAX\t3.1415e+9 /* really big */' >> float.h`\n"
1542     "#define HUGE_VAL DBL_MAX";
1543 };
1544
1545
1546 /*
1547  * In any case, put #ifndef .. #endif around #define HUGE_VAL in math.h.
1548  */
1549 fix = {
1550     hackname = math_huge_val_ifndef;
1551     files    = math.h;
1552     files    = math/math.h;
1553     select   = "define[ \t]+HUGE_VAL";
1554
1555     c_fix     = format;
1556     c_fix_arg = "#ifndef HUGE_VAL\n%0\n#endif";
1557     c_fix_arg = "^[ \t]*#[ \t]*define[ \t]+HUGE_VAL[ \t].*";
1558
1559     test_text = "# define\tHUGE_VAL 3.4e+40";
1560 };
1561
1562
1563 /*
1564  *  nested comment
1565  */
1566 fix = {
1567     hackname  = nested_auth_des;
1568     files     = rpc/rpc.h;
1569     select    = '(/\*.*rpc/auth_des\.h>.*)/\*';
1570     c_fix     = format;
1571     c_fix_arg = "%1*/ /*";
1572     test_text = "/*#include <rpc/auth_des.h> /* skip this */";
1573 };
1574
1575
1576 /*
1577  * Fix nested comments in Motorola's <limits.h> and <sys/limits.h>
1578  */
1579 fix = {
1580     hackname = nested_motorola;
1581     mach     = "m68k-motorola-sysv*";
1582     files    = sys/limits.h;
1583     files    = limits.h;
1584     select   = "max # bytes atomic in write|error value returned by Math lib";
1585
1586     sed = "s@^\\(#undef[ \t][ \t]*PIPE_BUF[ \t]*"
1587                    "/\\* max # bytes atomic in write to a\\)$@\\1 */@";
1588     sed = "s@\\(/\\*#define\tHUGE_VAL\t3.[0-9e+]* \\)"
1589           "\\(/\\*error value returned by Math lib\\*/\\)$@\\1*/ \\2@";
1590
1591     test_text =
1592     "#undef PIPE_BUF /* max # bytes atomic in write to a\n"
1593     "\t\t/* PIPE */\n"
1594     "/*#define\tHUGE_VAL\t3.9e+9 /*error value returned by Math lib*/";
1595 };
1596
1597
1598 /*
1599  * Fixing nested comments in ISC <sys/limits.h>
1600  */
1601 fix = {
1602     hackname = nested_sys_limits;
1603     files  = sys/limits.h;
1604     select = CHILD_MAX;
1605     sed    = "/CHILD_MAX/s,/\\* Max, Max,";
1606     sed    = "/OPEN_MAX/s,/\\* Max, Max,";
1607     test_text = "/*\n#define CHILD_MAX 20 /* Max, Max, ... */ /*\n"
1608                 "#define OPEN_MAX  20 /* Max, Max, ... */\n";
1609 };
1610
1611
1612 /*
1613  *  NeXT 3.2 adds const prefix to some math functions.
1614  *  These conflict with the built-in functions.
1615  */
1616 fix = {
1617     hackname  = next_math_prefix;
1618     files     = ansi/math.h;
1619     select    = "^extern[ \t]+double[ \t]+__const__[ \t]";
1620
1621     c_fix     = format;
1622     c_fix_arg = "extern double %1(";
1623     c_fix_arg = "^extern[ \t]+double[ \t]+__const__[ \t]+([a-z]+)\\(";
1624
1625     test_text = "extern\tdouble\t__const__\tmumble();";
1626 };
1627
1628
1629 /*
1630  *  NeXT 3.2 uses the word "template" as a parameter for some
1631  *  functions. GCC reports an invalid use of a reserved key word
1632  *  with the built-in functions.
1633  */
1634 fix = {
1635     hackname = next_template;
1636     files    = bsd/libc.h;
1637     select   = "[ \t]template\\)";
1638
1639     c_fix     = format;
1640     c_fix_arg = "(%1)";
1641     c_fix_arg = "\\(([^)]*)[ \t]template\\)";
1642     test_text = "extern mumble( char * template); /* fix */";
1643 };
1644
1645
1646 /*
1647  *  NeXT 3.2 includes the keyword volatile in the abort() and  exit()
1648  *  function prototypes. That conflicts with the  built-in functions.
1649  */
1650 fix = {
1651     hackname = next_volitile;
1652     files    = ansi/stdlib.h;
1653     select   = "^extern[ \t]+volatile[ \t]+void[ \t]";
1654
1655     c_fix     = format;
1656     c_fix_arg = "extern void %1(";
1657     c_fix_arg = "^extern[ \t]+volatile[ \t]+void[ \t]+(exit|abort)\\(";
1658
1659     test_text = "extern\tvolatile\tvoid\tabort();";
1660 };
1661
1662
1663 /*
1664  *  NeXT 2.0 defines 'int wait(union wait*)', which conflicts with Posix.1.
1665  *  Note that version 3 of the NeXT system has wait.h in a different directory,
1666  *  so that this code won't do anything.  But wait.h in version 3 has a
1667  *  conditional, so it doesn't need this fix.  So everything is okay.
1668  */
1669 fix = {
1670     hackname  = next_wait_union;
1671     files     = sys/wait.h;
1672
1673     select    = 'wait\(union wait';
1674     c_fix     = format;
1675     c_fix_arg = "wait(void";
1676     test_text = "extern pid_d wait(union wait*);";
1677 };
1678
1679
1680 /*
1681  *  a missing semi-colon at the end of the nodeent structure definition.
1682  */
1683 fix = {
1684     hackname  = nodeent_syntax;
1685     files     = netdnet/dnetdb.h;
1686     select    = "char[ \t]*\\*na_addr[ \t]*$";
1687     c_fix     = format;
1688     c_fix_arg = "%0;";
1689     test_text = "char *na_addr\t";
1690 };
1691
1692
1693 /*
1694  *  sys/lc_core.h on some versions of OSF1/4.x pollutes the namespace by
1695  *  defining regex.h related types.  This causes libg++ build and usage
1696  *  failures.  Fixing this correctly requires checking and modifying 3 files.
1697  */
1698 fix = {
1699     hackname = osf_namespace_a;
1700     files    = reg_types.h;
1701     files    = sys/lc_core.h;
1702     test     = " -r reg_types.h";
1703     test     = " -r sys/lc_core.h";
1704     test     = " -n \"`grep '} regex_t;' reg_types.h`\"";
1705     test     = " -z \"`grep __regex_t regex.h`\"";
1706
1707     c_fix     = format;
1708     c_fix_arg = "__%0";
1709     c_fix_arg = "reg(ex|off|match)_t";
1710
1711     test_text = "`touch sys/lc_core.h`"
1712     "typedef struct {\n  int stuff, mo_suff;\n} regex_t;\n"
1713     "extern regex_t    re;\n"
1714     "extern regoff_t   ro;\n"
1715     "extern regmatch_t rm;\n";
1716 };
1717
1718 fix = {
1719     hackname = osf_namespace_c;
1720     files    = regex.h;
1721     test     = " -r reg_types.h";
1722     test     = " -r sys/lc_core.h";
1723     test     = " -n \"`grep '} regex_t;' reg_types.h`\"";
1724     test     = " -z \"`grep __regex_t regex.h`\"";
1725
1726     select    = "#include <reg_types\.h>.*";
1727     c_fix     = format;
1728     c_fix_arg = "%0\n"
1729                 "typedef __regex_t\tregex_t;\n"
1730                 "typedef __regoff_t\tregoff_t;\n"
1731                 "typedef __regmatch_t\tregmatch_t;";
1732
1733     test_text = "#include <reg_types.h>";
1734 };
1735
1736
1737 /*
1738  *  Fix __page_size* declarations in pthread.h AIX 4.1.[34].
1739  *  The original ones fail if uninitialized externs are not common.
1740  *  This is the default for all ANSI standard C++ compilers.
1741  */
1742 fix = {
1743     hackname  = pthread_page_size;
1744     files     = pthread.h;
1745     select    = "^int __page_size";
1746     c_fix     = format;
1747     c_fix_arg = "extern %0";
1748     test_text = "int __page_size;";
1749 };
1750
1751
1752 /*
1753  *  Fix return type of fread and fwrite on sysV68
1754  */
1755 fix = {
1756     hackname = read_ret_type;
1757     files    = stdio.h;
1758     select   = "extern int\t.*, fread\\(\\), fwrite\\(\\)";
1759     c_fix     = format;
1760     c_fix_arg = "extern unsigned int fread(), fwrite();\n%1%2";
1761     c_fix_arg = "(extern int\t.*), fread\\(\\), fwrite\\(\\)(.*)";
1762
1763     test_text = "extern int\tfclose(), fflush(), fread(), fwrite(), foo();";
1764 };
1765
1766
1767 /*
1768  *  function class(double x) conflicts with C++ keyword on rs/6000
1769  */
1770 fix = {
1771     hackname  = rs6000_double;
1772     files     = math.h;
1773     select    = '[^a-zA-Z_]class\(';
1774
1775     c_fix     = format;
1776     c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
1777     c_fix_arg = '^.*[^a-zA-Z_]class\(.*';
1778
1779     test_text = "extern int class();";
1780 };
1781
1782
1783 /*
1784  *  Wrong fchmod prototype on RS/6000.
1785  */
1786 fix = {
1787     hackname  = rs6000_fchmod;
1788     files     = sys/stat.h;
1789     select    = 'fchmod\(char \*';
1790     c_fix     = format;
1791     c_fix_arg = "fchmod(int";
1792     test_text = "extern int fchmod(char *, mode_t);";
1793 };
1794
1795
1796 /*
1797  *  parameters conflict with C++ new on rs/6000
1798  */
1799 fix = {
1800     hackname  = rs6000_param;
1801     files     = "stdio.h";
1802     files     = "unistd.h";
1803
1804     select    = 'rename\(const char \*old, const char \*new\)';
1805     c_fix     = format;
1806     c_fix_arg = 'rename(const char *_old, const char *_new)';
1807
1808     test_text = 'extern int rename(const char *old, const char *new);';
1809 };
1810
1811
1812 /*
1813  *  The static functions lstat() and fchmod() in <sys/stat.h>
1814  *  cause G++ grief since they're not wrapped in "if __cplusplus".
1815  *
1816  *  On SCO OpenServer 5.0.0 through (at least) 5.0.5 <sys/stat.h> contains
1817  *  tiny static wrappers that aren't C++ safe.
1818  */
1819 fix = {
1820     hackname = sco_static_func;
1821     files    = sys/stat.h;
1822     mach     = "i?86-*-sco3.2*";
1823     select   = "^static int";
1824
1825     sed      = "/^static int/i\\\n"
1826                "#if __cplusplus\\\n"
1827                "extern \"C\" {\\\n"
1828                "#endif /* __cplusplus */";
1829
1830     sed      = "/^}$/a\\\n"
1831                "#if __cplusplus\\\n"
1832                " }\\\n"
1833                "#endif /* __cplusplus */";
1834
1835     test_text =
1836     "#ifdef __STDC__\n"
1837     "static int\tstat(const char *__f, struct stat *__p) {\n"
1838     "\treturn __stat32(__f, __p);\n"
1839     "}\n\n#  else /* !__STDC__ */\n"
1840
1841     "static int\tstat(__f, __p)\n"
1842     "\tchar *__f;\n"
1843     "\tstruct stat *__p;\n"
1844     "{\n"
1845     "\treturn __stat32(__f, __p);\n"
1846     "}\n"
1847     "#endif";
1848 };
1849
1850
1851 /*
1852  *  Fix prototype declaration of utime in sys/times.h.
1853  *  In 3.2v4.0 the const is missing.
1854  */
1855 fix = {
1856     hackname  = sco_utime;
1857     files     = sys/times.h;
1858     mach      = "i?86-*-sco3.2v4*";
1859
1860     select    = '\(const char \*, struct utimbuf \*\);';
1861     c_fix     = format;
1862     c_fix_arg = '(const char *, const struct utimbuf *);';
1863
1864     test_text = "extern int utime(const char *, struct utimbuf *);";
1865 };
1866
1867
1868 /*
1869  * Sun Solaris defines PTHREAD_MUTEX_INITIALIZER with a trailing
1870  * "0" for the last field of the pthread_mutex_t structure, which is
1871  * of type upad64_t, which itself is typedef'd to int64_t, but with
1872  * __STDC__ defined (e.g. by -ansi) it is a union. So change the
1873  * initializer to "{0}" instead
1874  */
1875 fix = {
1876     hackname = solaris_mutex_init;
1877     select = '@\(#\)pthread.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
1878     files = pthread.h;
1879     c_fix = format;
1880     c_fix_arg = "#if __STDC__ - 0 == 0 && !defined(_NO_LONGLONG)\n"
1881                 "%0\n"
1882                 "#else\n"
1883                 "%1, {0}}%3\n"
1884                 "#endif";
1885     c_fix_arg = "(^#define[ \t]+PTHREAD_(MUTEX|COND)_INITIALIZER[ \t]+{.*)"
1886                 ",[ \t]*0}" "(|[ \t].*)$";
1887     test_text =
1888     '#ident "@(#)pthread.h  1.26  98/04/12 SMI"'"\n"
1889     "#define PTHREAD_MUTEX_INITIALIZER\t{{{0},0}, {{{0}}}, 0}\n"
1890     "#define PTHREAD_COND_INITIALIZER\t{{{0}, 0}, 0}\t/* DEFAULTCV */\n"
1891     "#define PTHREAD_RWLOCK_INITIALIZER\t"
1892              "{0, 0, 0, {0, 0, 0}, {0, 0}, {0, 0}}";
1893 };
1894
1895
1896 /*
1897  * Solaris 2.8 has what appears to be some gross workaround for 
1898  * some old version of their c++ compiler.  G++ doesn't want it
1899  * either, but doesn't want to be tied to SunPRO version numbers.
1900  */
1901 fix = {
1902     hackname = solaris_stdio_tag;
1903     files    = stdio_tag.h;
1904
1905     select   = '__cplusplus < 54321L';
1906     sed      = 's/defined(__cplusplus) && (__cplusplus < 54321L)/0/';
1907
1908     test_text = "#if\tdefined(__cplusplus) && (__cplusplus < 54321L)";
1909 };
1910
1911 /*
1912  * <widec.h> until Solaris 2.5.1 defines macros for a couple of <wchar.h>
1913  * functions, breaking their prototypes if that file is included afterwards.
1914  * Include <wchar.h> early to avoid this issue, as is done on Solaris 2.6
1915  * and up.
1916  */
1917 fix = {
1918     hackname  = solaris_widec;
1919     files     = widec.h;
1920     mach      = '*-*-solaris2.[0-5]*';
1921     bypass    = "include.*wchar\\.h";
1922     select    = "#include <euc.h>";
1923     c_fix     = format;
1924     c_fix_arg = "%0\n#include <wchar.h>";
1925     test_text = "#include <euc.h>";
1926 };
1927
1928
1929 /*
1930  *  Add a `static' declaration of `getrnge' into <regexp.h>.
1931  *
1932  *  Don't do this if there is already a `static void getrnge' declaration
1933  *  present, since this would cause a redeclaration error.  Solaris 2.x has
1934  *  such a declaration.
1935  */
1936 #ifdef SVR4
1937 fix = {
1938     hackname = static_getrnge;
1939     files    = regexp.h;
1940     bypass   = "static void getrnge";
1941     sed      = "/^static int[ \t]*size;/c\\\n"
1942                "static int      size ;\\\n\\\n"
1943                "static int getrnge ();";
1944 };
1945 #endif
1946
1947
1948 /*
1949  *  a missing semi-colon at the end of the statsswtch structure definition.
1950  */
1951 fix = {
1952     hackname  = statsswtch;
1953     files     = rpcsvc/rstat.h;
1954     select    = "boottime$";
1955     c_fix     = format;
1956     c_fix_arg = "boottime;";
1957     test_text = "struct statswtch {\n  int boottime\n};";
1958 };
1959
1960
1961 /*
1962  *  Arrange for stdio.h to use stdarg.h to define __gnuc_va_list.
1963  *  On 4BSD-derived systems, stdio.h defers to machine/ansi.h; that's
1964  *  OK too.
1965  */
1966 fix = {
1967     hackname = stdio_stdarg_h;
1968     files    = stdio.h;
1969     bypass   = "include.*(stdarg\.h|machine/ansi\.h)";
1970
1971     c_fix     = wrap;
1972
1973     c_fix_arg = "#define __need___va_list\n#include <stdarg.h>\n";
1974
1975     test_text = "";
1976 };
1977
1978
1979 /*
1980  *  Don't use or define the name va_list in stdio.h.
1981  *  This is for ANSI and also to interoperate properly with gcc's varargs.h.
1982  *  Note _BSD_VA_LIST_ is dealt with elsewhere.
1983  */
1984 fix = {
1985     hackname = stdio_va_list;
1986     files    = stdio.h;
1987     bypass   = '__gnuc_va_list|_BSD_VA_LIST_|__DJ_va_list';
1988
1989     /*
1990      * Use __gnuc_va_list in arg types in place of va_list.
1991      * On 386BSD use __gnuc_va_list instead of _VA_LIST_.  On Tru64 UNIX V5.1A
1992      * use __gnuc_va_list instead of __VA_LIST__.  We're hoping the
1993      * trailing parentheses and semicolon save all other systems from this.
1994      * Define __not_va_list__ (something harmless and unused)
1995      * instead of va_list.
1996      * Don't claim to have defined va_list.
1997      */
1998     sed = "s@ va_list @ __gnuc_va_list @\n"
1999           "s@ va_list)@ __gnuc_va_list)@\n"
2000           "s@ _VA_LIST_));@ __gnuc_va_list));@\n"
2001           "s@ __VA_LIST__));@ __gnuc_va_list));@\n"
2002           "s@ va_list@ __not_va_list__@\n"
2003           "s@\\*va_list@*__not_va_list__@\n"
2004           "s@ __va_list)@ __gnuc_va_list)@\n"
2005           "s@typedef[ \t]\\(.*\\)[ \t]va_list[ \t]*;"
2006            "@typedef \\1 __not_va_list__;@\n"
2007           "s@typedef[ \t]*__va_list__@typedef __gnuc_va_list@\n"
2008           "s@GNUC_VA_LIST@GNUC_Va_LIST@\n"
2009           "s@_NEED___VA_LIST@_NEED___Va_LIST@\n"
2010           "s@VA_LIST@DUMMY_VA_LIST@\n"
2011           "s@_Va_LIST@_VA_LIST@";
2012     test_text = "extern void mumble( va_list);";
2013 };
2014
2015
2016 /*
2017  *  "!__STDC__" or "__STDC__==0" or "__STDC__!=1" or "__STDC__-0==0"
2018  *  is "!defined( __STRICT_ANSI__ )"
2019  */
2020 fix = {
2021     hackname = strict_ansi_not;
2022     select   = "^([ \t]*#[ \t]*if.*)"
2023                "(!__STDC__"
2024                "|__STDC__[ \t]*==[ \t]*0"
2025                "|__STDC__[ \t]*!=[ \t]*1"
2026                "|__STDC__[ \t]*-[ \t]*0[ \t]*==[ \t]*0)";
2027     /* Tru64 UNIX V4.0F/V5.1 <standards.h> supports GCC usage of __STDC__. */
2028     bypass = 'GNU and MIPS C compilers define __STDC__ differently';
2029     c_test   = stdc_0_in_system_headers;
2030
2031     c_fix     = format;
2032     c_fix_arg = "%1 !defined(__STRICT_ANSI__)";
2033
2034     test_text = "#if !__STDC__ \n"
2035                 "#if __STDC__ == 0\n"
2036                 "#if __STDC__ != 1\n"
2037                 "#if __STDC__ - 0 == 0"
2038                "/* not std C */\nint foo;\n"
2039                "\n#end-end-end-end-if :-)";
2040 };
2041
2042 /*
2043  *  "__STDC__-0==0"
2044  *  is "!defined( __STRICT_ANSI__ )" on continued #if-s
2045  */
2046 fix = {
2047     hackname = strict_ansi_not_ctd;
2048     files    = math.h, limits.h, stdio.h, signal.h,
2049                stdlib.h, sys/signal.h, time.h;
2050     /*
2051      * Starting at the beginning of a line, skip white space and
2052      * a leading "(" or "&&" or "||".  One of those must be found.
2053      * Then, zero, one or more copies of a "defined(_FOO_BAR_) &&"
2054      * expression.  If these are nested, then they must accumulate
2055      * because we won't match any closing parentheses.  Finally,
2056      * after skipping over all that, we must then match our suspect
2057      * phrase:  "__STDC__-0==0" with or without white space.
2058      */
2059     select   = "^([ \t]*" '(\(|&&|\|\|)'
2060                "([ \t(]*!*[ \t]*defined\\([a-zA-Z_0-9]+\\)[ \t]*[|&][|&])*"
2061                "[ \t(]*)"
2062                "(__STDC__[ \t]*(|-[ \t]*0[ \t]*)==[ \t]*0)";
2063     c_test   = stdc_0_in_system_headers;
2064
2065     c_fix     = format;
2066     c_fix_arg = "%1 !defined(__STRICT_ANSI__)";
2067
2068     test_text = "#if 1 && \\\\\n"
2069                "&& defined(mumbling) |& (__STDC__ - 0 == 0) \\\\\n"
2070                "( __STDC__ == 0 && !defined(_XOPEN_SOURCE) \\\\\n"
2071                "|| __STDC__ - 0 == 0 ) /* not std C */\n"
2072                "int foo;\n#endif";
2073 };
2074
2075
2076 /*
2077  *  "__STDC__!=0" or "__STDC__==1" or "__STDC__-0==1"
2078  *  is "defined( __STRICT_ANSI__ )"
2079  */
2080 fix = {
2081     hackname = strict_ansi_only;
2082     select   = "^([ \t]*#[ \t]*if.*)"
2083                "(__STDC__[ \t]*!=[ \t]*0"
2084                "|__STDC__[ \t]*==[ \t]*1"
2085                "|__STDC__[ \t]*-[ \t]*0[ \t]*==[ \t]*1"
2086                "|__STDC__[ \t]*-[ \t]*0[ \t]*!=[ \t]*0)";
2087     c_test   = stdc_0_in_system_headers;
2088
2089     c_fix     = format;
2090     c_fix_arg = "%1 defined(__STRICT_ANSI__)";
2091
2092     test_text = "#if __STDC__ == 1 /* is std C\n */\nint foo;\n#endif";
2093 };
2094
2095
2096 /*
2097  *  IRIX 4.0.5 <rpc/xdr.h> uses struct __file_s
2098  *  in prototype without previous definition.
2099  */
2100 fix = {
2101     hackname  = struct_file;
2102     files     = rpc/xdr.h;
2103     select    = '^.*xdrstdio_create.*struct __file_s';
2104     c_fix     = format;
2105     c_fix_arg = "struct __file_s;\n%0";
2106     test_text = "extern void xdrstdio_create( struct __file_s* );";
2107 };
2108
2109
2110 /*
2111  *  IRIX 4.0.5 <rpc/auth.h> uses struct sockaddr
2112  *  in prototype without previous definition.
2113  */
2114 fix = {
2115     hackname  = struct_sockaddr;
2116     files     = rpc/auth.h;
2117     select    = "^.*authdes_create.*struct sockaddr";
2118     bypass    = "<sys/socket\.h>";
2119     c_fix     = format;
2120     c_fix_arg = "struct sockaddr;\n%0";
2121     test_text = "extern AUTH* authdes_create( struct sockaddr* );";
2122 };
2123
2124
2125 /*
2126  *  Apply fix this to all OSs since this problem seems to effect
2127  *  more than just SunOS.
2128  */
2129 fix = {
2130     hackname = sun_auth_proto;
2131     files    = rpc/auth.h;
2132     files    = rpc/clnt.h;
2133     files    = rpc/svc.h;
2134     files    = rpc/xdr.h;
2135     /*
2136      *  Select those files containing '(*name)()'.
2137      */
2138     select    = '\(\*[a-z][a-z_]*\)\(\)';
2139
2140     c_fix     = format;
2141     c_fix_arg = "#ifdef __cplusplus\n%1(...);%2\n"
2142                 "#else\n%1();%2\n#endif";
2143     c_fix_arg = '(.*\(\*[a-z][a-z_]*\))\(\);(.*)';
2144
2145     test_text =
2146     "struct auth_t {\n"
2147     "    int (*name)(); /* C++ bad */\n"
2148     "};";
2149 };
2150
2151
2152 /*
2153  *  Fix bogus #ifdef on SunOS 4.1.
2154  */
2155 fix = {
2156     hackname  = sun_bogus_ifdef;
2157     files     = "hsfs/hsfs_spec.h";
2158     files     = "hsfs/iso_spec.h";
2159     select    = '#ifdef(.*\|\|.*)';
2160     c_fix     = format;
2161     c_fix_arg = "#if%1";
2162
2163     test_text = "#ifdef  __i386__ || __vax__ || __sun4c__";
2164 };
2165
2166
2167 /*
2168  *  Fix the CAT macro in SunOS memvar.h.
2169  */
2170 fix = {
2171     hackname  = sun_catmacro;
2172     files     = pixrect/memvar.h;
2173     select    = "^#define[ \t]+CAT\\(a,b\\).*";
2174     c_fix     = format;
2175
2176     c_fix_arg =
2177     "#ifdef __STDC__\n"
2178     "#  define CAT(a,b) a##b\n"
2179     "#else\n%0\n#endif";
2180
2181     test_text =
2182     "#define CAT(a,b)\ta/**/b";
2183 };
2184
2185
2186 /*
2187  *  Fix return type of free and {c,m,re}alloc in <malloc.h> on SunOS 4.1.
2188  *  Also fix return type of {m,re}alloc in <malloc.h> on sysV68
2189  */
2190 fix = {
2191     hackname = sun_malloc;
2192     files    = malloc.h;
2193
2194     sed   = "s/typedef[ \t]char \\*\tmalloc_t/typedef void \\*\tmalloc_t/g";
2195     sed   = "s/int[ \t][ \t]*free/void\tfree/g";
2196     sed   = "s/char\\([ \t]*\\*[ \t]*malloc\\)/void\\1/g";
2197     sed   = "s/char\\([ \t]*\\*[ \t]*realloc\\)/void\\1/g";
2198     sed   = "s/char\\([ \t]*\\*[ \t]*calloc\\)/void\\1/g";
2199
2200     test_text =
2201     "typedef char *\tmalloc_t;\n"
2202     "int \tfree();\n"
2203     "char*\tmalloc();\n"
2204     "char*\tcalloc();\n"
2205     "char*\trealloc();";
2206 };
2207
2208
2209 /*
2210  *  Check for yet more missing ';' in struct (in SunOS 4.0.x)
2211  */
2212 fix = {
2213     hackname = sun_rusers_semi;
2214     files    = rpcsvc/rusers.h;
2215     select   = "_cnt$";
2216     sed      = "/^struct/,/^};/s/_cnt$/_cnt;/";
2217     test_text = "struct mumble\n  int _cnt\n};";
2218 };
2219
2220
2221 /*
2222  *  signal.h on SunOS defines signal using (),
2223  *  which causes trouble when compiling with g++ -pedantic.
2224  */
2225 fix = {
2226     hackname = sun_signal;
2227     files    = sys/signal.h;
2228     files    = signal.h;
2229     select   = "^void\t" '\(\*signal\(\)\)\(\);.*';
2230
2231     c_fix     = format;
2232     c_fix_arg =
2233           "#ifdef __cplusplus\n"
2234           "void\t(*signal(...))(...);\n"
2235           "#else\n%0\n#endif";
2236
2237     test_text = "void\t(*signal())();";
2238 };
2239
2240
2241 /*
2242  *  math.h on SunOS 4 puts the declaration of matherr before the definition
2243  *  of struct exception, so the prototype (added by fixproto) causes havoc.
2244  */
2245 fix = {
2246     hackname  = sunos_matherr_decl;
2247     files     = math.h;
2248
2249     /*  If matherr has a prototype already, the header needs no fix.  */
2250     bypass    = 'matherr.*(struct exception|__MATH_EXCEPTION)';
2251     select    = matherr;
2252
2253     c_fix     = wrap;
2254     c_fix_arg = "struct exception;\n";
2255
2256     test_text = "extern int matherr();";
2257 };
2258
2259
2260 /*
2261  *  Correct the return type for strlen in strings.h in SunOS 4.
2262  */
2263 fix = {
2264     hackname = sunos_strlen;
2265     files    = strings.h;
2266     select   = "int[ \t]*strlen\\(\\);(.*)";
2267     c_fix     = format;
2268     c_fix_arg = "__SIZE_TYPE__ strlen();%1";
2269     test_text = " int\tstrlen(); /* string length */";
2270 };
2271
2272
2273 /*
2274  *  Solaris math.h and floatingpoint.h define __P without protection,
2275  *  which conflicts with the fixproto definition.  The fixproto
2276  *  definition and the Solaris definition are used the same way.
2277  */
2278 fix = {
2279     hackname = svr4__p;
2280     files    = math.h;
2281     files    = floatingpoint.h;
2282     select   = "^#define[ \t]+__P.*";
2283     c_fix     = format;
2284     c_fix_arg = "#ifndef __P\n%0\n#endif";
2285
2286     test_text = "#define __P(a) a";
2287 };
2288
2289
2290 /*
2291  *  Disable apparent native compiler optimization cruft in SVR4.2 <string.h>
2292  *  that is visible to any ANSI compiler using this include.  Simply
2293  *  delete the lines that #define some string functions to internal forms.
2294  */
2295 #ifdef SVR4
2296 fix = {
2297     hackname = svr4_disable_opt;
2298     files    = string.h;
2299     select   = '#define.*__std_hdr_';
2300     sed      = '/#define.*__std_hdr_/d';
2301 };
2302 #endif
2303
2304
2305 /*
2306  *  Conditionalize some of <sys/endian.h> on __GNUC__ and __GNUG__.
2307  *  On some systems (UnixWare 2, UnixWare 7), the file is byteorder.h
2308  *  but we still "hijack" it and redirect it to the GNU byteorder.h..
2309  */
2310 #ifdef SVR5
2311 fix = {
2312     hackname = svr4_endian;
2313     files    = sys/endian.h;
2314 #ifdef LATER
2315     /*
2316      * since we emit our own sys/byteorder.h,
2317      * this fix can never be applied to that file.
2318      */
2319     files    = sys/byteorder.h;
2320 #endif
2321     bypass   = '__GNUC__';
2322
2323     sed      = "/#\tifdef\t__STDC__/i\\\n"
2324                "#   if !defined (__GNUC__) && !defined (__GNUG__)\n";
2325
2326     sed      = "/#\t\tinclude\t<sys\\/byteorder.h>/s/\t\t/   /";
2327
2328     sed      = "/#   include\t<sys\\/byteorder.h>/i\\\n"
2329                "#   endif /* !defined (__GNUC__) && !defined (__GNUG__) */\n";
2330 };
2331 #endif /* SVR5 */
2332
2333
2334 /*
2335  *  Remove useless extern keyword from struct forward declarations
2336  *  in <sys/stream.h> and <sys/strsubr.h>
2337  */
2338 #ifdef SVR4
2339 fix = {
2340     hackname = svr4_extern_struct;
2341     files    = sys/stream.h;
2342     files    = sys/strsubr.h;
2343     select   = 'extern struct [a-z_]*;';
2344     sed      = 's/extern struct \([a-z][a-z_]*\)/struct \1/';
2345 };
2346 #endif
2347
2348 /*
2349  *  Fix declarations of `ftw' and `nftw' in <ftw.h>.  On some/most SVR4
2350  *  systems the file <ftw.h> contains extern declarations of these
2351  *  functions followed by explicitly `static' definitions of these
2352  *  functions... and that's not allowed according to ANSI C.  (Note
2353  *  however that on Solaris, this header file glitch has been pre-fixed by
2354  *  Sun.  In the Solaris version of <ftw.h> there are no static
2355  *  definitions of any function so we don't need to do any of this stuff
2356  *  when on Solaris.
2357  */
2358 #ifdef SVR4
2359 #ifndef SOLARIS
2360 fix = {
2361     hackname = svr4_ftw;
2362     files    = ftw.h;
2363     select   = '^extern int ftw\(const';
2364
2365     sed = '/^extern int ftw(const/i' "\\\n"
2366             "#if !defined(_STYPES)\\\n"
2367             "static\\\n"
2368             "#else\\\n"
2369             "extern\\\n"
2370             "#endif";
2371     sed = 's/extern \(int ftw(const.*\)$/\1/';
2372     sed = "/^extern int nftw/i\\\n"
2373             "#if defined(_STYPES)\\\n"
2374             "static\\\n"
2375             "#else\\\n"
2376             "extern\\\n"
2377             "#endif";
2378     sed = 's/extern \(int nftw.*\)$/\1/';
2379     sed = "/^extern int ftw(),/c\\\n"
2380             "#if !defined(_STYPES)\\\n"
2381             "static\\\n"
2382             "#else\\\n"
2383             "extern\\\n"
2384             "#endif\\\n"
2385             "  int ftw();\\\n"
2386             "#if defined(_STYPES)\\\n"
2387             "static\\\n"
2388             "#else\\\n"
2389             "extern\\\n"
2390             "#endif\\\n"
2391             "  int nftw();";
2392 };
2393 #endif
2394 #endif
2395
2396
2397 /*
2398  *   Fix broken decl of getcwd present on some svr4 systems.
2399  */
2400 fix = {
2401     hackname = svr4_getcwd;
2402     files    = stdlib.h;
2403     files    = unistd.h;
2404     files    = prototypes.h;
2405     select   = 'getcwd\(char \*, int\)';
2406
2407     c_fix     = format;
2408     c_fix_arg = "getcwd(char *, size_t)";
2409
2410     test_text = "extern char* getcwd(char *, int);";
2411 };
2412
2413
2414 /*
2415  *  set ifdef _KERNEL
2416  */
2417 #ifdef SVR4
2418 fix = {
2419     hackname = svr4_kernel;
2420     files    = fs/rfs/rf_cache.h;
2421     files    = sys/erec.h;
2422     files    = sys/err.h;
2423     files    = sys/char.h;
2424     files    = sys/getpages.h;
2425     files    = sys/map.h;
2426     files    = sys/cmn_err.h;
2427     files    = sys/kdebugger.h;
2428     bypass   = '_KERNEL';
2429     c_fix     = wrap;
2430
2431     c_fix_arg = "#ifdef _KERNEL\n";
2432     c_fix_arg = "#endif /* _KERNEL */\n";
2433     test_text = "";
2434 };
2435 #endif
2436
2437 /*
2438  *  Delete any #defines of `__i386' which may be present in <ieeefp.h>.  They
2439  *  tend to conflict with the compiler's own definition of this symbol.  (We
2440  *  will use the compiler's definition.)
2441  *  Likewise __sparc, for Solaris, and __i860, and a few others
2442  *  (guessing it is necessary for all of them).
2443  */
2444 #ifdef SVR4
2445 fix = {
2446     hackname = svr4_mach_defines;
2447     files    = ieeefp.h;
2448     select   = "#define[ \t]*__(i386|mips|sparc|m88k|m68k)[ \t]";
2449     sed      = "/#define[ \t]*__\\(i386|mips|sparc|m88k|m68k\\)[ \t]/d";
2450 };
2451 #endif
2452
2453
2454 /*
2455  *  Fix declarations of `makedev', `major', and `minor' in <sys/mkdev.h>.
2456  *  They are declared as non-static then immediately redeclared as static.
2457  */
2458 #ifdef SVR5
2459 fix = {
2460     hackname = svr4_mkdev;
2461     files    = sys/mkdev.h;
2462     select   = '^static';
2463
2464     sed      = "/^dev_t makedev(/s/^/static /";
2465     sed      = "/^major_t major(/s/^/static /";
2466     sed      = "/^minor_t minor(/s/^/static /";
2467 };
2468 #endif /* SVR5 */
2469
2470
2471 /*
2472  *  Fix reference to NC_NPI_RAW in <sys/netcspace.h>.
2473  *  Also fix types of array initializers.
2474  */
2475 #ifdef SVR4
2476 fix = {
2477     hackname = svr4_netcspace;
2478     files    = sys/netcspace.h;
2479     select   = 'NC_NPI_RAW';
2480     sed      = 's/NC_NPI_RAW/NC_TPI_RAW/g';
2481     sed      = 's/NC_/(unsigned long) NC_/';
2482 };
2483 #endif
2484
2485 /*
2486  *  Fix reference to NMSZ in <sys/adv.h>.
2487  */
2488 #ifdef SVR4
2489 fix = {
2490     hackname = svr4_nmsz;
2491     files    = sys/adv.h;
2492     select   = '\[NMSZ\]';
2493     sed      = 's/\[NMSZ\]/\[RFS_NMSZ\]/g';
2494 };
2495 #endif
2496
2497
2498 /*
2499  *   Fix broken decl of profil present on some svr4 systems.
2500  */
2501 fix = {
2502     hackname = svr4_profil;
2503     files    = stdlib.h;
2504     files    = unistd.h;
2505
2506     select    =
2507     'profil\(unsigned short \*, unsigned int, unsigned int, unsigned int\)';
2508     c_fix     = format;
2509     c_fix_arg = 'profil(unsigned short *, size_t, int, unsigned int)';
2510
2511     test_text =
2512     'profil(unsigned short *, unsigned int, unsigned int, unsigned int);';
2513 };
2514
2515
2516 /*
2517  *  Convert functions to prototype form, and fix arg names in <sys/stat.h>.
2518  */
2519 #ifdef SVR4
2520 fix = {
2521     hackname = svr4_proto_form;
2522     files    = sys/stat.h;
2523     select   = 'const extern';
2524
2525     sed      = "/^stat([ \t]*[^c]/ {\nN\nN\n"
2526                    "s/(.*)\\n/( /\n"
2527                    "s/;\\n/, /\n"
2528                    "s/;$/)/\n"  "}";
2529
2530     sed      = "/^lstat([ \t]*[^c]/ {\nN\nN\n"
2531                    "s/(.*)\\n/( /\n"
2532                    "s/;\\n/, /\n"
2533                    "s/;$/)/\n"  "}";
2534
2535     sed      = "/^fstat([ \t]*[^i]/ {\nN\nN\n"
2536                    "s/(.*)\\n/( /\n"
2537                    "s/;\\n/, /\n"
2538                    "s/;$/)/\n"  "}";
2539
2540     sed      = "/^mknod([ \t]*[^c]/{\nN\nN\nN\n"
2541                    "s/(.*)\\n/( /\n"
2542                    "s/;\\n/, /g\n"
2543                    "s/;$/)/\n"  "}";
2544
2545     sed      = "1,$s/\\([^A-Za-z]\\)path\\([^A-Za-z]\\)/\\1__path\\2/g";
2546     sed      = "1,$s/\\([^A-Za-z]\\)buf\\([^A-Za-z]\\)/\\1__buf\\2/g";
2547     sed      = "1,$s/\\([^A-Za-z]\\)fd\\([^A-Za-z]\\)/\\1__fd\\2/g";
2548     sed      = "1,$s/ret\\([^u]\\)/__ret\\1/g";
2549     sed      = "1,$s/\\([^_]\\)mode\\([^_]\\)/\\1__mode\\2/g";
2550     sed      = "1,$s/\\([^_r]\\)dev\\([^_]\\)/\\1__dev\\2/g";
2551 };
2552 #endif
2553
2554 /*
2555  *  Add a prototyped declaration of mmap to <sys/mman.h>.
2556  */
2557 #ifdef SVR4
2558 fix = {
2559     hackname = svr4_proto_mmap;
2560     files    = sys/mman.h;
2561     select   = '^extern caddr_t mmap();$';
2562     sed = '/^extern caddr_t mmap();$/c' "\\\n"
2563           "#ifdef __STDC__\\\n"
2564           "extern caddr_t mmap (caddr_t, size_t, int, int, int, off_t);\\\n"
2565           "#else /* !defined(__STDC__) */\\\n"
2566           "extern caddr_t mmap ();\\\n"
2567           "#endif /* !defined(__STDC__) */\\\n";
2568 };
2569 #endif
2570
2571 /*
2572  *  Add a #define of _SIGACTION_ into <sys/signal.h>.
2573  */
2574 #ifdef SVR4
2575 fix = {
2576     hackname = svr4_sigaction;
2577     files    = sys/signal.h;
2578     sed      = "/^struct sigaction {/i\\\n"
2579                "#define _SIGACTION_";
2580     sed      = 's/(void *(\*)())/(void (*)(int))/';
2581 };
2582 #endif
2583
2584 /*
2585  *  Put storage class at start of decl, to avoid warning.
2586  */
2587 #ifdef SVR4
2588 fix = {
2589     hackname = svr4_storage_class;
2590     files    = rpc/types.h;
2591     select   = 'const extern';
2592     sed      = 's/const extern/extern const/g';
2593 };
2594 #endif
2595
2596
2597 /*
2598  *  Like svr4_mach_defines, but with newfangled syntax.
2599  *  Source lines are of #define __i386 #machine(i386).   Delete them.
2600  */
2601 #ifdef SVR5
2602 fix = {
2603     hackname = svr5_mach_defines;
2604     files    = ieeefp.h;
2605     select   = "#define[ \t]*__i386.*\(i386\)";
2606     sed      = "/#define[ \t]*__i386.*/d";
2607 };
2608 #endif /*  SVR5 */
2609
2610
2611 /*
2612  *  Fix return value of mem{ccpy,chr,cpy,set} and str{len,spn,cspn}
2613  *  in string.h on sysV68
2614  *  Correct the return type for strlen in string.h on Lynx.
2615  *  Correct the argument type for ffs in string.h on Alpha OSF/1 V2.0.
2616  *  Add missing const for strdup on OSF/1 V3.0.
2617  *  On sysV88 layout is slightly different.
2618  */
2619 fix = {
2620     hackname = sysv68_string;
2621     files    = testing.h;
2622     files    = string.h;
2623
2624     sed = "s/extern[ \t]*int[ \t]*strlen();/extern unsigned int strlen();/";
2625     sed = "s/extern[ \t]*int[ \t]*ffs[ \t]*(long);/extern int ffs(int);/";
2626     sed = "s/strdup(char \\*s1);/strdup(const char *s1);/";
2627
2628     sed = "/^extern char$/N";
2629     sed = "s/^extern char\\(\\n\t\\*memccpy(),\\)$/extern void\\1/";
2630
2631     sed = "/^extern int$/N";
2632     sed = "s/^extern int\\(\\n\tstrlen(),\\)/extern size_t\\1/";
2633
2634     sed = "/^\tstrncmp(),$/N";
2635     sed = 's/^\(' "\t" 'strncmp()\),\n\(' "\t" 'strlen(),\)$/'
2636             '\1;' "\\\nextern unsigned int\\\n\\2/";
2637
2638     test_text =
2639     "extern int strlen();\n"
2640
2641     "extern int ffs(long);\n"
2642
2643     "extern char\n"
2644     "\t*memccpy(),\n"
2645     "\tmemcpy();\n"
2646
2647     "extern int\n"
2648     "\tstrcmp(),\n"
2649     "\tstrncmp(),\n"
2650     "\tstrlen(),\n"
2651     "\tstrspn();\n"
2652
2653     "extern int\n"
2654     "\tstrlen(), strspn();";
2655 };
2656
2657
2658 /*
2659  *  Fix return type of calloc, malloc, realloc, bsearch and exit
2660  */
2661 fix = {
2662     hackname = sysz_stdlib_for_sun;
2663     files    = stdlib.h;
2664
2665     select    = "char[ \t]*\\*[ \t]*(calloc|malloc|realloc|bsearch)[ \t]*\\(";
2666     c_fix     = format;
2667     c_fix_arg = "void *\t%1(";
2668
2669     test_text =
2670     "extern char*\tcalloc(size_t);\n"
2671     "extern char*\tmalloc(size_t);\n"
2672     "extern char*\trealloc(void*,size_t);\n"
2673     "extern char*\tbsearch(void*,size_t,size_t);\n";
2674 };
2675
2676
2677 /*
2678  * __thread is now a keyword.
2679  */
2680 fix = {
2681     hackname  = thread_keyword;
2682     files     = "pthread.h";
2683     files     = "bits/sigthread.h";
2684     select    = "([* ])__thread([,)])";
2685     c_fix     = format;
2686     c_fix_arg = "%1__thr%2";
2687
2688     test_text =
2689         "extern int pthread_create (pthread_t *__restrict __thread,\n"
2690         "extern int pthread_kill (pthread_t __thread, int __signo);\n"
2691         "extern int pthread_cancel (pthread_t __thread);";
2692 };
2693
2694 /*
2695  *  if the #if says _cplusplus, not the double underscore __cplusplus
2696  *  that it should be
2697  */
2698 fix = {
2699     hackname = tinfo_cplusplus;
2700     files    = tinfo.h;
2701     select   = "[ \t]_cplusplus";
2702
2703     c_fix     = format;
2704     c_fix_arg = " __cplusplus";
2705     test_text = "#ifdef _cplusplus\nint bogus;\n#endif";
2706 };
2707
2708
2709 /*
2710  *  function parameter to atexit is missing "void" on VAX Ultrix 4.3.
2711  */
2712 fix = {
2713     hackname = ultrix_atexit_param;
2714     files    = stdlib.h;
2715     select   = 'atexit\(.*\(\)';
2716
2717     c_fix     = format;
2718     c_fix_arg = "atexit( void (*__func)( void )";
2719
2720     test_text = "int atexit( void (*__func)() );\n";
2721 };
2722
2723
2724 /*
2725  *  parameter to atof not const on DECstation Ultrix V4.0 and NEWS-OS 4.2R.
2726  */
2727 fix = {
2728     hackname = ultrix_atof_param;
2729     files    = math.h;
2730     select   = "atof\\([ \t]*char";
2731
2732     c_fix     = format;
2733     c_fix_arg = "atof(const char";
2734
2735     test_text = "extern double atof( char *__nptr);\n";
2736 };
2737
2738
2739 /*
2740  *  parameters not const on DECstation Ultrix V4.0 and OSF/1.
2741  */
2742 fix = {
2743     hackname  = ultrix_const;
2744     files     = stdio.h;
2745     select    = 'perror\( char \*';
2746
2747     c_fix     = format;
2748     c_fix_arg = "%1 const %3 *__";
2749     c_fix_arg = "([ \t*](perror|fputs|fwrite|scanf|fscanf)\\(.*)"
2750                 "[ \t]+(char|void) \\*__";
2751
2752     test_text =
2753     "extern void perror( char *__s );\n"
2754     "extern int fputs( char *__s, FILE *);\n"
2755     "extern size_t fwrite( void *__ptr, size_t, size_t, FILE *);\n"
2756     "extern int fscanf( FILE *__stream, char *__format, ...);\n"
2757     "extern int scanf( char *__format, ...);\n";
2758 };
2759
2760
2761 /*
2762  *  parameters not const on DECstation Ultrix V4.0 and OSF/1.
2763  */
2764 fix = {
2765     hackname  = ultrix_const2;
2766     files     = stdio.h;
2767
2768     select    = '\*fopen\( char \*';
2769     c_fix     = format;
2770     c_fix_arg = "%1( const char *%3, const char *";
2771     c_fix_arg = "([ \t*](fopen|sscanf|popen|tempnam))\\("
2772                "[ \t]*char[ \t]*\\*([^,]*),"
2773                "[ \t]*char[ \t]*\\*[ \t]*";
2774
2775     test_text =
2776     "extern FILE *fopen( char *__filename, char *__type );\n"
2777     "extern int sscanf( char *__s, char *__format, ...);\n"
2778     "extern FILE *popen(char *, char *);\n"
2779     "extern char *tempnam(char*,char*);\n";
2780 };
2781
2782
2783 /*
2784  * Ultrix V4.[35] puts the declaration of uname before the definition
2785  * of struct utsname, so the prototype (added by fixproto) causes havoc.
2786  */
2787 fix = {
2788     hackname = ultrix_fix_fixproto;
2789     files    = sys/utsname.h;
2790     select   = ULTRIX;
2791
2792     c_fix     = format;
2793     c_fix_arg = "struct utsname;\n%0";
2794     c_fix_arg = "^[ \t]*extern[ \t]*int[ \t]*uname\\(\\);";
2795
2796     test_text =
2797     "/* ULTRIX's uname */\nextern\tint\tuname();";
2798 };
2799
2800
2801 /*
2802  *  Check for bad #ifdef line (in Ultrix 4.1)
2803  */
2804 fix = {
2805     hackname = ultrix_ifdef;
2806     select   = "^#ifdef KERNEL[ \t]+&&";
2807     files    = sys/file.h;
2808
2809     c_fix     = format;
2810     c_fix_arg = "#if defined(KERNEL) &&";
2811
2812     test_text =
2813     "#ifdef KERNEL\t&& defined( mumbojumbo )\nint oops;\n#endif";
2814 };
2815
2816
2817 /*
2818  * Strip "|| CC$gfloat" from Ultrix math headers.
2819  */
2820 fix = {
2821     hackname  = ultrix_math_ifdef;
2822     files     = sys/limits.h;
2823     files     = float.h;
2824     files     = math.h;
2825     select    = "^(#if.*)\\|\\|[ \t]+CC\\$[a-z]+";
2826     c_fix     = format;
2827     c_fix_arg = "%1";
2828
2829     test_text = '#if     defined(__GFLOAT) || CC\$gfloat';
2830 };
2831
2832
2833 /*
2834  *  Avoid nested comments on Ultrix 4.3.
2835  */
2836 fix = {
2837     hackname = ultrix_nested_ioctl;
2838     files    = sys/ioctl.h;
2839     select   = "^/\\* #define SIOCSCREEN";
2840     sed      = "/^\\/\\* #define SIOCSCREEN/s@/\\* screend@*//* screend@";
2841     test_text =
2842     "/* #define SIOCSCREENON _IOWR('i', 49, int)"
2843     "/* screend, net/gw_screen.h */\n";
2844 };
2845
2846
2847 fix = {
2848     hackname = ultrix_nested_svc;
2849     files    = rpc/svc.h;
2850     select   = "^ \\*[ \t]*int protocol;  */\\*";
2851     sed      = "s@^\\( \\*\tint protocol;  \\)/\\*@\\1*/ /*@";
2852     test_text =
2853     " *\tint protocol;  /* like TCP or UDP\n";
2854 };
2855
2856
2857 /*
2858  *  Add missing prototype for lstat and define for S_ISLNK
2859  *  in Ultrix V4.3 sys/stat.h.
2860  */
2861 fix = {
2862     hackname = ultrix_stat;
2863     files  = sys/stat.h;
2864     select = "@\\(#\\)stat\\.h.*6\\.1.*\\(ULTRIX\\)";
2865     sed    = "/^#define[ \t]S_IFPORT[ \t]*S_IFIFO$/a\\\n"
2866                 "\\\n"
2867                 "/* macro to test for symbolic link */\\\n"
2868                 "#define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)\\\n"
2869                 "\n";
2870     sed    = "/^[ \t]*fstat(),$/a\\\n"
2871                 "\tlstat(),\n";
2872     test_text =
2873     "@(#)stat.h      6.1     (ULTRIX)\n"
2874     "#define S_IFPORT S_IFIFO\n"
2875     "\tfstat(),\n";
2876 };
2877
2878
2879 /*
2880  *  Check for superfluous `static' (in Ultrix 4.2)
2881  *  On Ultrix 4.3, includes of other files (r3_cpu.h,r4_cpu.h) is broken.
2882  */
2883 fix = {
2884     hackname = ultrix_static;
2885     files  = machine/cpu.h;
2886     select = '#include "r[34]_cpu';
2887     sed    = "s/^static struct tlb_pid_state/struct tlb_pid_state/";
2888     sed    = 's/^#include "r3_cpu\.h"$/#include <machine\/r3_cpu\.h>/';
2889     sed    = 's/^#include "r4_cpu\.h"$/#include <machine\/r4_cpu\.h>/';
2890     test_text =
2891     "static struct tlb_pid_state {\n"
2892     "#include \"r3_cpu.h\"\n";
2893 };
2894
2895
2896 /*
2897  *  Add once-only latch to Ultrix V4.3 strings.h.
2898  */
2899 fix = {
2900     hackname = ultrix_strings;
2901     files  = strings.h;
2902     select = "@\\(#\\)strings\\.h.*6\\.1.*\\(ULTRIX\\)";
2903     c_fix  = wrap;
2904     test_text =
2905     "@(#)strings.h   6.1     (ULTRIX)\n";
2906 };
2907
2908
2909 /*
2910  *  Fix multiple defines for NULL.  Sometimes, we stumble into \r\n
2911  *  terminated lines, so accommodate these.  Test both ways.
2912  */
2913 fix = {
2914     hackname  = undefine_null;
2915     select    = "^#[ \t]*define[ \t]+NULL[ \t]";
2916     bypass    = "#[ \t]*(ifn|un)def[ \t]+NULL($|[ \t\r])";
2917
2918     c_fix     = format;
2919     c_fix_arg = "#ifndef NULL%2\n#define NULL%1%2\n#endif%2\n";
2920     c_fix_arg = "^#[ \t]*define[ \t]*[ \t]NULL([^\r\n]+)([\r]*)\n";
2921
2922     test_text = "#define NULL 0UL\r\n#define NULL\t((void*)0)\n";
2923 };
2924
2925 /*
2926  * On Cray Unicos/Mk some standard headers use the C99 keyword "restrict"
2927  * which must be replaced by __restrict__ for GCC.
2928  */
2929 fix = {
2930     hackname = unicosmk_restrict;
2931     files    = stdio.h;
2932     files    = stdlib.h;
2933     files    = wchar.h;
2934     mach     = "*-*-unicosmk*";
2935     select   = "(\\*[ \t]*)restrict([ \t]+)";
2936
2937     c_fix     = format;
2938     c_fix_arg = "%1__restrict__%2";
2939
2940     test_text = "void f (char * restrict x);";
2941 };
2942
2943 /*
2944  * If arpa/inet.h prototypes are incompatible with the ones we just
2945  * installed in <sys/byteorder.h>, just remove the protos.
2946  * Because of this close association, this patch must be applied only
2947  * on those systems where the replacement byteorder header is installed.
2948  */
2949 fix = {
2950     hackname = uw7_byteorder_fix;
2951     files    = arpa/inet.h;
2952     select   = "in_port_t";
2953     test     = "-f sys/byteorder.h";
2954 #ifndef SVR5
2955         mach = "*-*-sysv4*";
2956         mach = "i?86-*-sysv5*";
2957         mach = "i?86-*-udk*";
2958         mach = "i?86-*-solaris2.[0-4]";
2959         mach = "powerpcle-*-solaris2.[0-4]";
2960         mach = "sparc-*-solaris2.[0-4]";
2961 #endif /* SVR5 */
2962
2963     c_fix     = format;
2964     c_fix_arg = "";
2965     c_fix_arg = "^extern.*[ \t](htons|ntohs).*\\(in_port_t\\).*;";
2966
2967     test_text = "extern in_port_t\thtons __P((in_port_t));\n"
2968                 "extern in_port_t\tntohs __P((in_port_t));"
2969                 "`[ ! -d $DESTDIR/sys ] && mkdir $DESTDIR/sys\n"
2970                 "echo '/* DUMMY */' >> sys/byteorder.h`";
2971 };
2972
2973
2974 /*
2975  *  Fix definitions of macros used by va-i960.h in VxWorks header file.
2976  */
2977 fix = {
2978     hackname  = va_i960_macro;
2979     files     = arch/i960/archI960.h;
2980     select    = "__(vsiz|vali|vpad|alignof__)";
2981
2982     c_fix     = format;
2983     c_fix_arg = "__vx%1";
2984
2985     test_text =
2986     "extern int __vsiz vsiz;\n"
2987     "extern int __vali vali;\n"
2988     "extern int __vpad vpad;\n"
2989     "#define __alignof__(x) ...";
2990 };
2991
2992
2993 /*
2994  *  AIX headers define NULL to be cast to a void pointer,
2995  *  which is illegal in ANSI C++.
2996  */
2997 fix = {
2998     hackname  = void_null;
2999     files     = curses.h;
3000     files     = dbm.h;
3001     files     = locale.h;
3002     files     = stdio.h;
3003     files     = stdlib.h;
3004     files     = string.h;
3005     files     = time.h;
3006     files     = unistd.h;
3007     files     = sys/dir.h;
3008     files     = sys/param.h;
3009     files     = sys/types.h;
3010     select    = "^#[ \t]*define[ \t]+NULL[ \t]+\\(\\(void[ \t]*\\*\\)0\\)";
3011     c_fix     = format;
3012     c_fix_arg = "#define NULL 0";
3013     test_text = "# define\tNULL \t((void *)0)  /* typed NULL */";
3014 };
3015
3016
3017 /*
3018  *  Make VxWorks header which is almost gcc ready fully gcc ready.
3019  */
3020 fix = {
3021     hackname = vxworks_gcc_problem;
3022     files    = types/vxTypesBase.h;
3023     select   = "__GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__";
3024
3025     sed = "s/#ifdef __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__/"
3026           "#if 1/";
3027
3028     sed = "/[ \t]size_t/i\\\n"
3029         "#ifndef _GCC_SIZE_T\\\n"
3030         "#define _GCC_SIZE_T\n";
3031
3032     sed = "/[ \t]size_t/a\\\n"
3033         "#endif\n";
3034
3035     sed = "/[ \t]ptrdiff_t/i\\\n"
3036         "#ifndef _GCC_PTRDIFF_T\\\n"
3037         "#define _GCC_PTRDIFF_T\n";
3038
3039     sed = "/[ \t]ptrdiff_t/a\\\n"
3040         "#endif\n";
3041
3042     sed = "/[ \t]wchar_t/i\\\n"
3043         "#ifndef _GCC_WCHAR_T\\\n"
3044         "#define _GCC_WCHAR_T\n";
3045
3046     sed = "/[ \t]wchar_t/a\\\n"
3047         "#endif\n";
3048
3049     test_text =
3050     "#ifdef __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__\n"
3051     "typedef unsigned int size_t;\n"
3052     "typedef long ptrdiff_t;\n"
3053     "typedef unsigned short wchar_t;\n"
3054     "#endif /* __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__ */\n";
3055 };
3056
3057
3058 /*
3059  *  Fix VxWorks <time.h> to not require including <vxTypes.h>.
3060  */
3061 fix = {
3062     hackname  = vxworks_needs_vxtypes;
3063     files     = time.h;
3064     select    = "uint_t([ \t]+_clocks_per_sec)";
3065     c_fix     = format;
3066     c_fix_arg = "unsigned int%1";
3067     test_text = "uint_t\t_clocks_per_sec;";
3068 };
3069
3070
3071 /*
3072  *  Fix VxWorks <sys/stat.h> to not require including <vxWorks.h>.
3073  */
3074 fix = {
3075     hackname = vxworks_needs_vxworks;
3076     files    = sys/stat.h;
3077     test     = " -r types/vxTypesOld.h";
3078     test     = " -n \"`egrep '#include' $file`\"";
3079     test     = " -n \"`egrep ULONG $file`\"";
3080     select   = "#[ \t]define[ \t]+__INCstath";
3081
3082     sed = "/#[ \t]define[ \t][ \t]*__INCstath/a\\\n"
3083           "#include <types/vxTypesOld.h>\n";
3084
3085     test_text = "`touch types/vxTypesOld.h`"
3086     "#include </dev/null> /* ULONG */\n"
3087     "# define\t__INCstath <sys/stat.h>";
3088 };
3089
3090
3091 /*
3092  *  Another bad dependency in VxWorks 5.2 <time.h>.
3093  */
3094 fix = {
3095     hackname = vxworks_time;
3096     files    = time.h;
3097     test     = " -r vxWorks.h";
3098
3099     select    = "#[ \t]*define[ \t]+VOIDFUNCPTR[ \t].*";
3100     c_fix     = format;
3101
3102     c_fix_arg =
3103     "#ifndef __gcc_VOIDFUNCPTR_defined\n"
3104     "#ifdef __cplusplus\n"
3105     "typedef void (*__gcc_VOIDFUNCPTR) (...);\n"
3106     "#else\n"
3107     "typedef void (*__gcc_VOIDFUNCPTR) ();\n"
3108     "#endif\n"
3109     "#define __gcc_VOIDFUNCPTR_defined\n"
3110     "#endif\n"
3111     "#define VOIDFUNCPTR __gcc_VOIDFUNCPTR";
3112
3113     test_text = "`touch vxWorks.h`"
3114                 "#define VOIDFUNCPTR (void(*)())";
3115 };
3116
3117
3118 /* 
3119  * WindISS math.h headers include bogus extern declarations of 
3120  * numerous math functions that conflict with libstdc++-v3.
3121  */
3122 fix = {
3123     hackname  = windiss_math1;
3124     files     = math.h;
3125     mach      = "*-*-windiss";
3126     sed       = "s|inline long double cosl.*|#ifndef __GNUC__|";
3127
3128     test_text = "inline long double cosl(long double);";
3129 };
3130
3131 fix = {
3132     hackname  = windiss_math2;
3133     files     = math.h;
3134     mach      = "*-*-windiss";
3135     sed       = "s|/\\* long double declarations \\*/|"
3136                   "#endif /* __GNUC__ */|";
3137
3138     test_text = "/* long double declarations */";
3139 };
3140
3141 /*
3142  * WindISS headers include "diab/va_list.h" instead of "stdarg.h"
3143  */
3144 fix = {
3145     select    = '(#include.*)diab/va_list.h';
3146     hackname  = windiss_valist;
3147     sed       = "s|diab/va_list.h|stdarg.h|";
3148     mach      = "*-*-windiss";
3149
3150     test_text = "#include <diab/va_list.h>";
3151 };
3152
3153 /*
3154  *  There are several name conflicts with C++ reserved words in X11 header
3155  *  files.  These are fixed in some versions, so don't do the fixes if
3156  *  we find __cplusplus in the file.  These were found on the RS/6000.
3157  */
3158 fix = {
3159     hackname  = x11_class;
3160     files     = X11/ShellP.h;
3161     bypass    = __cplusplus;
3162     select    = "^([ \t]*char \\*)class;(.*)";
3163     c_fix     = format;
3164     c_fix_arg = "#ifdef __cplusplus\n%1c_class;%2\n"
3165                 "#else\n%1class;%2\n#endif";
3166     test_text =
3167     "struct {\n"
3168     "   char *class;\n"
3169     "} mumble;\n";
3170 };
3171
3172
3173 /*
3174  *  class in Xm/BaseClassI.h
3175  */
3176 fix = {
3177     hackname = x11_class_usage;
3178     files    = Xm/BaseClassI.h;
3179     bypass   = "__cplusplus";
3180
3181     select    = " class\\)";
3182     c_fix     = format;
3183     c_fix_arg = " c_class)";
3184
3185     test_text = "extern mumble (int  class);\n";
3186 };
3187
3188
3189 /*
3190  *  new in Xm/Traversal.h
3191  */
3192 fix = {
3193     hackname = x11_new;
3194     files    = Xm/Traversal.h;
3195     bypass   = __cplusplus;
3196
3197     sed      = "/Widget\told, new;/i\\\n"
3198                    "#ifdef __cplusplus\\\n"
3199                    "\tWidget\told, c_new;\\\n"
3200                    "#else\n";
3201
3202     sed      = "/Widget\told, new;/a\\\n"
3203                    "#endif\n";
3204
3205     sed      = "s/Widget new,/Widget c_new,/g";
3206     test_text =
3207     "struct wedge {\n"
3208     "   Widget\told, new; /* fix the new */\n"
3209     "};\nextern Wedged( Widget new, Widget old );";
3210 };
3211
3212
3213 /*
3214  *  Incorrect sprintf declaration in X11/Xmu.h
3215  */
3216 fix = {
3217     hackname = x11_sprintf;
3218     files    = X11/Xmu.h;
3219     files    = X11/Xmu/Xmu.h;
3220     select   = "^extern char \\*\tsprintf\\(\\);$";
3221
3222     c_fix     = format;
3223     c_fix_arg = "#ifndef __STDC__\n%0\n#endif /* !defined __STDC__ */";
3224
3225     test_text = "extern char *\tsprintf();";
3226 };
3227
3228 /*EOF*/