OSDN Git Service

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