OSDN Git Service

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