OSDN Git Service

* inclhack.def (hpux11_extern_sendfile): New.
[pf3gnuchains/gcc-fork.git] / fixincludes / 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 /*
25  *  On Mac OS 10.3.9, the 'long double' functions are available in
26  *  libSystem, but are not prototyped in math.h.
27  */
28 fix = {
29   hackname  = AAB_darwin7_9_long_double_funcs;
30   mach      = "*-*-darwin7.9*";
31   files     = architecture/ppc/math.h;
32   bypass    = "powl";
33   replace = <<- _EndOfHeader_
34 /* This file prototypes the long double functions available on Mac OS
35    10.3.9.  */
36 #ifndef __MATH__
37 # undef __APPLE_CC__
38 # define __APPLE_CC__  1345
39 # include_next <architecture/ppc/math.h>
40 # undef __APPLE_CC__
41 # define __APPLE_CC__ 1
42 # ifndef __LIBMLDBL_COMPAT
43 #  ifdef __LONG_DOUBLE_128__
44 #   define __LIBMLDBL_COMPAT(sym) __asm("_" #sym "$LDBL128")
45 #  else
46 #   define __LIBMLDBL_COMPAT(sym)
47 #  endif /* __LONG_DOUBLE_128__ */
48 # endif /* __LIBMLDBL_COMPAT */
49 # ifdef __cplusplus
50    extern "C" {
51 # endif
52   extern long double acosl( long double ) __LIBMLDBL_COMPAT(acosl);
53   extern long double asinl( long double ) __LIBMLDBL_COMPAT(asinl);
54   extern long double atanl( long double ) __LIBMLDBL_COMPAT(atanl);
55   extern long double atan2l( long double, long double ) __LIBMLDBL_COMPAT(atan2l);
56   extern long double cosl( long double ) __LIBMLDBL_COMPAT(cosl);
57   extern long double sinl( long double ) __LIBMLDBL_COMPAT(sinl);
58   extern long double tanl( long double ) __LIBMLDBL_COMPAT(tanl);
59   extern long double acoshl( long double ) __LIBMLDBL_COMPAT(acoshl);
60   extern long double asinhl( long double ) __LIBMLDBL_COMPAT(asinhl);
61   extern long double atanhl( long double ) __LIBMLDBL_COMPAT(atanhl);
62   extern long double coshl( long double ) __LIBMLDBL_COMPAT(coshl);
63   extern long double sinhl( long double ) __LIBMLDBL_COMPAT(sinhl);
64   extern long double tanhl( long double ) __LIBMLDBL_COMPAT(tanhl);
65   extern long double expl( long double ) __LIBMLDBL_COMPAT(expl);
66   extern long double exp2l( long double ) __LIBMLDBL_COMPAT(exp2l);
67   extern long double expm1l( long double ) __LIBMLDBL_COMPAT(expm1l);
68   extern long double logl( long double ) __LIBMLDBL_COMPAT(logl);
69   extern long double log10l( long double ) __LIBMLDBL_COMPAT(log10l);
70   extern long double log2l( long double ) __LIBMLDBL_COMPAT(log2l);
71   extern long double log1pl( long double ) __LIBMLDBL_COMPAT(log1pl);
72   extern long double logbl( long double ) __LIBMLDBL_COMPAT(logbl);
73   extern long double modfl( long double, long double * ) __LIBMLDBL_COMPAT(modfl);
74   extern long double ldexpl( long double, int ) __LIBMLDBL_COMPAT(ldexpl);
75   extern long double frexpl( long double, int * ) __LIBMLDBL_COMPAT(frexpl);
76   extern int ilogbl( long double ) __LIBMLDBL_COMPAT(ilogbl);
77   extern long double scalbnl( long double, int ) __LIBMLDBL_COMPAT(scalbnl);
78   extern long double scalblnl( long double, long int ) __LIBMLDBL_COMPAT(scalblnl);
79   extern long double fabsl( long double ) __LIBMLDBL_COMPAT(fabsl);
80   extern long double cbrtl( long double ) __LIBMLDBL_COMPAT(cbrtl);
81   extern long double hypotl( long double, long double ) __LIBMLDBL_COMPAT(hypotl);
82   extern long double powl( long double, long double ) __LIBMLDBL_COMPAT(powl);
83   extern long double sqrtl( long double ) __LIBMLDBL_COMPAT(sqrtl);
84   extern long double erfl( long double ) __LIBMLDBL_COMPAT(erfl);
85   extern long double erfcl( long double ) __LIBMLDBL_COMPAT(erfcl);
86   extern long double lgammal( long double ) __LIBMLDBL_COMPAT(lgammal);
87   extern long double tgammal( long double ) __LIBMLDBL_COMPAT(tgammal);
88   extern long double ceill( long double ) __LIBMLDBL_COMPAT(ceill);
89   extern long double floorl( long double ) __LIBMLDBL_COMPAT(floorl);
90   extern long double nearbyintl( long double ) __LIBMLDBL_COMPAT(nearbyintl);
91   extern long double rintl( long double ) __LIBMLDBL_COMPAT(rintl);
92   extern long int lrintl( long double ) __LIBMLDBL_COMPAT(lrintl);
93   extern long long int llrintl( long double ) __LIBMLDBL_COMPAT(llrintl);
94   extern long double roundl( long double ) __LIBMLDBL_COMPAT(roundl);
95   extern long int lroundl( long double ) __LIBMLDBL_COMPAT(lroundl);
96   extern long long int llroundl( long double ) __LIBMLDBL_COMPAT(llroundl);
97   extern long double truncl( long double ) __LIBMLDBL_COMPAT(truncl);
98   extern long double fmodl( long double, long double) __LIBMLDBL_COMPAT(fmodl);
99   extern long double remainderl( long double, long double ) __LIBMLDBL_COMPAT(remainderl);
100   extern long double remquol( long double, long double, int * ) __LIBMLDBL_COMPAT(remquol);
101   extern long double copysignl( long double, long double ) __LIBMLDBL_COMPAT(copysignl);
102   extern long double nanl( const char * ) __LIBMLDBL_COMPAT(nanl);
103   extern long double nextafterl( long double, long double ) __LIBMLDBL_COMPAT(nextafterl);
104   extern long double nexttowardl( long double, long double ) __LIBMLDBL_COMPAT(nexttowardl);
105   extern long double fdiml( long double, long double ) __LIBMLDBL_COMPAT(fdiml);
106   extern long double fmaxl( long double, long double ) __LIBMLDBL_COMPAT(fmaxl);
107   extern long double fminl( long double, long double ) __LIBMLDBL_COMPAT(fminl);
108   extern long double fmal( long double, long double, long double ) __LIBMLDBL_COMPAT(fmal);
109 # ifdef __cplusplus
110    }
111 # endif
112 #endif /* __MATH__ */
113 _EndOfHeader_;
114 };
115
116
117 /*
118  *  ... and for the previous fix to be useful, you have to not use ""
119  *  includes.
120  */
121 fix = {
122   hackname  = AAB_darwin7_9_long_double_funcs_2;
123   mach      = "*-*-darwin7.9*";
124   files     = math.h;
125   select    = '#include[ \t]+\"';
126   c_fix     = format;
127   c_fix_arg = "%1<%2.h>";
128   
129   c_fix_arg = '([ \t]*#[ \t]*include[ \t]+)"([a-z0-9/]+)\.h"';
130   
131   test_text = '#include "architecture/ppc/math.h"';
132 };
133
134
135 /*
136  *  This fixes __FD_ZERO bug for linux 2.x.y (x <= 2 && y <= some n)
137  */
138 fix = {
139     hackname = AAB_fd_zero_asm_posix_types_h;
140     files    = asm/posix_types.h;
141     mach     = 'i[34567]86-*-linux*';
142     bypass   = '} while';
143     bypass   = 'x86_64';
144
145     /*
146      * Define _POSIX_TYPES_H_WRAPPER at the end of the wrapper, not
147      * the start, so that if #include_next gets another instance of
148      * the wrapper, this will follow the #include_next chain until
149      * we arrive at the real <asm/posix_types.h>.
150      */
151     replace  = <<-  _EndOfHeader_
152         /* This file fixes a bug in the __FD_ZERO macro
153            for older versions of the Linux kernel. */
154         #ifndef _POSIX_TYPES_H_WRAPPER
155         #include <features.h>
156          #include_next <asm/posix_types.h>
157         
158         #if defined(__FD_ZERO) && !defined(__GLIBC__)
159         #undef __FD_ZERO
160         #define __FD_ZERO(fdsetp) \
161           do { \
162             int __d0, __d1; \
163                         __asm__ __volatile__("cld ; rep ; stosl" \
164                                 : "=&c" (__d0), "=&D" (__d1) \
165                                 : "a" (0), "0" (__FDSET_LONGS), \
166                                   "1" ((__kernel_fd_set *) (fdsetp)) :"memory"); \
167           } while (0)
168         #endif
169         
170         #define _POSIX_TYPES_H_WRAPPER
171         #endif /* _POSIX_TYPES_H_WRAPPER */
172         _EndOfHeader_;
173 };
174
175
176 /*
177  *  This fixes __FD_ZERO bug for glibc-1.x
178  */
179 fix = {
180     hackname = AAB_fd_zero_gnu_types_h;
181     files    = gnu/types.h;
182     mach     = 'i[34567]86-*-linux*';
183
184     /*
185      * Define _TYPES_H_WRAPPER at the end of the wrapper, not
186      * the start, so that if #include_next gets another instance of
187      * the wrapper, this will follow the #include_next chain until
188      * we arrive at the real <gnu/types.h>.
189      */
190     replace  = <<-  _EndOfHeader_
191         /* This file fixes a bug in the __FD_ZERO macro present in glibc 1.x. */
192         #ifndef _TYPES_H_WRAPPER
193         #include <features.h>
194         #include_next <gnu/types.h>
195
196         #if defined(__FD_ZERO) && !defined(__GLIBC__)
197         #undef __FD_ZERO
198         # define __FD_ZERO(fdsetp) \
199           do { \
200             int __d0, __d1; \
201                 __asm__ __volatile__("cld ; rep ; stosl" \
202                 : "=&c" (__d0), "=&D" (__d1) \
203                 : "a" (0), "0" (__FDSET_LONGS), \
204                   "1" ((__fd_set *) (fdsetp)) :"memory"); \
205           } while (0)
206         #endif
207
208         #define _TYPES_H_WRAPPER
209         #endif /* _TYPES_H_WRAPPER */
210         _EndOfHeader_;
211 };
212
213
214 /*
215  *  This fixes __FD_ZERO bug for glibc-2.0.x
216  */
217 fix = {
218     hackname = AAB_fd_zero_selectbits_h;
219     files    = selectbits.h;
220     mach     = 'i[34567]86-*-linux*';
221
222     /*
223      * Define _SELECTBITS_H_WRAPPER at the end of the wrapper, not
224      * the start, so that if #include_next gets another instance of
225      * the wrapper, this will follow the #include_next chain until
226      * we arrive at the real <selectbits.h>.
227      */
228     replace  = <<-  _EndOfHeader_
229         /* This file fixes a bug in the __FD_ZERO macro present in glibc 2.0.x. */
230         #ifndef _SELECTBITS_H_WRAPPER
231           #include <features.h>
232           #include_next <selectbits.h>
233
234           #if defined(__FD_ZERO) && defined(__GLIBC__) \\
235           && defined(__GLIBC_MINOR__) && __GLIBC__ == 2 \\
236           && __GLIBC_MINOR__ == 0
237              #undef __FD_ZERO
238              #define __FD_ZERO(fdsetp) \\
239              do { \\
240                 int __d0, __d1; \\
241               __asm__ __volatile__ ("cld; rep; stosl" \\
242                         : "=&c" (__d0), "=&D" (__d1) \\
243                         : "a" (0), "0" (sizeof (__fd_set) \\
244                                         / sizeof (__fd_mask)), \\
245                           "1" ((__fd_mask *) (fdsetp)) \\
246                         : "memory"); \\
247               } while (0)
248           #endif
249
250           #define _SELECTBITS_H_WRAPPER
251         #endif /* _SELECTBITS_H_WRAPPER */
252         _EndOfHeader_;
253 };
254
255
256 /*
257  * Solaris <sys/varargs.h> is a DDK (aka kernel-land) header providing
258  * the same interface as <stdarg.h>.  No idea why they couldn't have just
259  * used the standard header.
260  */
261 fix = {
262     hackname = AAB_solaris_sys_varargs_h;
263     files    = "sys/varargs.h";
264     mach     = '*-*-solaris*';
265     replace  = <<-  _EndOfHeader_
266         #ifdef __STDC__
267           #include <stdarg.h>
268         #else
269           #include <varargs.h>
270         #endif
271         _EndOfHeader_;
272 };
273
274
275 /*
276  *  Fix non-ANSI memcpy declaration that conflicts with gcc's builtin
277  *  declaration on Sun OS 4.x.  We must only fix this on Sun OS 4.x, because
278  *  many other systems have similar text but correct versions of the file.
279  *  To ensure only Sun's is fixed, we grep for a likely unique string.
280  *  Fix also on sysV68 R3V7.1 (head/memory.h\t50.1\t )
281  */
282 fix = {
283     hackname = AAB_sun_memcpy;
284     files    = memory.h;
285     select   = "/\\*\t@\\(#\\)"
286              "(head/memory.h\t50.1\t "
287              "|memory\\.h 1\\.[2-4] 8./../.. SMI; from S5R2 1\\.2\t)\\*/";
288
289     replace = <<-  _EndOfHeader_
290         /* This file was generated by fixincludes */
291         #ifndef __memory_h__
292           #define __memory_h__
293
294           #ifdef __STDC__
295             extern void *memccpy();
296             extern void *memchr();
297             extern void *memcpy();
298             extern void *memset();
299           #else
300             extern char *memccpy();
301             extern char *memchr();
302             extern char *memcpy();
303             extern char *memset();
304           #endif /* __STDC__ */
305
306           extern int memcmp();
307
308         #endif /* __memory_h__ */
309         _EndOfHeader;
310 };
311
312
313 /*
314  *  Completely replace <sys/varargs.h> with a file that includes gcc's
315  *  stdarg.h or varargs.h files as appropriate.
316  */
317 #ifdef SVR4
318 fix = {
319     hackname = AAB_svr4_no_varargs;
320     files    = sys/varargs.h;
321     replace  = "/* This file was generated by fixincludes.  */\n"
322                "#ifndef _SYS_VARARGS_H\n"
323                "#define _SYS_VARARGS_H\n\n"
324
325                "#ifdef __STDC__\n"
326                "#include <stdarg.h>\n"
327                "#else\n"
328                "#include <varargs.h>\n"
329                "#endif\n\n"
330
331                "#endif  /* _SYS_VARARGS_H */\n";
332 };
333 #endif
334
335
336 /*
337  *  Completely replace <sys/byteorder.h> with a file that implements gcc's
338  *  optimized byteswapping.  (The original probably implemented some
339  *  incompatible optimized byteswapping.)
340  */
341 fix = {
342     hackname = AAB_svr4_replace_byteorder;
343     mach     = "*-*-sysv4*";
344     mach     = "i[34567]86-*-sysv5*";
345     mach     = "i[34567]86-*-sco3.2v5*";
346     mach     = "i[34567]86-*-udk*";
347     mach     = "i[34567]86-*-solaris2.[0-4]";
348     mach     = "powerpcle-*-solaris2.[0-4]";
349     mach     = "sparc-*-solaris2.[0-4]";
350     mach     = "i[34567]86-sequent-ptx*";
351     files    = sys/byteorder.h;
352     replace  = <<-  _EndOfHeader_
353         #ifndef _SYS_BYTEORDER_H
354         #define _SYS_BYTEORDER_H
355
356         /* Functions to convert `short' and `long' quantities from host byte order
357            to (internet) network byte order (i.e. big-endian).
358
359            Written by Ron Guilmette (rfg@ncd.com).
360
361            This isn't actually used by GCC.  It is installed by fixinc.svr4.
362
363            For big-endian machines these functions are essentially no-ops.
364
365            For little-endian machines, we define the functions using specialized
366            asm sequences in cases where doing so yields better code (e.g. i386).  */
367
368         #if !defined (__GNUC__) && !defined (__GNUG__)
369           #error You lose!  This file is only useful with GNU compilers.
370         #endif
371
372         #ifndef __BYTE_ORDER__
373           /* Byte order defines.  These are as defined on UnixWare 1.1, but with
374              double underscores added at the front and back.  */
375           #define __LITTLE_ENDIAN__   1234
376           #define __BIG_ENDIAN__      4321
377           #define __PDP_ENDIAN__      3412
378         #endif
379
380         #ifdef __STDC__
381           static __inline__ unsigned long htonl (unsigned long);
382           static __inline__ unsigned short htons (unsigned int);
383           static __inline__ unsigned long ntohl (unsigned long);
384           static __inline__ unsigned short ntohs (unsigned int);
385         #endif /* defined (__STDC__) */
386
387         #if defined (__i386__)
388
389           #ifndef __BYTE_ORDER__
390             #define __BYTE_ORDER__ __LITTLE_ENDIAN__
391           #endif
392
393           /* Convert a host long to a network long.  */
394
395           /* We must use a new-style function definition, so that this will also
396              be valid for C++.  */
397           static __inline__ unsigned long
398           htonl (unsigned long __arg)
399           {
400             register unsigned long __result;
401
402             __asm__ ("xchg%B0 %b0,%h0
403                   ror%L0 $16,%0
404                   xchg%B0 %b0,%h0" : "=q" (__result) : "0" (__arg));
405             return __result;
406           }
407
408           /* Convert a host short to a network short.  */
409
410           static __inline__ unsigned short
411           htons (unsigned int __arg)
412           {
413             register unsigned short __result;
414
415             __asm__ ("xchg%B0 %b0,%h0" : "=q" (__result) : "0" (__arg));
416             return __result;
417           }
418
419         #elif (defined (__ns32k__) || defined (__vax__) || defined (__arm__))
420
421           #ifndef __BYTE_ORDER__
422             #define __BYTE_ORDER__ __LITTLE_ENDIAN__
423           #endif
424
425           /* For other little-endian machines, using C code is just as efficient as
426              using assembly code.  */
427
428           /* Convert a host long to a network long.  */
429
430           static __inline__ unsigned long
431           htonl (unsigned long __arg)
432           {
433             register unsigned long __result;
434
435             __result = (__arg >> 24) & 0x000000ff;
436             __result |= (__arg >> 8) & 0x0000ff00;
437             __result |= (__arg << 8) & 0x00ff0000;
438             __result |= (__arg << 24) & 0xff000000;
439             return __result;
440           }
441
442           /* Convert a host short to a network short.  */
443
444           static __inline__ unsigned short
445           htons (unsigned int __arg)
446           {
447             register unsigned short __result;
448
449             __result = (__arg << 8) & 0xff00;
450             __result |= (__arg >> 8) & 0x00ff;
451             return __result;
452           }
453
454         #else /* must be a big-endian machine */
455
456           #ifndef __BYTE_ORDER__
457             #define __BYTE_ORDER__ __BIG_ENDIAN__
458           #endif
459
460           /* Convert a host long to a network long.  */
461
462           static __inline__ unsigned long
463           htonl (unsigned long __arg)
464           {
465             return __arg;
466           }
467
468           /* Convert a host short to a network short.  */
469
470           static __inline__ unsigned short
471           htons (unsigned int __arg)
472           {
473             return __arg;
474           }
475
476         #endif /* big-endian */
477
478         /* Convert a network long to a host long.  */
479
480         static __inline__ unsigned long
481         ntohl (unsigned long __arg)
482         {
483           return htonl (__arg);
484         }
485
486         /* Convert a network short to a host short.  */
487
488         static __inline__ unsigned short
489         ntohs (unsigned int __arg)
490         {
491           return htons (__arg);
492         }
493         #endif
494         _EndOfHeader_;
495 };
496
497
498 /*
499  *  Cancel out ansi_compat.h on Ultrix.  Replace it with an empty file.
500  */
501 fix = {
502     hackname = AAB_ultrix_ansi_compat;
503     files    = ansi_compat.h;
504     select   = ULTRIX;
505     replace  = "/* This file intentionally left blank.  */\n";
506 };
507
508
509 /*
510  *  The Ultrix 4.3 file limits.h is a symbolic link to sys/limits.h.
511  *  Replace limits.h with a file that includes sys/limits.h.
512  */
513 fix = {
514     hackname = AAB_ultrix_limits;
515     files    = limits.h;
516     mach     = "*-*-ultrix4.3";
517     replace  = <<-  _EndOfHeader_
518         #ifndef _LIMITS_INCLUDED
519           #define _LIMITS_INCLUDED
520           #include <sys/limits.h>
521         #endif /* _LIMITS_INCLUDED */
522         _EndOfHeader_;
523 };
524
525
526 /*
527  *  The ULTRIX 4.3 version of memory.h duplicates definitions
528  *  present in strings.h.  Replace memory.h with a file that includes
529  *  strings.h to prevent problems from multiple inclusion.
530  */
531 fix = {
532     hackname = AAB_ultrix_memory;
533     files    = memory.h;
534     mach     = "*-*-ultrix4.3";
535     replace  = <<-  _EndOfHeader_
536         #ifndef _MEMORY_INCLUDED
537           #define _MEMORY_INCLUDED
538           #include <strings.h>
539         #endif /* _MEMORY_INCLUDED */
540         _EndOfHeader_;
541 };
542
543
544 /*
545  *  The Ultrix 4.3 file string.h is a symbolic link to strings.h.
546  *  Replace string.h link with a file that includes strings.h to prevent
547  *  problems from multiple inclusion.
548  */
549 fix = {
550     hackname = AAB_ultrix_string;
551     files    = string.h;
552     mach     = "*-*-ultrix4.3";
553     replace  = <<-  _EndOfHeader_
554         #ifndef _STRING_INCLUDED
555           #define _STRING_INCLUDED
556           #include <strings.h>
557         #endif /* _STRING_INCLUDED */
558         _EndOfHeader_;
559 };
560
561
562 /*
563  *  pthread.h on AIX 4.3.3 tries to define a macro without whitspace
564  *  which violates a requirement of ISO C.
565  */
566 fix = {
567     hackname  = aix_pthread;
568     files     = "pthread.h";
569     select    = "(#define [A-Za-z_0-9]+)(\\\\\n[^A-Za-z_0-9 \t\n(])";
570     c_fix     = format;
571     c_fix_arg = "%1 %2";
572     test_text = "#define PTHREAD_MUTEX_INITIALIZER\\\\\n"
573                 "{...init stuff...}";
574 };
575
576
577 /*
578  *  sys/machine.h on AIX 4.3.3 puts whitespace between a \ and a newline
579  *  in an otherwise harmless (and #ifed out) macro definition
580  */
581 fix = {
582     hackname  = aix_sysmachine;
583     files     = sys/machine.h;
584     select    = "\\\\ +\n";
585     c_fix     = format;
586     c_fix_arg = "\\\n";
587     test_text = "#define FOO \\\n"
588     " bar \\ \n baz \\ \n bat";
589 };
590
591
592 /*
593  *  sys/wait.h on AIX 3.2.5 puts the declaration of wait3 before the
594  *  definition of struct rusage, so the prototype added by fixproto fails.
595  */
596 fix = {
597     hackname  = aix_syswait;
598     files     = sys/wait.h;
599     select    = "^extern pid_t wait3\\(\\);\n";
600     select    = "bos325,";
601     c_fix     = format;
602     c_fix_arg = "struct rusage;\n%0";
603     test_text = "/* bos325, */\n"
604     "extern pid_t wait3();\n"
605     "\t/* pid_t wait3(int *, int, struct rusage *); */";
606 };
607
608
609 /*
610  *  sys/wait.h on AIX 5.2 defines macros that have both signed and
611  *  unsigned types in conditional expressions.
612  */
613 fix = {
614     hackname  = aix_syswait_2;
615     files     = sys/wait.h;
616     select    = '\? (\(\(\(\(unsigned[^)]*\)[^)]*\) >> [^)]*\) \& 0xff\) : -1)';
617     c_fix     = format;
618     c_fix_arg = "? (int)%1";
619     test_text = "#define WSTOPSIG(__x)    (int)(WIFSTOPPED(__x) ? ((((unsigned int)__x) >> 8) & 0xff) : -1)";
620 };
621
622
623 /*
624  *  sys/signal.h on some versions of AIX uses volatile in the typedef of
625  *  sig_atomic_t, which causes gcc to generate a warning about duplicate
626  *  volatile when a sig_atomic_t variable is declared volatile, as
627  *  required by ANSI C.
628  */
629 fix = {
630     hackname  = aix_volatile;
631     files     = sys/signal.h;
632     select    = "typedef volatile int sig_atomic_t";
633     c_fix     = format;
634     c_fix_arg = "typedef int sig_atomic_t";
635     test_text = "typedef volatile int sig_atomic_t;";
636 };
637
638
639 /*
640  *  Fix __assert declaration in assert.h on Alpha OSF/1.
641  */
642 fix = {
643     hackname  = alpha___assert;
644     files     = "assert.h";
645     select    = '__assert\(char \*, char \*, int\)';
646     c_fix     = format;
647     c_fix_arg = "__assert(const char *, const char *, int)";
648     test_text = 'extern void __assert(char *, char *, int);';
649 };
650
651
652 /*
653  *  Obey __PRAGMA_EXTERN_PREFIX for Tru64 UNIX V4/5 headers.
654  */
655 fix = {
656     hackname  = alpha___extern_prefix;
657     select    = "(.*)(defined\\(__DECC\\)|def[ \t]*__DECC)[ \t]*\n(#[ \t]*pragma[ \t]*extern_prefix.*)";
658
659     mach      = "alpha*-dec-osf*";
660     c_fix     = format;
661     c_fix_arg = "%1 (defined(__DECC) || defined(__PRAGMA_EXTERN_PREFIX))\n%3";
662
663     test_text = "#ifdef  __DECC\n"
664                 "#pragma extern_prefix \"_P\"\n"
665                 "#   if defined(__DECC)\n"
666                 "#     pragma extern_prefix \"_E\"\n"
667                 "# if !defined(_LIBC_POLLUTION_H_) && defined(__DECC)\n"
668                 "#  pragma extern_prefix \"\"";
669 };
670
671
672 /*
673  *  Obey __PRAGMA_EXTERN_PREFIX for Tru64 UNIX V4/5 <standards.h>.
674  */
675 fix = {
676     hackname  = alpha___extern_prefix_standards;
677     files     = standards.h;
678     select    = ".*!defined\\(_LIBC_POLLUTION_H_\\) && !defined\\(__DECC\\)";
679
680     mach      = "alpha*-dec-osf*";
681     c_fix     = format;
682     c_fix_arg = "%0 && !defined(__PRAGMA_EXTERN_PREFIX)";
683
684     test_text = "#if (_ISO_C_SOURCE>=19990L) && !defined(_LIBC_POLLUTION_H_) && !defined(__DECC)";
685 };
686
687
688 /*
689  *  Obey __PRAGMA_EXTERN_PREFIX for Tru64 UNIX V5 <sys/mount.h> and
690  *  <sys/stat.h>.  The tests for __DECC are special in various ways, so
691  *  alpha__extern_prefix cannot be used.
692  */
693 fix = {
694     hackname  = alpha___extern_prefix_sys_stat;
695     files     = sys/stat.h;
696     files     = sys/mount.h;
697     select    = "#[ \t]*if[ \t]*defined\\(__DECC\\)";
698
699     mach      = "alpha*-dec-osf5*";
700     c_fix     = format;
701     c_fix_arg = "%0 || defined(__PRAGMA_EXTERN_PREFIX)";
702
703     test_text = "#   if defined(__DECC)";
704 };
705
706
707 /*
708  *  Fix assert macro in assert.h on Alpha OSF/1.
709  *  The superfluous int cast breaks C++.
710  */
711 fix = {
712     hackname  = alpha_assert;
713     files     = "assert.h";
714     select    = '(#define assert\(EX\).*)\(\(int\) \(EX\)\)';
715     c_fix     = format;
716     c_fix_arg = "%1(EX)";
717     test_text = '#define assert(EX) (((int) (EX)) ? (void)0 : __assert(#EX, __FILE__, __LINE__))';
718 };
719
720
721 /*
722  *  Fix #defines under Alpha OSF/1:
723  *  The following files contain '#pragma extern_prefix "_FOO"' followed by
724  *  a '#define something(x,y,z) _FOOsomething(x,y,z)'.  The intent of these
725  *  statements is to reduce namespace pollution.  While these macros work
726  *  properly in most cases, they don't allow you to take a pointer to the
727  *  "something" being modified.  To get around this limitation, change these
728  *  statements to be of the form '#define something _FOOsomething'.
729  *
730  *  sed ain't egrep, lesson 2463:  sed can use self-referential
731  *  regular expressions.  In the substitute expression below,
732  *  "\\1" and "\\2" refer to subexpressions found earlier in the
733  *  same match.  So, we continue to use sed.  "extern_prefix" will
734  *  be a rare match anyway...
735  */
736 fix = {
737     hackname = alpha_bad_lval;
738
739     select   = "^[ \t]*#[ \t]*pragma[ \t]+extern_prefix";
740     mach      = "alpha*-dec-osf*";
741
742     sed      =
743         "s/^[ \t]*#[ \t]*define[ \t][ \t]*\\([^(]*\\)\\(([^)]*)\\)[ \t]*"
744                "\\(_.*\\)\\1\\2[ \t]*$/#define \\1 \\3\\1/";
745
746     test_text = '#pragma extern_prefix "_FOO"'"\n"
747                 "#define something(x,y,z) _FOOsomething(x,y,z)\n"
748                 "#define mumble _FOOmumble";
749 };
750
751
752 /*
753  *  Fix getopt declarations in stdio.h and stdlib.h on Alpha OSF/1 and AIX.
754  */
755 fix = {
756     hackname  = alpha_getopt;
757     files     = "stdio.h";
758     files     = "stdlib.h";
759     select    = 'getopt\(int, char \*\[\], *char \*\)';
760     c_fix     = format;
761     c_fix_arg = "getopt(int, char *const[], const char *)";
762     test_text = 'extern int getopt(int, char *[], char *);';
763 };
764
765
766 /*
767  * Remove erroneous parentheses in sym.h on Alpha OSF/1.
768  */
769 fix = {
770     hackname  = alpha_parens;
771     files     = sym.h;
772     select    = '#ifndef\(__mips64\)';
773     c_fix     = format;
774     c_fix_arg = "#ifndef __mips64";
775     test_text = "#ifndef(__mips64) /* bogus */\nextern int foo;\n#endif";
776 };
777
778
779 /*
780  *  Obey __PRAGMA_EXTERN_PREFIX for Tru64 UNIX <pthread.h>.
781  */
782 fix = {
783     hackname  = alpha_pthread;
784     files     = pthread.h;
785     select    = "((#[ \t]*if)([ \t]*defined[ \t]*\\(_PTHREAD_ENV_DECC\\)|def _PTHREAD_ENV_DECC)(.*))\n"
786                 "(#[ \t]*define _PTHREAD_USE_PTDNAM_)";
787
788     mach      = "alpha*-dec-osf*";
789     c_fix     = format;
790     c_fix_arg = "%2 defined (_PTHREAD_ENV_DECC)%4 || defined (__PRAGMA_EXTERN_PREFIX)\n%5";
791
792     test_text = "#  if defined (_PTHREAD_ENV_DECC) || defined (_PTHREAD_ENV_EPCC)\n"
793                 "#   define _PTHREAD_USE_PTDNAM_\n"
794                 "#  endif\n"
795                 "#  ifdef _PTHREAD_ENV_DECC\n"
796                 "#   define _PTHREAD_USE_PTDNAM_\n"
797                 "#  endif";
798 };
799
800
801 /*
802  *  Recognize GCC in Tru64 UNIX V5.1B <pthread.h>.
803  */
804 fix = {
805     hackname  = alpha_pthread_gcc;
806     files     = pthread.h;
807     select    = "#else\n# error <pthread.h>: unrecognized compiler.";
808
809     mach      = "alpha*-dec-osf*";
810     c_fix     = format;
811     c_fix_arg = "#elif defined (__GNUC__)\n"
812                 "# define _PTHREAD_ENV_GCC\n"
813                 "%0";
814
815     test_text = "# define _PTHREAD_ENV_INTELC\n"
816                 "#else\n"
817                 "# error <pthread.h>: unrecognized compiler.\n"
818                 "#endif";
819 };
820
821 /*
822  * Compaq Tru64 v5.1 defines all of its PTHREAD_*_INITIALIZER macros
823  * incorrectly, specifying less fields in the initializers than are
824  * defined in the corresponding structure types.  Use of these macros
825  * in user code results in spurious warnings.
826  */
827 fix = {
828     hackname  = alpha_pthread_init;
829     files     = pthread.h;
830     select    = ' \* @\(#\).RCSfile: pthread\.h,v \$'
831                 ' .Revision: 1\.1\.33\.21 \$ \(DEC\)'
832                 ' .Date: 2000/08/15 15:30:13 \$';
833     mach      = "alpha*-dec-osf*";
834     sed       = "s@MVALID\\(.*\\)A}@MVALID\\1A, 0, 0, 0, 0, 0, 0 }@\n"
835                 "s@MVALID\\(.*\\)_}@MVALID\\1_, 0, 0, 0, 0 }@\n"
836                 "s@CVALID\\(.*\\)A}@CVALID\\1A, 0, 0, 0, 0 }@\n"
837                 "s@CVALID\\(.*\\)_}@CVALID\\1_, 0, 0 }@\n"
838                 "s@WVALID\\(.*\\)A}@WVALID\\1A, 0, 0, 0, 0, 0, 0, 0, 0, 0 }@\n"
839                 "s@WVALID\\(.*\\)_}@WVALID\\1_, 0, 0, 0, 0, 0, 0, 0 }@\n";
840     test_text = "/*\n"
841                 " * @(#)_RCSfile: pthread.h,v \\$ "
842                 "_Revision: 1.1.33.21 \\$ (DEC) "
843                 "_Date: 2000/08/15 15:30:13 \\$\n"
844                 " */\n"
845 "#ifndef _PTHREAD_NOMETER_STATIC\n"
846 "# define PTHREAD_MUTEX_INITIALIZER \\\n"
847 "    {_PTHREAD_MSTATE_CONFIG, _PTHREAD_MVALID | _PTHREAD_MVF_STA}\n"
848 "# define PTHREAD_COND_INITIALIZER \\\n"
849 "    {_PTHREAD_CSTATE_SLOW, _PTHREAD_CVALID | _PTHREAD_CVF_STA}\n"
850 "# define PTHREAD_MUTEX_INITWITHNAME_NP(_n_,_a_) \\\n"
851 "    {_PTHREAD_MSTATE_CONFIG, _PTHREAD_MVALID | _PTHREAD_MVF_STA, _n_, _a_}\n"
852 "# define PTHREAD_COND_INITWITHNAME_NP(_n_,_a_) \\\n"
853 "    {_PTHREAD_CSTATE_SLOW, _PTHREAD_CVALID | _PTHREAD_CVF_STA, _n_, _a_}\n"
854 "#else\n"
855 "# define PTHREAD_MUTEX_INITIALIZER {0, _PTHREAD_MVALID | _PTHREAD_MVF_STA}\n"
856 "# define PTHREAD_MUTEX_INITWITHNAME_NP(_n_,_a_) \\\n"
857 "    {0, _PTHREAD_MVALID | _PTHREAD_MVF_STA, _n_, _a_}\n"
858 "# define PTHREAD_COND_INITWITHNAME_NP(_n_,_a_) \\\n"
859 "    {0, _PTHREAD_CVALID | _PTHREAD_CVF_STA, _n_, _a_}\n"
860 "#endif\n\n"
861 "#define PTHREAD_RWLOCK_INITIALIZER {_PTHREAD_RWVALID | _PTHREAD_RWVF_STA}\n"
862 "#define PTHREAD_RWLOCK_INITWITHNAME_NP(_n_,_a_) \\\n"
863 "        {_PTHREAD_RWVALID | _PTHREAD_RWVF_STA, _n_, _a_}\n";
864 };
865
866 /*
867  *  Fix return value of sbrk in unistd.h on Alpha OSF/1 V2.0
868  *  And OpenBSD.
869  */
870 fix = {
871     hackname = alpha_sbrk;
872     files    = unistd.h;
873     select   = "char[ \t]*\\*[\t ]*sbrk[ \t]*\\(";
874     c_fix     = format;
875     c_fix_arg = "void *sbrk(";
876     test_text = "extern char* sbrk(ptrdiff_t increment);";
877 };
878
879
880 /*
881  *  Change external names of wcstok/wcsftime via asm instead of macros on
882  *  Tru64 UNIX V4.0.
883  */
884 fix = {
885     hackname = alpha_wchar;
886     files    = wchar.h;
887
888     mach     = "alpha*-dec-osf4*";
889     select   = "#define wcstok wcstok_r";
890     sed      = "s@#define wcstok wcstok_r@extern wchar_t *wcstok __((wchar_t *, const wchar_t *, wchar_t **)) __asm__(\"wcstok_r\");@";
891     sed      = "s@#define wcsftime __wcsftime_isoc@extern size_t   wcsftime __((wchar_t *, size_t, const wchar_t *, const struct tm *)) __asm__(\"__wcsftime_isoc\");@";
892     test_text = "#define wcstok wcstok_r\n"
893                 "#define wcsftime __wcsftime_isoc";
894 };
895
896
897 /*
898  *  For C++, avoid any typedef or macro definition of bool,
899  *  and use the built in type instead.
900  *  HP/UX 10.20 also has it in curses_colr/curses.h.
901  */
902 fix = {
903     hackname  = avoid_bool_define;
904     files     = curses.h;
905     files     = curses_colr/curses.h;
906     files     = term.h;
907     files     = tinfo.h;
908
909     select    = "#[ \t]*define[ \t]+bool[ \t]";
910     bypass    = "__cplusplus";
911
912     c_fix     = format;
913     c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
914     c_fix_arg = "^[ \t]*#[ \t]*define[ \t]+bool[ \t].*";
915
916     test_text = "# define bool\t char \n";
917 };
918
919
920 fix = {
921     hackname = avoid_bool_type;
922     files    = curses.h;
923     files    = curses_colr/curses.h;
924     files    = term.h;
925     files    = tinfo.h;
926
927     select    = "^[ \t]*typedef[ \t].*[ \t]bool[ \t]*;";
928     bypass    = "__cplusplus";
929
930     c_fix     = format;
931     c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
932
933     test_text = "typedef unsigned int\tbool \t; /* bool\n type */";
934 };
935
936
937 /*
938  *  For C++, avoid any typedef definition of wchar_t,
939  *  and use the built in type instead.
940  *  Don't do this for headers that are smart enough to do the right
941  *  thing (recent [n]curses.h and Xlib.h).
942  *  Don't do it for <linux/nls.h> which is never used from C++ anyway,
943  *  and will be broken by the edit.
944  */
945
946 fix = {
947     hackname = avoid_wchar_t_type;
948
949     select    = "^[ \t]*typedef[ \t].*[ \t]wchar_t[ \t]*;";
950     bypass    = "__cplusplus";
951     bypass    = "_LINUX_NLS_H";
952     bypass    = "XFree86: xc/lib/X11/Xlib\\.h";
953
954     c_fix     = format;
955     c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
956
957     test_text = "typedef unsigned short\twchar_t \t; /* wchar_t\n type */";
958 };
959
960
961 /*
962  *  Fix `typedef struct term;' on hppa1.1-hp-hpux9.
963  */
964 fix = {
965     hackname  = bad_struct_term;
966     files     = curses.h;
967     select    = "^[ \t]*typedef[ \t]+struct[ \t]+term[ \t]*;";
968     c_fix     = format;
969     c_fix_arg = "struct term;";
970
971     test_text = 'typedef struct term;';
972 };
973
974
975 /*
976  *  Fix one other error in this file:
977  *  a mismatched quote not inside a C comment.
978  */
979 fix = {
980     hackname  = badquote;
981     files     = sundev/vuid_event.h;
982     select    = "doesn't";
983     c_fix     = format;
984     c_fix_arg = "does not";
985
986     test_text = "/* doesn't have matched single quotes */";
987 };
988
989
990 /*
991  *  check for broken assert.h that needs stdio.h
992  */
993 fix = {
994     hackname  = broken_assert_stdio;
995     files     = assert.h;
996     select    = stderr;
997     bypass    = "include.*stdio\\.h";
998     c_fix     = wrap;
999     c_fix_arg = "#include <stdio.h>\n";
1000     test_text = "extern FILE* stderr;";
1001 };
1002
1003
1004 /*
1005  *  check for broken assert.h that needs stdlib.h
1006  */
1007 fix = {
1008     hackname  = broken_assert_stdlib;
1009     files     = assert.h;
1010     select    = 'exit *\(|abort *\(';
1011     bypass    = "include.*stdlib\\.h";
1012     c_fix     = wrap;
1013     c_fix_arg = "#ifdef __cplusplus\n"
1014                 "#include <stdlib.h>\n"
1015                 "#endif\n";
1016     test_text = "extern void exit ( int );";
1017 };
1018
1019
1020 /*
1021  *  Remove `extern double cabs' declarations from math.h.
1022  *  This conflicts with C99.  Discovered on AIX.
1023  *  IRIX 5 and IRIX 6 before 6.5.18 (where C99 support was introduced)
1024  *  declares cabs() to take a struct __cabs_s argument.
1025  *  SunOS4 has its cabs() declaration followed by a comment which
1026  *  terminates on the following line.
1027  *  Darwin hides its broken cabs in architecture-specific subdirs.
1028  */
1029 fix = {
1030     hackname = broken_cabs;
1031     files    = "math.h";
1032     files    = "architecture/ppc/math.h";
1033     files    = "architecture/i386/math.h";
1034     select   = "^extern[ \t]+double[ \t]+cabs";
1035
1036     c_fix     = format;
1037     c_fix_arg = "";
1038     c_fix_arg = "^extern[ \t]+double[ \t]+cabs[ \t]*\\([^\\)]*\\);";
1039
1040     test_text = "#ifdef __STDC__\n"
1041                 "extern     double   cabs(struct dbl_hypot);\n"
1042                 "#else\n"
1043                 "extern     double   cabs();\n"
1044                 "#endif\n"
1045                 "extern double cabs ( _Complex z );\n"
1046                 "extern double cabs(); /* This is a comment\n"
1047                 "                         and it ends here. */\n"
1048                 "extern double  cabs(struct __cabs_s);";
1049 };
1050
1051 /*
1052  * Fixup Darwin's broken check for __builtin_nanf.
1053  */ 
1054     
1055 fix = {
1056     hackname  = broken_nan;
1057     files     = "architecture/ppc/math.h";
1058     files     = "architecture/i386/math.h";
1059     select    = "#if defined(__APPLE_CC__) && (__APPLE_CC__ >= 1345)";
1060     bypass    = "powl";
1061     c_fix     = format; 
1062     c_fix_arg = "#if 1";
1063     test_text = "#if defined(__APPLE_CC__) && (__APPLE_CC__ >= 1345)";
1064 }; 
1065
1066
1067 /*
1068  *  Various systems derived from BSD4.4 contain a macro definition
1069  *  for vfscanf that interacts badly with requirements of builtin-attrs.def.
1070  *  Known to be fixed in FreeBSD 5 system headers.
1071  */
1072 fix = {
1073     hackname  = bsd_stdio_attrs_conflict;
1074     mach      = *-*-*bsd*;
1075     mach      = *-*-*darwin*;
1076     files     = stdio.h;
1077     select    = "^#define[ \t]*vfscanf[ \t]*__svfscanf[ \t]*$";
1078     c_fix     = format;
1079     c_fix_arg = '#define _BSD_STRING(_BSD_X) _BSD_STRINGX(_BSD_X)' "\n"
1080                 '#define _BSD_STRINGX(_BSD_X) #_BSD_X' "\n"
1081                 'int vfscanf(FILE *, const char *, __builtin_va_list) '
1082                 '__asm__ (_BSD_STRING(__USER_LABEL_PREFIX__) "__svfscanf");';
1083     test_text = '#define  vfscanf       __svfscanf';
1084 };
1085
1086
1087 /*
1088  *  Fix various macros used to define ioctl numbers.
1089  *  The traditional syntax was:
1090  *
1091  *    #define _CTRL(n, x) (('n'<<8)+x)
1092  *    #define TCTRLCFOO _CTRL(T, 1)
1093  *
1094  *  but this does not work with the C standard, which disallows macro
1095  *  expansion inside strings.  We have to rewrite it thus:
1096  *
1097  *    #define _CTRL(n, x) ((n<<8)+x)
1098  *    #define TCTRLCFOO  _CTRL('T', 1)
1099  *
1100  *  The select expressions match too much, but the c_fix code is cautious.
1101  *
1102  *  CTRL might be: CTRL _CTRL ISCTRL BSD43_CTRL ...
1103  */
1104 fix = {
1105     hackname  = ctrl_quotes_def;
1106     select    = "define[ \t]+[A-Z0-9_]+CTRL\\([a-zA-Z][,)]";
1107     c_fix     = char_macro_def;
1108     c_fix_arg = "CTRL";
1109
1110     /*
1111      *  This is two tests in order to ensure that the "CTRL(c)" can
1112      *  be selected in isolation from the multi-arg format
1113      */
1114     test_text = "#define BSD43_CTRL(n, x) (('n'<<8)+x)\n";
1115     test_text = "#define _CTRL(c) ('c'&037)";
1116 };
1117
1118 fix = {
1119     hackname  = ctrl_quotes_use;
1120     select    = "define[ \t]+[A-Z0-9_]+[ \t]+[A-Z0-9_]+CTRL[ \t]*\\( *[^,']";
1121     c_fix     = char_macro_use;
1122     c_fix_arg = "CTRL";
1123     test_text = "#define TCTRLFOO BSD43_CTRL(T, 1)";
1124 };
1125
1126
1127 /*
1128  *  sys/mman.h on HP/UX is not C++ ready,
1129  *  even though NO_IMPLICIT_EXTERN_C is defined on HP/UX.
1130  *
1131  *  rpc/types.h on OSF1/2.0 is not C++ ready,
1132  *  even though NO_IMPLICIT_EXTERN_C is defined for the alpha.
1133  *
1134  *  The problem is the declaration of malloc.
1135  */
1136 fix = {
1137     hackname = cxx_unready;
1138     files    = sys/mman.h;
1139     files    = rpc/types.h;
1140     select   = '[^#]+malloc.*;';  /* Catch any form of declaration
1141                                      not within a macro.  */
1142     bypass   = '"C"|__BEGIN_DECLS';
1143
1144     c_fix     = wrap;
1145     c_fix_arg = "#ifdef __cplusplus\n"
1146                 "extern \"C\" {\n"
1147                 "#endif\n";
1148     c_fix_arg = "#ifdef __cplusplus\n"
1149                 "}\n"
1150                 "#endif\n";
1151     test_text = "extern void* malloc( size_t );";
1152 };
1153
1154
1155 /*
1156  * AvailabilityMacros.h on Darwin breaks with GCC 4.0, because of
1157  * bad __GNUC__ tests.
1158  */
1159
1160 fix = {
1161   hackname  = darwin_gcc4_breakage;
1162   mach      = "*-*-darwin*";
1163   files     = AvailabilityMacros.h;
1164   select    = "\\(__GNUC__ >= 3\\) && \\(__GNUC_MINOR__ >= 1\\)";
1165   c_fix     = format;
1166   c_fix_arg = "((__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1))";
1167   test_text = "#if defined(__GNUC__) && (__GNUC__ >= 3) && "
1168               "(__GNUC_MINOR__ >= 1)\n";
1169 };
1170
1171
1172 /*
1173  *  __private_extern__ doesn't exist in FSF GCC.  Even if it did,
1174  *  why would you ever put it in a system header file?
1175  */
1176 fix = {
1177   hackname  = darwin_private_extern;
1178   mach      = "*-*-darwin*";
1179   files     = mach-o/dyld.h;
1180   select    = "__private_extern__ [a-z_]+ _dyld_";
1181   c_fix     = format;
1182   c_fix_arg = "extern";
1183   c_fix_arg = "__private_extern__";
1184   test_text = "__private_extern__ int _dyld_func_lookup(\n"
1185               "const char *dyld_func_name,\n"
1186               "unsigned long *address);\n";
1187 };
1188
1189
1190 /*
1191  *  Fix <c_asm.h> on Digital UNIX V4.0:
1192  *  It contains a prototype for a DEC C internal asm() function,
1193  *  clashing with gcc's asm keyword.  So protect this with __DECC.
1194  */
1195 fix = {
1196     hackname = dec_intern_asm;
1197     files    = c_asm.h;
1198     sed = "/^[ \t]*float[ \t]*fasm/i\\\n#ifdef __DECC\n";
1199     sed = "/^[ \t]*#[ \t]*pragma[ \t]*intrinsic([ \t]*dasm/a\\\n"
1200           "#endif\n";
1201     test_text =
1202     "float fasm {\n"
1203     "    ... asm stuff ...\n"
1204     "};\n#pragma intrinsic( dasm )\n/* END ASM TEST*/";
1205 };
1206
1207
1208 /*
1209  * Fix typo in <wchar.h> on DJGPP 2.03.
1210  */
1211 fix = {
1212     hackname  = djgpp_wchar_h;
1213     file      = wchar.h;
1214     select    = "__DJ_wint_t";
1215     bypass    = "sys/djtypes.h";
1216     c_fix     = format;
1217     c_fix_arg = "%0\n#include <sys/djtypes.h>";
1218     c_fix_arg = "#include <stddef.h>";
1219     test_text = "#include <stddef.h>\n"
1220                 "extern __DJ_wint_t x;\n";
1221 };
1222
1223
1224 /*
1225  * Fix these Sun OS files to avoid an invalid identifier in an #ifdef.
1226  */
1227 fix = {
1228     hackname  = ecd_cursor;
1229     files     = "sunwindow/win_lock.h";
1230     files     = "sunwindow/win_cursor.h";
1231     select    = 'ecd\.cursor';
1232     c_fix     = format;
1233     c_fix_arg = 'ecd_cursor';
1234
1235     test_text = "#ifdef ecd.cursor\n#error bogus\n#endif /* ecd+cursor */";
1236 };
1237
1238
1239 /*
1240  *  math.h on SunOS 4 puts the declaration of matherr before the definition
1241  *  of struct exception, so the prototype (added by fixproto) causes havoc.
1242  *  This must appear before the math_exception fix.
1243  */
1244 fix = {
1245     hackname  = exception_structure;
1246     files     = math.h;
1247
1248     /*  If matherr has a prototype already, the header needs no fix.  */
1249     bypass    = 'matherr.*(struct exception|__MATH_EXCEPTION|[ \t]*__FP_EXCEPTION[ \t]*\*[ \t]*)';
1250     select    = matherr;
1251
1252     c_fix     = wrap;
1253     c_fix_arg = "struct exception;\n";
1254
1255     test_text = "extern int matherr();";
1256 };
1257
1258
1259 /*
1260  *  Between 8/24/1998 and 2/17/2001, FreeBSD system headers presume
1261  *  neither the existence of GCC 3 nor its exact feature set yet break
1262  *  (by design?) when __GNUC__ is set beyond 2.
1263  */
1264 fix = {
1265     hackname  = freebsd_gcc3_breakage;
1266     mach      = *-*-freebsd*;
1267     files     = sys/cdefs.h;
1268     select    = '^#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7$';
1269     bypass    = '__GNUC__[ \t]*([>=]=[ \t]*[3-9]|>[ \t]*2)';
1270     c_fix     = format;
1271     c_fix_arg = '%0 || __GNUC__ >= 3';
1272     test_text = '#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7';
1273 };
1274
1275
1276 /*
1277  *  Some releases of FreeBSD 4 and FreeBSD 5.0 and 5.1 system headers presume
1278  *  neither the existence of GCC 4 nor its exact feature set yet break
1279  *  (by design?) when __GNUC__ is set beyond 3.
1280  */
1281 fix = {
1282     hackname  = freebsd_gcc4_breakage;
1283     mach      = *-*-freebsd*; 
1284     files     = sys/cdefs.h;
1285     select    = '^#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7 \|\| __GNUC__ == 3$';
1286     c_fix     = format;
1287     c_fix_arg = '#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7 || __GNUC__ >= 3';
1288     test_text = '#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7 || __GNUC__ == 3';
1289 };
1290
1291
1292 /*  glibc-2.3.5 defines pthread mutex initializers incorrectly,
1293  *  so we replace them with versions that correspond to the
1294  *  definition.
1295  */
1296 fix = {
1297     hackname = glibc_mutex_init;
1298     files    = pthread.h;
1299     select   = '\{ *\{ *0, *\} *\}';
1300     sed      = "/define[ \t]\\+PTHREAD_MUTEX_INITIALIZER[ \t]*\\\\/,+1"
1301                "s/{ { 0, } }/{ { 0, 0, 0, 0, 0, 0 } }/";
1302     sed      = "s/{ \\(0, 0, 0, 0, PTHREAD_MUTEX_\\(RECURSIVE\\|ERRORCHECK\\|ADAPTIVE\\)_NP\\) }/{ \\1, 0 }/";
1303     sed      = "s/{ \\(0, 0, 0, PTHREAD_MUTEX_\\(RECURSIVE\\|ERRORCHECK\\|ADAPTIVE\\)_NP\\) }/{ \\1, 0, 0 }/";
1304     sed      = "/define[ \t]\\+PTHREAD_RWLOCK_INITIALIZER[ \t]*\\\\/"
1305                "N;s/^[ \t]*#[ \t]*"
1306                "\\(define[ \t]\\+PTHREAD_RWLOCK_INITIALIZER[ \t]*\\\\\\)\\n"
1307                "[ \t]*{ { 0, } }/# if __WORDSIZE == 64\\n"
1308                "#  \\1\\n"
1309                "  { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } }\\n"
1310                "# else\\n"
1311                "#  \\1\\n"
1312                "  { { 0, 0, 0, 0, 0, 0, 0, 0 } }\\n"
1313                "# endif/";
1314     sed      = "s/{ \\(0, 0, 0, 0, 0, 0, PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP\\) }/{ \\1, 0 }/";
1315     sed      = "/define[ \t]\\+PTHREAD_COND_INITIALIZER/"
1316                "s/{ { 0, } }/{ { 0, 0, 0, 0, 0, (void *) 0, 0, 0 } }/";
1317
1318     test_text = <<- _EOText_
1319 #define PTHREAD_MUTEX_INITIALIZER \\
1320   { { 0, } }
1321 #ifdef __USE_GNU
1322 # if __WORDSIZE == 64
1323 #  define PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP \\
1324   { { 0, 0, 0, 0, PTHREAD_MUTEX_RECURSIVE_NP } }
1325 #  define PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP \\
1326   { { 0, 0, 0, 0, PTHREAD_MUTEX_ERRORCHECK_NP } }
1327 #  define PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP \\
1328   { { 0, 0, 0, 0, PTHREAD_MUTEX_ADAPTIVE_NP } }
1329 # else
1330 #  define PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP \\
1331   { { 0, 0, 0, PTHREAD_MUTEX_RECURSIVE_NP } }
1332 #  define PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP \\
1333   { { 0, 0, 0, PTHREAD_MUTEX_ERRORCHECK_NP } }
1334 #  define PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP \\
1335   { { 0, 0, 0, PTHREAD_MUTEX_ADAPTIVE_NP } }
1336 # endif
1337 #endif
1338 # define PTHREAD_RWLOCK_INITIALIZER \\
1339   { { 0, } }
1340 # ifdef __USE_GNU
1341 #  if __WORDSIZE == 64
1342 #   define PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP \\
1343   { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,                                           \\
1344       PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP } }
1345 #  else
1346 #   define PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP \\
1347   { { 0, 0, 0, 0, 0, 0, PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP } }
1348 #  endif
1349 # endif
1350 #define PTHREAD_COND_INITIALIZER { { 0, } }
1351 _EOText_;
1352 };
1353
1354
1355 /*
1356  * Fix these files to use the types we think they should for
1357  * ptrdiff_t, size_t, and wchar_t.
1358  *
1359  * This defines the types in terms of macros predefined by our 'cpp'.
1360  * This is supposedly necessary for glibc's handling of these types.
1361  * It's probably not necessary for anyone else, but it doesn't hurt.
1362  */
1363 fix = {
1364     hackname  = gnu_types;
1365     files  = "sys/types.h";
1366     files  = "stdlib.h";
1367     files  = "sys/stdtypes.h";
1368     files  = "stddef.h";
1369     files  = "memory.h";
1370     files  = "unistd.h";
1371     bypass    = '_GCC_(PTRDIFF|SIZE|WCHAR)_T';
1372     select    = "^[ \t]*typedef[ \t]+.*[ \t](ptrdiff|size|wchar)_t;";
1373     c_fix     = gnu_type;
1374     /* The Solaris 10 headers already define these types correctly.  */
1375     mach   = '*-*-solaris2.1[0-9]*';
1376     not_machine = true;
1377
1378     test_text = "typedef long int ptrdiff_t; /* long int */\n"
1379                 "typedef uint_t size_t; /* uint_t */\n"
1380                 "typedef ushort_t wchar_t; /* ushort_t */";
1381 };
1382
1383
1384 /*
1385  *  Fix HP & Sony's use of "../machine/xxx.h"
1386  *  to refer to:  <machine/xxx.h>
1387  */
1388 fix = {
1389     hackname  = hp_inline;
1390     files     = sys/spinlock.h;
1391     files     = machine/machparam.h;
1392     select    = "[ \t]*#[ \t]*include[ \t]+"  '"\.\./machine/';
1393
1394     c_fix     = format;
1395     c_fix_arg = "%1<machine/%2.h>";
1396
1397     c_fix_arg = "([ \t]*#[ \t]*include[ \t]+)"  '"\.\./machine/'
1398                 '([a-z]+)\.h"';
1399
1400     test_text = ' # include "../machine/mumble.h"';
1401 };
1402
1403
1404 /*
1405  *  Check for (...) in C++ code in HP/UX sys/file.h.
1406  */
1407 fix = {
1408     hackname  = hp_sysfile;
1409     files     = sys/file.h;
1410     select    = "HPUX_SOURCE";
1411
1412     c_fix     = format;
1413     c_fix_arg = "(struct file *, ...)";
1414     c_fix_arg = '\(\.\.\.\)';
1415
1416     test_text = "extern void foo(...); /* HPUX_SOURCE - bad varargs */";
1417 };
1418
1419
1420 /*
1421  * Delete C++ double pow (double, int) inline function from HP-UX 10 & 11
1422  * math.h to prevent clash with define in c_std/bits/std_cmath.h.
1423  */
1424 fix = {
1425     hackname  = hpux10_cpp_pow_inline;
1426     files     = fixinc-test-limits.h, math.h;
1427     select    = <<-     END_POW_INLINE
1428         ^# +ifdef +__cplusplus
1429          +\}
1430          +inline +double +pow\(double +__d,int +__expon\) +\{
1431         [       ]+return +pow\(__d,\(double\)__expon\);
1432          +\}
1433          +extern +"C" +\{
1434         #else
1435         # +endif
1436         END_POW_INLINE;
1437  
1438     c_fix     = format;
1439     c_fix_arg = "";
1440
1441     test_text =
1442         "#    ifdef __cplusplus\n"
1443         "     }\n"
1444         "     inline double pow(double __d,int __expon) {\n"
1445         "\t return pow(__d,(double)__expon);\n"
1446         "     }\n"
1447         '     extern "C"' " {\n"
1448         "#else\n"
1449         "#    endif";
1450 };
1451
1452 fix = {
1453      hackname  = hpux11_cpp_pow_inline;
1454      files     = math.h;
1455      select    = " +inline double pow\\(double d,int expon\\) \\{\n"
1456                  " +return pow\\(d, \\(double\\)expon\\);\n"
1457                  " +\\}\n";
1458      c_fix     = format;
1459      c_fix_arg = "";
1460
1461      test_text =
1462             "   inline double pow(double d,int expon) {\n"
1463             "     return pow(d, (double)expon);\n"
1464             "   }\n";
1465 };
1466
1467
1468 /*
1469  *  Fix hpux 10.X missing ctype declarations 1
1470  */
1471 fix = {
1472     hackname = hpux10_ctype_declarations1;
1473     files    = ctype.h;
1474     select   = "^#[ \t]*define _toupper\\(__c\\)[ \t]*__toupper\\(__c\\)";
1475     bypass   = "^[ \t]*extern[ \t]*int[ \t]*__tolower[ \t]*\\(";
1476     c_fix     = format;
1477     c_fix_arg = "#ifdef _PROTOTYPES\n"
1478                 "extern int __tolower(int);\n"
1479                 "extern int __toupper(int);\n"
1480                 "#else /* NOT _PROTOTYPES */\n"
1481                 "extern int __tolower();\n"
1482                 "extern int __toupper();\n"
1483                 "#endif /* _PROTOTYPES */\n\n"
1484                 "%0\n";
1485
1486     test_text = "#  define _toupper(__c)         __toupper(__c)\n";
1487 };
1488
1489
1490 /*
1491  *  Fix hpux 10.X missing ctype declarations 2
1492  */
1493 fix = {
1494     hackname = hpux10_ctype_declarations2;
1495     files    = ctype.h;
1496     select   = "^#  if defined\\(_SB_CTYPE_MACROS\\) && \\!defined\\(__lint\\)";
1497     bypass   = "^[ \t]*extern[ \t]*int[ \t]*_isalnum[ \t]*\\(";
1498     c_fix     = format;
1499     c_fix_arg = "%0\n\n"
1500                 "#ifdef _PROTOTYPES\n"
1501                 "     extern int _isalnum(int);\n"
1502                 "     extern int _isalpha(int);\n"
1503                 "     extern int _iscntrl(int);\n"
1504                 "     extern int _isdigit(int);\n"
1505                 "     extern int _isgraph(int);\n"
1506                 "     extern int _islower(int);\n"
1507                 "     extern int _isprint(int);\n"
1508                 "     extern int _ispunct(int);\n"
1509                 "     extern int _isspace(int);\n"
1510                 "     extern int _isupper(int);\n"
1511                 "     extern int _isxdigit(int);\n"
1512                 "#  else /* not _PROTOTYPES */\n"
1513                 "     extern int _isalnum();\n"
1514                 "     extern int _isalpha();\n"
1515                 "     extern int _iscntrl();\n"
1516                 "     extern int _isdigit();\n"
1517                 "     extern int _isgraph();\n"
1518                 "     extern int _islower();\n"
1519                 "     extern int _isprint();\n"
1520                 "     extern int _ispunct();\n"
1521                 "     extern int _isspace();\n"
1522                 "     extern int _isupper();\n"
1523                 "     extern int _isxdigit();\n"
1524                 "#endif /* _PROTOTYPES */\n";
1525
1526     test_text = "#  if defined(_SB_CTYPE_MACROS) && !defined(__lint)\n"
1527                 "     extern unsigned int *__SB_masks;\n";
1528 };
1529
1530
1531 /*
1532  *  Fix hpux 10.X missing stdio declarations
1533  */
1534 fix = {
1535     hackname = hpux10_stdio_declarations;
1536     files    = stdio.h;
1537     select   = "^#[ \t]*define _iob[ \t]*__iob";
1538     bypass   = "^[ \t]*extern[ \t]*int[ \t]*vsnprintf[ \t]*\\(";
1539     c_fix     = format;
1540     c_fix_arg = "%0\n\n"
1541         "#  if defined(__STDC__) || defined(__cplusplus)\n"
1542         "     extern int snprintf(char *, size_t, const char *, ...);\n"
1543         "     extern int vsnprintf(char *, size_t, const char *, __va_list);\n"
1544         "#  else /* not __STDC__) || __cplusplus */\n"
1545         "     extern int snprintf();\n"
1546         "     extern int vsnprintf();\n"
1547         "#  endif /* __STDC__) || __cplusplus */\n";
1548
1549     test_text = "#  define _iob __iob\n";
1550 };
1551
1552
1553 /*
1554  *  Make sure hpux defines abs in header.
1555  */
1556 fix = {
1557     hackname  = hpux11_abs;
1558     mach      = ia64-hp-hpux11*;
1559     files     = stdlib.h;
1560     select    = "ifndef _MATH_INCLUDED";
1561     c_fix     = format;
1562     c_fix_arg = "if !defined(_MATH_INCLUDED) || defined(__GNUG__)";
1563 //  sed       = "s/ifndef _MATH_INCLUDED/if !defined(_MATH_INCLUDED) || defined(__GNUG__)/";
1564     test_text = "#ifndef _MATH_INCLUDED";
1565 };
1566
1567
1568 /*
1569  *  Keep HP-UX 11 from stomping on C++ math namespace
1570  *  with defines for fabsf.
1571  */
1572 fix = {
1573     hackname  = hpux11_fabsf;
1574     files     = math.h;
1575     select    = "^[ \t]*#[ \t]*define[ \t]+fabsf\\(.*";
1576     bypass    = "__cplusplus";
1577
1578     c_fix     = format;
1579     c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
1580
1581     test_text =
1582     "#ifdef _PA_RISC\n"
1583     "#  define fabsf(x) ((float)fabs((double)(float)(x)))\n"
1584     "#endif";
1585 };
1586
1587
1588 /*
1589  * Prevent HP-UX 11 from defining __size_t and preventing size_t from
1590  * being defined by having it define _hpux_size_t instead.
1591  */
1592 fix = {
1593     hackname  = hpux11_size_t;
1594     mach      = "*-hp-hpux11*";
1595     select    = "__size_t";
1596
1597     c_fix     = format;
1598     c_fix_arg = "_hpux_size_t";
1599
1600     test_text =
1601     "#define __size_t size_t\n"
1602     "       extern int getpwuid_r( char *, __size_t, struct passwd **);\n";
1603 };
1604
1605
1606 /*
1607  *  Fix hpux 11.00 broken snprintf declaration
1608  *  (third argument is char *, needs to be const char * to prevent
1609  *  spurious warnings with -Wwrite-strings or in C++).
1610  */
1611 fix = {
1612     hackname = hpux11_snprintf;
1613     files    = stdio.h;
1614     select   = '(extern int snprintf *\(char *\*, *(|__|_hpux_)size_t,)'
1615                                     ' *(char *\*, *\.\.\.\);)';
1616     c_fix     = format;
1617     c_fix_arg = '%1 const %3';
1618
1619     test_text = "extern int snprintf(char *, size_t, char *, ...);\n"
1620                 "extern int snprintf(char *, __size_t, char *, ...);\n"
1621                 "extern int snprintf(char *, _hpux_size_t, char *, ...);";
1622 };
1623
1624
1625 /*
1626  * In inttypes.h on HPUX 11, the use of __CONCAT__ in the definition
1627  * of UINT32_C has undefined behavior according to ISO/ANSI:
1628  * the arguments to __CONCAT__ are not macro expanded before the
1629  * concatination happens so the trailing ')' in the first argument
1630  * is concatinated with the 'l' in the second argument creating an
1631  * invalid pp token.  The behavior of invalid pp tokens is undefined.
1632  * GCC does not handle these invalid tokens the way the HP compiler does.
1633  * This problem will potentially occur anytime macros are used in the
1634  * arguments to __CONCAT__.  A general solution to this problem would be to
1635  * insert another layer of macro between __CONCAT__ and its use
1636  * in UINT32_C.  An example of this solution can be found in the C standard.
1637  * A more specific solution, the one used here, is to change the UINT32_C
1638  * macro to not used macros in the arguments to __CONCAT__.
1639  */
1640 fix = {
1641     hackname = hpux11_uint32_c;
1642     files    = inttypes.h;
1643     select   = "^#define UINT32_C\\(__c\\)[ \t]*"
1644                          "__CONCAT__\\(__CONCAT_U__\\(__c\\),l\\)";
1645     c_fix    = format;
1646     c_fix_arg = '#define UINT32_C(__c) __CONCAT__(__c,ul)';
1647     test_text =
1648     "#define CONCAT_U__(__c)\t__CONCAT__(__c,u)\n"
1649     "#define UINT32_C(__c)\t__CONCAT__(__CONCAT_U__(__c),l)";
1650 };
1651
1652
1653 /*
1654  *  Fix hpux 11.00 broken vsnprintf declaration
1655  */
1656 fix = {
1657     hackname = hpux11_vsnprintf;
1658     files    = stdio.h;
1659     select   = '(extern int vsnprintf\(char \*, _[hpux]*_size_t, '
1660                                      'const char \*,) __va__list\);';
1661     c_fix     = format;
1662     c_fix_arg = "%1 __va_list);";
1663
1664     test_text = 'extern int vsnprintf(char *, _hpux_size_t, const char *,'
1665                                      ' __va__list);';
1666 };
1667
1668
1669 /*
1670  *  get rid of bogus inline definitions in HP-UX 8.0
1671  */
1672 fix = {
1673     hackname = hpux8_bogus_inlines;
1674     files    = math.h;
1675     select   = inline;
1676     bypass   = "__GNUG__";
1677     sed = "s@inline int abs(int [a-z][a-z]*) {.*}"
1678            "@extern \"C\" int abs(int);@";
1679     sed = "s@inline double abs(double [a-z][a-z]*) {.*}@@";
1680     sed = "s@inline int sqr(int [a-z][a-z]*) {.*}@@";
1681     sed = "s@inline double sqr(double [a-z][a-z]*) {.*}@@";
1682     test_text = "inline int abs(int v) { return (v>=0)?v:-v; }\n"
1683                 "inline double sqr(double v) { return v**0.5; }";
1684 };
1685
1686
1687 /*
1688  *  Fix hpux broken ctype macros
1689  */
1690 fix = {
1691     hackname = hpux_ctype_macros;
1692     files    = ctype.h;
1693     select   = '((: |\()__SB_masks \? )'
1694                '(__SB_masks\[__(alnum|c)\] & _IS)';
1695     c_fix     = format;
1696     c_fix_arg = "%1(int)%3";
1697
1698     test_text = ": __SB_masks ? __SB_masks[__alnum] & _ISCNTRL\n"
1699                 "# define isalpha(__c) (__SB_masks ? __SB_masks[__c] & _IS\n";
1700 };
1701
1702
1703 /*
1704  *  Fix hpux broken #ifndef _XOPEN_SOURCE_EXTENDED conditional on htonl etc.
1705  */
1706 fix = {
1707     hackname = hpux_htonl;
1708     files    = netinet/in.h;
1709     select   = "#ifndef _XOPEN_SOURCE_EXTENDED\n"
1710                "(/\\*\n"
1711                " \\* Macros for number representation conversion\\.\n"
1712                " \\*/\n"
1713                "#ifndef ntohl)";
1714     c_fix     = format;
1715     c_fix_arg = "#if 1\n%1";
1716
1717     test_text = "#ifndef _XOPEN_SOURCE_EXTENDED\n"
1718                 "/*\n"
1719                 " * Macros for number representation conversion.\n"
1720                 " */\n"
1721                 "#ifndef ntohl\n"
1722                 "#define ntohl(x)        (x)\n"
1723                 "#define ntohs(x)        (x)\n"
1724                 "#define htonl(x)        (x)\n"
1725                 "#define htons(x)        (x)\n"
1726                 "#endif\n"
1727                 "#endif  /* ! _XOPEN_SOURCE_EXTENDED */";
1728 };
1729
1730
1731 /*
1732  * HP-UX long_double
1733  */
1734 fix = {
1735     hackname  = hpux_long_double;
1736     files     = stdlib.h;
1737     select    = "extern[ \t]long_double[ \t]strtold";
1738     bypass    = "long_double_t";
1739     sed       = "/^#[ \t]*ifndef _LONG_DOUBLE/,/\\/\\* _LONG_DOUBLE \\*\\//D";
1740     sed       = "s/long_double/long double/g";
1741
1742     test_text = "#  ifndef _LONG_DOUBLE\n"
1743                 "#    define _LONG_DOUBLE\n"
1744                 "     typedef struct {\n"
1745                 "       unsigned int word1, word2, word3, word4;\n"
1746                 "     } long_double;\n"
1747                 "#  endif /* _LONG_DOUBLE */\n"
1748                 "extern long_double strtold(const char *, char **);\n";
1749 };
1750
1751
1752 /*
1753  *  Fix hpux10.20 <sys/time.h> to avoid invalid forward decl
1754  */
1755 fix = {
1756     hackname = hpux_systime;
1757     files    = sys/time.h;
1758     select   = "^extern struct sigevent;";
1759
1760     c_fix     = format;
1761     c_fix_arg = "struct sigevent;";
1762
1763     test_text = 'extern struct sigevent;';
1764 };
1765
1766
1767 /*
1768  *  Wrap spu_info in ifdef _KERNEL.  GCC cannot handle an array of unknown
1769  *  type and mpinfou is only defined when _KERNEL is set.
1770  */
1771 fix = {
1772     hackname = hpux_spu_info;
1773     mach     = "*-hp-hpux*";
1774     files    = ia64/sys/getppdp.h;
1775     select   = "^.*extern.*spu_info.*";
1776
1777     c_fix     = format;
1778     c_fix_arg = "#ifdef _KERNEL\n%0\n#endif";
1779
1780     test_text = "extern union mpinfou spu_info[];";
1781 };
1782
1783 fix = {
1784     hackname  = hpux11_extern_sendfile;
1785     mach      = "*-hp-hpux11.[12]*";
1786     files     = sys/socket.h;
1787     select    = "^[ \t]*extern sbsize_t sendfile.*\n.*, int\\)\\);\n";
1788     c_fix     = format;
1789     c_fix_arg = "#ifndef _APP32_64BIT_OFF_T\n%0#endif\n";
1790     test_text = "   extern sbsize_t sendfile __((int, int, off_t, bsize_t,\n                               const struct iovec *, int));\n";
1791 };
1792
1793 fix = {
1794     hackname  = hpux11_extern_sendpath;
1795     mach      = "*-hp-hpux11.[12]*";
1796     files     = sys/socket.h;
1797     select    = "^[ \t]*extern sbsize_t sendpath.*\n.*, int\\)\\);\n";
1798     c_fix     = format;
1799     c_fix_arg = "#ifndef _APP32_64BIT_OFF_T\n%0#endif\n";
1800     test_text = "   extern sbsize_t sendpath __((int, int, off_t, bsize_t,\n                               const struct iovec *, int));\n";
1801 };
1802
1803 fix = {
1804     hackname  = hpux_extern_errno;
1805     mach      = "*-hp-hpux10.*";
1806     mach      = "*-hp-hpux11.[0-2]*";
1807     files     = errno.h;
1808     select    = "^[ \t]*extern int errno;$";
1809     c_fix     = format;
1810     c_fix_arg = "#ifdef __cplusplus\nextern \"C\" {\n#endif\n%0\n#ifdef __cplusplus\n}\n#endif";
1811     test_text = "   extern int errno;\n";
1812 };
1813
1814 /*
1815  *  Add missing braces to pthread initializer defines.
1816  */
1817 fix = {
1818     hackname  = hpux_pthread_initializers;
1819     mach      = "*-hp-hpux11.[0-3]*";
1820     files     = sys/pthread.h;
1821     sed       = "s@^[ \t]*1, 1, 1, 1,[ \t]*\\\\"
1822                  "@\t{ 1, 1, 1, 1 },\t\t\t\t\t\t\t\\\\@";
1823     sed       = "s@^[ \t]*1,[ \t]*\\\\"
1824                  "@\t{ 1, 0 }@";
1825     sed       = "/^[ \t]*0$/d";
1826     sed       = "s@__PTHREAD_MUTEX_VALID, 0"
1827                  "@{ __PTHREAD_MUTEX_VALID, 0 }@";
1828     sed       = "s@^[ \t]*0, 0, -1, 0,[ \t]*\\\\"
1829                  "@\t{ 0, 0, -1, 0 },\t\t\t\t\t\t\\\\@";
1830     sed       = "s@0, __LWP_MTX_VALID, 0, 1, 1, 1, 1,[ \t]*\\\\"
1831                  "@{ 0, __LWP_MTX_VALID }, { 0, 1, 1, 1, 1 },\t\t\t\\\\@";
1832     sed       = "s@^[ \t]*__LWP_MTX_VALID, 0, 1, 1, 1, 1,[ \t]*\\\\"
1833                  "@\t{ 0, __LWP_MTX_VALID }, { 0, 1, 1, 1, 1 },\t\t\t\\\\@";
1834     sed       = "s@^[ \t]*0, 0[ \t]*\\\\"
1835                  "@\t{ 0, 0 }\t\t\t\t\t\t\t\\\\@";
1836     sed       = "s@__PTHREAD_COND_VALID, 0"
1837                  "@{ __PTHREAD_COND_VALID, 0 }@";
1838     sed       = "s@__LWP_COND_VALID, 0,[ \t]*\\\\"
1839                  "@{ __LWP_COND_VALID, 0 },\t\t\t\t\t\\\\@";
1840     sed       = "s@__PTHREAD_RWLOCK_VALID, 0"
1841                  "@{ __PTHREAD_RWLOCK_VALID, 0 }@";
1842     sed       = "s@__LWP_RWLOCK_VALID, 0,[ \t]*\\\\"
1843                  "@{ __LWP_RWLOCK_VALID, 0 },\t\t\t\t\t\\\\@";
1844     sed       = "s@^[ \t]*0, 0, 0, 0, 0, 0, 0[ \t]*\\\\"
1845                  "@\t{ 0, 0, 0, 0, 0 }, { 0, 0}\t\t\t\t\t\\\\@";
1846     test_text = "#define PTHREAD_MUTEX_INITIALIZER  {\t\t\t\t\t\\\\\n"
1847                 "\t__PTHREAD_MUTEX_VALID, 0,\t\t\t\t\t\\\\\n"
1848                 "\t(PTHREAD_MUTEX_DEFAULT | PTHREAD_PROCESS_PRIVATE),\t\t\\\\\n"
1849                 "\t__SPNLCK_INITIALIZER,\t\t\t\t\t\t\\\\\n"
1850                 "\t0, 0, -1, 0,\t\t\t\t\t\t\t\\\\\n"
1851                 "\t0, __LWP_MTX_VALID, 0, 1, 1, 1, 1,\t\t\t\t\\\\\n"
1852                 "\t0, 0\t\t\t\t\t\t\t\t\\\\\n"
1853                 "}\n";
1854 };
1855
1856 /*
1857  *  Fix glibc definition of HUGE_VAL in terms of hex floating point constant
1858  */
1859 fix = {
1860     hackname  = huge_val_hex;
1861     files     = bits/huge_val.h;
1862     select    = "^#[ \t]*define[ \t]*HUGE_VAL[ \t].*0x1\\.0p.*";
1863     bypass    = "__builtin_huge_val";
1864
1865     c_fix     = format;
1866     c_fix_arg = "#define HUGE_VAL (__builtin_huge_val())\n";
1867
1868     test_text = "# define HUGE_VAL\t(__extension__ 0x1.0p2047)";
1869 };
1870
1871
1872 /*
1873  *  Fix glibc definition of HUGE_VALF in terms of hex floating point constant
1874  */
1875 fix = {
1876     hackname  = huge_valf_hex;
1877     files     = bits/huge_val.h;
1878     select    = "^#[ \t]*define[ \t]*HUGE_VALF[ \t].*0x1\\.0p.*";
1879     bypass    = "__builtin_huge_valf";
1880
1881     c_fix     = format;
1882     c_fix_arg = "#define HUGE_VALF (__builtin_huge_valf())\n";
1883
1884     test_text = "#  define HUGE_VALF (__extension__ 0x1.0p255f)";
1885 };
1886
1887
1888 /*
1889  *  Fix glibc definition of HUGE_VALL in terms of hex floating point constant
1890  */
1891 fix = {
1892     hackname  = huge_vall_hex;
1893     files     = bits/huge_val.h;
1894     select    = "^#[ \t]*define[ \t]*HUGE_VALL[ \t].*0x1\\.0p.*";
1895     bypass    = "__builtin_huge_vall";
1896
1897     c_fix     = format;
1898     c_fix_arg = "#define HUGE_VALL (__builtin_huge_vall())\n";
1899
1900     test_text = "#  define HUGE_VALL (__extension__ 0x1.0p32767L)";
1901 };
1902
1903
1904 /*
1905  *  Fix return type of abort and free
1906  */
1907 fix = {
1908     hackname  = int_abort_free_and_exit;
1909     files     = stdlib.h;
1910     select    = "int[ \t]+(abort|free|exit)[ \t]*\\(";
1911     bypass    = "_CLASSIC_ANSI_TYPES";
1912
1913     c_fix     = format;
1914     c_fix_arg = "void\t%1(";
1915
1916     test_text = "extern int abort(int);\n"
1917                 "extern int free(void*);\n"
1918                 "extern int exit(void*);";
1919 };
1920
1921
1922 /*
1923  *  Fix various macros used to define ioctl numbers.
1924  *  The traditional syntax was:
1925  *
1926  *    #define _IO(n, x) (('n'<<8)+x)
1927  *    #define TIOCFOO _IO(T, 1)
1928  *
1929  *  but this does not work with the C standard, which disallows macro
1930  *  expansion inside strings.  We have to rewrite it thus:
1931  *
1932  *    #define _IO(n, x) ((n<<8)+x)
1933  *    #define TIOCFOO  _IO('T', 1)
1934  *
1935  *  The select expressions match too much, but the c_fix code is cautious.
1936  *
1937  *  _IO might be: _IO DESIO BSD43__IO with W, R, WR, C, ... suffixes.
1938  */
1939 fix = {
1940     hackname  = io_quotes_def;
1941     select    = "define[ \t]+[A-Z0-9_]+IO[A-Z]*\\([a-zA-Z][,)]";
1942     c_fix     = char_macro_def;
1943     c_fix_arg = "IO";
1944     test_text =
1945     "#define BSD43__IOWR(n, x) (('n'<<8)+x)\n"
1946     "#define _IOWN(x,y,t)  (_IOC_IN|(((t)&_IOCPARM_MASK)<<16)|('x'<<8)|y)\n"
1947     "#define _IO(x,y)      ('x'<<8|y)";
1948     test_text =
1949     "#define XX_IO(x)        ('x'<<8|256)";
1950 };
1951
1952 fix = {
1953     hackname  = io_quotes_use;
1954     select    = "define[ \t]+[A-Z0-9_]+[ \t]+[A-Z0-9_]+IO[A-Z]*[ \t]*"
1955                 "\\( *[^,']";
1956     c_fix     = char_macro_use;
1957     c_fix_arg = "IO";
1958     test_text = "#define TIOCFOO BSD43__IOWR(T, 1)\n"
1959                 "#define TIOCFOO \\\\\n"
1960                 "BSD43__IOWR(T, 1) /* Some are multi-line */";
1961 };
1962
1963
1964 /*
1965  *  Check for missing ';' in struct
1966  */
1967 fix = {
1968     hackname = ip_missing_semi;
1969     files    = netinet/ip.h;
1970     select   = "}$";
1971     sed      = "/^struct/,/^};/s/}$/};/";
1972     test_text=
1973     "struct mumble {\n"
1974     "  union {\n"
1975     "    int x;\n"
1976     "  }\n"
1977     "}; /* mumbled struct */\n";
1978 };
1979
1980
1981 /*
1982  *  IRIX 6.5.1[89] <internal/sgimacros.h> unconditionally defines
1983  *  __restrict as restrict iff __c99.  This is wrong for C++, which
1984  *  needs many C99 features, but only supports __restrict.
1985  */
1986 fix = {
1987     hackname  = irix___restrict;
1988     files     = internal/sgimacros.h;
1989     select    = "(#ifdef __c99\n)(#[ \t]*define __restrict restrict)";
1990
1991     mach      = "mips-sgi-irix6.5";
1992     c_fix     = format;
1993     c_fix_arg = "%1"
1994                 "#  ifndef __cplusplus\n%2\n#  endif";
1995
1996     test_text = "#ifdef __c99\n#  define __restrict restrict";
1997 };
1998
1999 /*
2000  * IRIX 6.5.22 <internal/math_core.h> uses the SGI c99 __generic() intrinsic
2001  * to define the fpclasify, isfinite, isinf, isnan, isnormal and signbit 
2002  * functions.
2003  *
2004  * This was probably introduced around IRIX 6.5.18
2005  */
2006 fix = {
2007     hackname  = irix___generic1;
2008     files     = internal/math_core.h;
2009     mach      = "mips-sgi-irix6.5";
2010     select    = "#define ([a-z]+)\\(x\\) *__generic.*";
2011
2012     c_fix     = format;
2013     c_fix_arg = "extern int %1(double);\n"
2014                 "extern int %1f(float);\n"
2015                 "extern int %1l(long double);\n"
2016                 "#define %1(x) (sizeof(x) == sizeof(double) ? _%1(x) \\\n"
2017                 "               : sizeof(x) == sizeof(float) ? _%1f(x) \\\n"
2018                 "               : _%1l(x))\n";
2019
2020     test_text = 
2021       "#define isnan(x) __generic(x,,, _isnan, _isnanf, _isnanl,,,)(x)\n";
2022 };
2023
2024
2025 /* Likewise <internal/math_core.h> on IRIX 6.5.19 and later uses the SGI
2026    compiler's __generic intrinsic to define isgreater, isgreaterequal,
2027    isless, islessequal, islessgreater and isunordered functions.  */
2028 fix = {
2029     hackname  = irix___generic2;
2030     files     = internal/math_core.h;
2031     mach      = "mips-sgi-irix6.5";
2032     select    = "#define ([a-z]+)\\(x,y\\) *__generic.*";
2033
2034     c_fix     = format;
2035     c_fix_arg = "#define %1(x,y) \\\n"
2036                 "  ((sizeof(x)<=4 && sizeof(y)<=4) ? _%1f(x,y) \\\n"
2037                 "   : (sizeof(x)<=8 && sizeof(y)<=8) ? _%1(x,y) \\\n"
2038                 "   : _%1l(x,y))\n";
2039
2040     test_text = 
2041       "#define isless(x,y)         __generic(x,y,, _isless, _islessf, _islessl,,,)(x,y)";
2042 };
2043
2044
2045 /*
2046  *  IRIX 5.2's <sys/asm.h> contains an asm comment with a contraction
2047  *  that causes the assembly preprocessor to complain about an
2048  *  unterminated character constant.
2049  */
2050 fix = {
2051     hackname  = irix_asm_apostrophe;
2052     files     = sys/asm.h;
2053
2054     select    = "^[ \t]*#.*[Ww]e're";
2055     c_fix     = format;
2056     c_fix_arg = "%1 are";
2057     c_fix_arg = "^([ \t]*#.*[Ww]e)'re";
2058     test_text = "\t# and we're on vacation";
2059 };
2060
2061
2062 /*
2063  *  Non-traditional "const" declaration in Irix's limits.h.
2064  */
2065 fix = {
2066     hackname    = irix_limits_const;
2067     files       = fixinc-test-limits.h, limits.h;
2068     select      = "^extern const ";
2069     c_fix       = format;
2070     c_fix_arg   = "extern __const ";
2071     test_text   = "extern const char limit; /* test limits */";
2072 };
2073
2074
2075 /*
2076  *  IRIX 6.5.1[78] <sys/socket.h> has a broken definition of socklen_t.
2077  *  Various socket function prototypes use different types instead,
2078  *  depending on the API in use (BSD, XPG4/5), but the socklen_t
2079  *  definition doesn't reflect this (SGI Bug Id 864477, fixed in
2080  *  IRIX 6.5.19).
2081  */
2082 fix = {
2083     hackname  = irix_socklen_t;
2084     files     = sys/socket.h;
2085     select    = "(#define _SOCKLEN_T\n)(typedef u_int32_t socklen_t;)";
2086
2087     mach      = "mips-sgi-irix6.5";
2088     c_fix     = format;
2089     c_fix_arg = "%1"
2090                 "#if _NO_XOPEN4 && _NO_XOPEN5\n"
2091                 "typedef int socklen_t;\n"
2092                 "#else\n"
2093                 "%2\n"
2094                 "#endif /* _NO_XOPEN4 && _NO_XOPEN5 */";
2095
2096     test_text = "#define _SOCKLEN_T\ntypedef u_int32_t socklen_t;";
2097 };
2098
2099 /*
2100  *  IRIX 5.x's stdio.h and IRIX 6.5's internal/stdio_core.h declare
2101  *  some functions that take a va_list as
2102  *  taking char *.  However, GCC uses void * for va_list, so
2103  *  calling vfprintf with a va_list fails in C++.  */
2104 fix = {
2105     hackname  = irix_stdio_va_list;
2106     files     = stdio.h;
2107     files     = internal/stdio_core.h;
2108
2109     select = '/\* va_list \*/ char \*';
2110     c_fix  = format;
2111     c_fix_arg = "__gnuc_va_list";
2112     test_text =
2113     "extern int printf( const char *, /* va_list */ char * );";
2114 };
2115
2116
2117 /*
2118  *  IRIX 6.5.19 <internal/wchar_core.h> provides the XPG4 variant of
2119  *  wcsftime by default.  ISO C99 requires the XPG5 variant instead.
2120  */
2121 fix = {
2122     hackname  = irix_wcsftime;
2123     files     = internal/wchar_core.h;
2124     select    = "#if _NO_XOPEN5\n(extern size_t[ \t]+wcsftime.*const char \*.*)";
2125
2126     mach      = "mips-sgi-irix6.5";
2127     c_fix     = format;
2128     c_fix_arg = "#if _NO_XOPEN5 && !defined(__c99)\n%1";
2129
2130     test_text = "#if _NO_XOPEN5\n"
2131                 "extern size_t          wcsftime(wchar_t *, __SGI_LIBC_NAMESPACE_QUALIFIER size_t, const char *, const struct tm *);";
2132 };
2133
2134 /*
2135  * Fixing ISC fmod declaration
2136  */
2137 fix = {
2138     hackname  = isc_fmod;
2139     files     = math.h;
2140     select    = 'fmod\(double\)';
2141     c_fix     = format;
2142     c_fix_arg = "fmod(double, double)";
2143     test_text = "extern double  fmod(double);";
2144 };
2145
2146
2147 /*
2148  *  On Interactive Unix 2.2, certain traditional Unix definitions
2149  *  (notably getc and putc in stdio.h) are omitted if __STDC__ is
2150  *  defined, not just if _POSIX_SOURCE is defined.  This makes it
2151  *  impossible to compile any nontrivial program except with -posix.
2152  */
2153 fix = {
2154     hackname = isc_omits_with_stdc;
2155
2156     files     = "stdio.h";
2157     files     = "math.h";
2158     files     = "ctype.h";
2159     files     = "sys/limits.h";
2160     files     = "sys/fcntl.h";
2161     files     = "sys/dirent.h";
2162
2163     select    = '!defined\(__STDC__\) && !defined\(_POSIX_SOURCE\)';
2164     c_fix     = format;
2165     c_fix_arg = '!defined(_POSIX_SOURCE)';
2166     test_text = "#if !defined(__STDC__) && !defined(_POSIX_SOURCE) /* ? ! */"
2167                 "\nint foo;\n#endif";
2168 };
2169
2170
2171 /*
2172  * These files in Sun OS 4.x and ARM/RISCiX and BSD4.3
2173  * use / * * / to concatenate tokens.
2174  */
2175 fix = {
2176     hackname = kandr_concat;
2177     files  = "sparc/asm_linkage.h";
2178     files  = "sun3/asm_linkage.h";
2179     files  = "sun3x/asm_linkage.h";
2180     files  = "sun4/asm_linkage.h";
2181     files  = "sun4c/asm_linkage.h";
2182     files  = "sun4m/asm_linkage.h";
2183     files  = "sun4c/debug/asm_linkage.h";
2184     files  = "sun4m/debug/asm_linkage.h";
2185     files  = "arm/as_support.h";
2186     files  = "arm/mc_type.h";
2187     files  = "arm/xcb.h";
2188     files  = "dev/chardefmac.h";
2189     files  = "dev/ps_irq.h";
2190     files  = "dev/screen.h";
2191     files  = "dev/scsi.h";
2192     files  = "sys/tty.h";
2193     files  = "Xm.acorn/XmP.h";
2194     files  = bsd43/bsd43_.h;
2195     select = '/\*\*/';
2196     c_fix     = format;
2197     c_fix_arg = '##';
2198     test_text = "#define __CONCAT__(a,b) a/**/b";
2199 };
2200
2201
2202 /*
2203  *  Fix libc1 _G_va_list definition, used in declarations of several
2204  *  more-or-less standard functions, for example vasprintf.
2205  */
2206 fix = {
2207     hackname = libc1_G_va_list;
2208     files    = _G_config.h;
2209     mach     = '*-*-linux*libc1';
2210     select   = 'typedef void \* _G_va_list;';
2211     c_fix     = format;
2212     c_fix_arg = "typedef __builtin_va_list _G_va_list;";
2213     test_text = 'typedef void * _G_va_list;';
2214 };
2215
2216
2217 /*
2218  *  GNU libc1 string.h does not prototype memcpy and memcmp for gcc
2219  *  versions > 1.  This fix will open up the declaration for all
2220  *  versions of GCC and for g++.
2221  */
2222 fix = {
2223     hackname  = libc1_ifdefd_memx;
2224
2225     /* The string.h result is overwritten by AAB_ultrix_string when doing
2226        "make check" and will fail.  Therefore, we add the following kludgery
2227        to insert the test_text into the special testing header.  :-}  */
2228     files     = testing.h;
2229     files     = string.h;
2230
2231     c_fix     = format;
2232     select    = "' is a built-in function for gcc 2\\.x\\. \\*/";
2233     bypass    = __cplusplus;
2234     c_fix_arg = "%1";
2235     c_fix_arg =
2236        '/\* `mem...\' is a built-in function for gcc 2\.x\. \*/' "\n"
2237        '#if defined\(__STDC__\) && __GNUC__ < 2'                 "\n"
2238        "(/\\* .* \\*/\n"
2239        "extern [a-z_]+ mem.*(\n[^#].*)*;)\n"
2240        "#endif";
2241
2242     test_text =
2243     "/* \\`memcpy' is a built-in function for gcc 2.x. */\n"
2244     "#if defined(__STDC__) && __GNUC__ < 2\n"
2245     "/* Copy N bytes of SRC to DEST.  */\n"
2246     "extern __ptr_t memcpy __P ((__ptr_t __dest, __const __ptr_t __src,\n"
2247     "                         size_t __n));\n"
2248     "#endif";
2249 };
2250
2251
2252 /* The /usr/include/sys/ucontext.h on ia64-*linux-gnu systems defines
2253  * an _SC_GR0_OFFSET macro using an idiom that isn't a compile time
2254  * constant on recent versions of g++.
2255  */
2256 fix = {
2257     hackname = linux_ia64_ucontext;
2258     files = "sys/ucontext.h";
2259     mach = "ia64-*-linux*";
2260     select = '\(\(\(char \*\) &\(\(struct sigcontext \*\) 0\)'
2261              '->sc_gr\[0\]\) - \(char \*\) 0\)';
2262     c_fix = format;
2263     c_fix_arg = "__builtin_offsetof \(struct sigcontext, sc_gr[0]\)";
2264     test_text = "# define _SC_GR0_OFFSET\t\\\\\n"
2265         "\t(((char *) &((struct sigcontext *) 0)->sc_gr[0]) - (char *) 0)\n";
2266 };
2267
2268
2269 /*
2270  * Apparently some SVR4 systems typedef longlong_t to long ?
2271  */
2272 #ifdef SVR4
2273 fix = {
2274     hackname  = longlong_t;
2275     select    = "typedef[ \t]+(unsigned[ \t]+)?long[ \t]+(u_)?longlong_t";
2276     c_fix     = format;
2277     c_fix_arg = "typedef %1long long %2longlong_t";
2278     test_text = "typedef long longlong_t\n"
2279                 "typedef unsigned long u_longlong_t";
2280 };
2281 #endif
2282
2283 /* 
2284  *  Remove header file warning from sys/time.h.  Autoconf's
2285  *  AC_HEADER_TIME recommends to include both sys/time.h and time.h
2286  *  which causes warning on LynxOS.  Remove the warning.
2287  */
2288 fix = {
2289     hackname  = lynxos_no_warning_in_sys_time_h;
2290     files     = sys/time.h;
2291     select    = "#warning[ \t]+Using <time.h> instead of <sys/time.h>";
2292     c_fix     = format;
2293     c_fix_arg = "";
2294     test_text = "#warning Using <time.h> instead of <sys/time.h>";
2295 };
2296
2297
2298 /* 
2299  *  Add missing declaration for putenv.
2300  */
2301 fix = {
2302     hackname  = lynxos_missing_putenv;
2303     mach      = '*-*-lynxos*';
2304     files     = stdlib.h;
2305     bypass    = 'putenv[ \t]*\\(';
2306     select    = "extern char \\*getenv[ \t]*_AP\\(\\(const char \\*\\)\\);";
2307     c_fix     = format;
2308     c_fix_arg = "%0\n"
2309         "extern int putenv                              _AP((char *));";
2310     c_fix_arg = "extern char \\*getenv[ \t]*_AP\\(\\(const char \\*\\)\\);";
2311     test_text = "extern char *getenv    _AP((const char *));";
2312 };
2313
2314
2315 /*
2316  * Fix BSD machine/ansi.h to use __builtin_va_list to define _BSD_VA_LIST_.
2317  *
2318  * On NetBSD, machine is a symbolic link to an architecture specific
2319  * directory name, so we can't match a specific file name here.
2320  */
2321 fix = {
2322     hackname = machine_ansi_h_va_list;
2323     select   = "define[ \t]+_BSD_VA_LIST_[ \t]";
2324     bypass   = '__builtin_va_list';
2325
2326     c_fix     = format;
2327     c_fix_arg = "%1__builtin_va_list";
2328     c_fix_arg = "(define[ \t]+_BSD_VA_LIST_[ \t]+).*";
2329
2330     test_text = " # define _BSD_VA_LIST_\tchar**";
2331 };
2332
2333
2334 /*
2335  *  Fix non-ansi machine name defines
2336  */
2337 fix = {
2338     hackname  = machine_name;
2339     c_test    = machine_name;
2340     c_fix     = machine_name;
2341
2342     test_text = "/* MACH_DIFF: */\n"
2343     "#if defined( i386 ) || defined( sparc ) || defined( vax )"
2344     "\n/* no uniform test, so be careful  :-) */";
2345 };
2346
2347
2348 /*
2349  *  Some math.h files define struct exception (it's in the System V
2350  *  Interface Definition), which conflicts with the class exception defined
2351  *  in the C++ file std/stdexcept.h.  We redefine it to __math_exception.
2352  *  This is not a great fix, but I haven't been able to think of anything
2353  *  better.  Note that we have to put the #ifdef/#endif blocks at beginning
2354  *  and end of file, because fixproto runs after us and may insert
2355  *  additional references to struct exception.
2356  */
2357 fix = {
2358     hackname  = math_exception;
2359     files     = math.h;
2360     select    = "struct exception";
2361     /*
2362      * This should be bypassed on __cplusplus, but some supposedly C++ C++
2363      * aware headers, such as Solaris 8 and 9, don't wrap their struct
2364      * exception either.  So currently we bypass only for glibc, based on a
2365      * comment in the fixed glibc header.  Ick.
2366      */
2367     bypass    = 'We have a problem when using C\+\+|for C\+\+, _[a-z0-9A-Z_]+_exception; for C, exception';
2368     c_fix     = wrap;
2369
2370     c_fix_arg = "#ifdef __cplusplus\n"
2371                 "#define exception __math_exception\n"
2372                 "#endif\n";
2373
2374     c_fix_arg = "#ifdef __cplusplus\n"
2375                 "#undef exception\n"
2376                 "#endif\n";
2377
2378     test_text = "typedef struct exception t_math_exception;";
2379 };
2380
2381
2382 /*
2383  *  This looks pretty broken to me.  ``dbl_max_def'' will contain
2384  *  "define DBL_MAX " at the start, when what we really want is just
2385  *  the value portion.  Can't figure out how to write a test case
2386  *  for this either  :-(
2387  */
2388 fix = {
2389     hackname = math_huge_val_from_dbl_max;
2390     files    = math.h;
2391
2392     /*
2393      * IF HUGE_VAL is defined to be DBL_MAX *and* DBL_MAX is _not_ defined
2394      * in math.h, this fix applies.
2395      */
2396     select   = "define[ \t]+HUGE_VAL[ \t]+DBL_MAX";
2397     bypass   = "define[ \t]+DBL_MAX";
2398
2399     shell    =
2400     /*
2401      *  See if we have a definition for DBL_MAX in float.h.
2402      *  If we do, we will replace the one in math.h with that one.
2403      */
2404
2405     "\tdbl_max_def=`egrep 'define[ \t]+DBL_MAX[ \t]+.*' float.h "
2406                    "| sed 's/.*DBL_MAX[ \t]*//' 2>/dev/null`\n\n"
2407
2408     "\tif ( test -n \"${dbl_max_def}\" ) > /dev/null 2>&1\n"
2409     "\tthen sed -e '/define[ \t]*HUGE_VAL[ \t]*DBL_MAX/"
2410                         "s@DBL_MAX@'\"$dbl_max_def@\"\n"
2411     "\telse cat\n"
2412     "\tfi";
2413
2414     test_text =
2415     "`echo '#define DBL_MAX\t3.1415e+9 /* really big */' >> float.h`\n"
2416     "#define HUGE_VAL DBL_MAX";
2417 };
2418
2419
2420 /*
2421  *  nested comment
2422  */
2423 fix = {
2424     hackname  = nested_auth_des;
2425     files     = rpc/rpc.h;
2426     select    = '(/\*.*rpc/auth_des\.h>.*)/\*';
2427     c_fix     = format;
2428     c_fix_arg = "%1*/ /*";
2429     test_text = "/*#include <rpc/auth_des.h> /* skip this */";
2430 };
2431
2432
2433 /*
2434  * Fix nested comments in Motorola's <limits.h> and <sys/limits.h>
2435  */
2436 fix = {
2437     hackname = nested_motorola;
2438     mach     = "m68k-motorola-sysv*";
2439     files    = sys/limits.h;
2440     files    = limits.h;
2441     select   = "max # bytes atomic in write|error value returned by Math lib";
2442
2443     sed = "s@^\\(#undef[ \t][ \t]*PIPE_BUF[ \t]*"
2444                    "/\\* max # bytes atomic in write to a\\)$@\\1 */@";
2445     sed = "s@\\(/\\*#define\tHUGE_VAL\t3.[0-9e+]* \\)"
2446           "\\(/\\*error value returned by Math lib\\*/\\)$@\\1*/ \\2@";
2447
2448     test_text =
2449     "#undef PIPE_BUF /* max # bytes atomic in write to a\n"
2450     "\t\t/* PIPE */\n"
2451     "/*#define\tHUGE_VAL\t3.9e+9 /*error value returned by Math lib*/";
2452 };
2453
2454
2455 /*
2456  * Fixing nested comments in ISC <sys/limits.h>
2457  */
2458 fix = {
2459     hackname = nested_sys_limits;
2460     files  = sys/limits.h;
2461     select = CHILD_MAX;
2462     sed    = "/CHILD_MAX/s,/\\* Max, Max,";
2463     sed    = "/OPEN_MAX/s,/\\* Max, Max,";
2464     test_text = "/*\n#define CHILD_MAX 20 /* Max, Max, ... */ /*\n"
2465                 "#define OPEN_MAX  20 /* Max, Max, ... */\n";
2466 };
2467
2468
2469 /*
2470  * NetBSD has a semicolon after the ending '}' for some extern "C".
2471  */
2472 fix = {
2473     hackname  = netbsd_extra_semicolon;
2474     mach      = *-*-netbsd*;
2475     files     = sys/cdefs.h;
2476     select    = "#define[ \t]*__END_DECLS[ \t]*};";
2477
2478     c_fix     = format;
2479     c_fix_arg = "#define __END_DECLS }";
2480
2481     test_text = "#define __END_DECLS };";
2482 };
2483
2484
2485 /*
2486  *  NeXT 3.2 adds const prefix to some math functions.
2487  *  These conflict with the built-in functions.
2488  */
2489 fix = {
2490     hackname  = next_math_prefix;
2491     files     = ansi/math.h;
2492     select    = "^extern[ \t]+double[ \t]+__const__[ \t]";
2493
2494     c_fix     = format;
2495     c_fix_arg = "extern double %1(";
2496     c_fix_arg = "^extern[ \t]+double[ \t]+__const__[ \t]+([a-z]+)\\(";
2497
2498     test_text = "extern\tdouble\t__const__\tmumble();";
2499 };
2500
2501
2502 /*
2503  *  NeXT 3.2 uses the word "template" as a parameter for some
2504  *  functions. GCC reports an invalid use of a reserved key word
2505  *  with the built-in functions.
2506  */
2507 fix = {
2508     hackname = next_template;
2509     files    = bsd/libc.h;
2510     select   = "[ \t]template\\)";
2511
2512     c_fix     = format;
2513     c_fix_arg = "(%1)";
2514     c_fix_arg = "\\(([^)]*)[ \t]template\\)";
2515     test_text = "extern mumble( char * template); /* fix */";
2516 };
2517
2518
2519 /*
2520  *  NeXT 3.2 includes the keyword volatile in the abort() and  exit()
2521  *  function prototypes. That conflicts with the  built-in functions.
2522  */
2523 fix = {
2524     hackname = next_volitile;
2525     files    = ansi/stdlib.h;
2526     select   = "^extern[ \t]+volatile[ \t]+void[ \t]";
2527
2528     c_fix     = format;
2529     c_fix_arg = "extern void %1(";
2530     c_fix_arg = "^extern[ \t]+volatile[ \t]+void[ \t]+(exit|abort)\\(";
2531
2532     test_text = "extern\tvolatile\tvoid\tabort();";
2533 };
2534
2535
2536 /*
2537  *  NeXT 2.0 defines 'int wait(union wait*)', which conflicts with Posix.1.
2538  *  Note that version 3 of the NeXT system has wait.h in a different directory,
2539  *  so that this code won't do anything.  But wait.h in version 3 has a
2540  *  conditional, so it doesn't need this fix.  So everything is okay.
2541  */
2542 fix = {
2543     hackname  = next_wait_union;
2544     files     = sys/wait.h;
2545
2546     select    = 'wait\(union wait';
2547     c_fix     = format;
2548     c_fix_arg = "wait(void";
2549     test_text = "extern pid_d wait(union wait*);";
2550 };
2551
2552
2553 /*
2554  *  a missing semi-colon at the end of the nodeent structure definition.
2555  */
2556 fix = {
2557     hackname  = nodeent_syntax;
2558     files     = netdnet/dnetdb.h;
2559     select    = "char[ \t]*\\*na_addr[ \t]*$";
2560     c_fix     = format;
2561     c_fix_arg = "%0;";
2562     test_text = "char *na_addr\t";
2563 };
2564
2565
2566 /*
2567  *  obstack.h used casts as lvalues.
2568  *
2569  *  We need to change postincrements of casted pointers (which are
2570  *  then dereferenced and assigned into) of the form
2571  *
2572  *    *((TYPE*)PTRVAR)++ = (VALUE)
2573  *
2574  *  into expressions like
2575  *
2576  *    ((*((TYPE*)PTRVAR) = (VALUE)), (PTRVAR += sizeof (TYPE)))
2577  *
2578  *  which is correct for the cases used in obstack.h since PTRVAR is
2579  *  of type char * and the value of the expression is not used.
2580  */
2581 fix = {
2582     hackname  = obstack_lvalue_cast;
2583     files     = obstack.h;
2584     select    = '\*\(\(([^()]*)\*\)(.*)\)\+\+ = \(([^()]*)\)';
2585     c_fix     = format;
2586     c_fix_arg = "((*((%1*)%2) = (%3)), (%2 += sizeof (%1)))";
2587     test_text = "*((void **) (h)->next_free)++ = (aptr)";
2588 };
2589
2590
2591 /*
2592  *  sys/lc_core.h on some versions of OSF1/4.x pollutes the namespace by
2593  *  defining regex.h related types.  This causes libg++ build and usage
2594  *  failures.  Fixing this correctly requires checking and modifying 3 files.
2595  */
2596 fix = {
2597     hackname = osf_namespace_a;
2598     files    = reg_types.h;
2599     files    = sys/lc_core.h;
2600     test     = " -r reg_types.h";
2601     test     = " -r sys/lc_core.h";
2602     test     = " -n \"`grep '} regex_t;' reg_types.h`\"";
2603     test     = " -z \"`grep __regex_t regex.h`\"";
2604
2605     c_fix     = format;
2606     c_fix_arg = "__%0";
2607     c_fix_arg = "reg(ex|off|match)_t";
2608
2609     test_text = "`touch sys/lc_core.h`"
2610     "typedef struct {\n  int stuff, mo_suff;\n} regex_t;\n"
2611     "extern regex_t    re;\n"
2612     "extern regoff_t   ro;\n"
2613     "extern regmatch_t rm;\n";
2614 };
2615
2616 fix = {
2617     hackname = osf_namespace_c;
2618     files    = regex.h;
2619     test     = " -r reg_types.h";
2620     test     = " -r sys/lc_core.h";
2621     test     = " -n \"`grep '} regex_t;' reg_types.h`\"";
2622     test     = " -z \"`grep __regex_t regex.h`\"";
2623
2624     select    = "#include <reg_types\.h>.*";
2625     c_fix     = format;
2626     c_fix_arg = "%0\n"
2627                 "typedef __regex_t\tregex_t;\n"
2628                 "typedef __regoff_t\tregoff_t;\n"
2629                 "typedef __regmatch_t\tregmatch_t;";
2630
2631     test_text = "#include <reg_types.h>";
2632 };
2633
2634
2635 /*
2636  *  Fix __page_size* declarations in pthread.h AIX 4.1.[34].
2637  *  The original ones fail if uninitialized externs are not common.
2638  *  This is the default for all ANSI standard C++ compilers.
2639  */
2640 fix = {
2641     hackname  = pthread_page_size;
2642     files     = pthread.h;
2643     select    = "^int __page_size";
2644     c_fix     = format;
2645     c_fix_arg = "extern %0";
2646     test_text = "int __page_size;";
2647 };
2648
2649 /*
2650  * On broken glibc-2.3.3 systems an array of incomplete structures is
2651  * passed to __sigsetjmp.  Fix that to take a pointer instead.
2652  */
2653 fix = {
2654     hackname  = pthread_incomplete_struct_argument;
2655     files     = pthread.h;
2656     select    = "struct __jmp_buf_tag";
2657     c_fix     = format;
2658     c_fix_arg = "%1 *%2%3";
2659     c_fix_arg = "^(extern int __sigsetjmp \\(struct __jmp_buf_tag) (__env)\\[1\\](.*)$";
2660     test_text = "extern int __sigsetjmp (struct __jmp_buf_tag __env[1], int __savemask);";
2661 };
2662
2663 /*
2664  * On DYNIX/ptx, sys/mc_param.h has an embedded asm for the cpuid instruction
2665  * on the P5. This is not used by anything else so we ifdef it out.
2666  * Current GCC doesn't seem to complain about the asm, though.
2667  */
2668 #ifdef PTX
2669 fix = {
2670     hackname  = ptx_sys_mc_param_h;
2671     files     = sys/mc_param.h;
2672     sed       = "/__asm/,/}/{"
2673                   "/__asm/i\\\n"
2674                   "#if !defined (__GNUC__) && !defined (__GNUG__)\n"
2675                   "/}/a\\\n"
2676                   "#endif\n"
2677                 "}";
2678     test_text = "__asm\n"
2679                 "int _CPUID()\n"
2680                 "{\n"
2681                 "   non-GNU assembly here\n"
2682                 "}";
2683 };
2684 #endif
2685
2686
2687 /*
2688  *  Fix return type of fread and fwrite on sysV68
2689  */
2690 fix = {
2691     hackname = read_ret_type;
2692     files    = stdio.h;
2693     select   = "extern int\t.*, fread\\(\\), fwrite\\(\\)";
2694     c_fix     = format;
2695     c_fix_arg = "extern unsigned int fread(), fwrite();\n%1%2";
2696     c_fix_arg = "(extern int\t.*), fread\\(\\), fwrite\\(\\)(.*)";
2697
2698     test_text = "extern int\tfclose(), fflush(), fread(), fwrite(), foo();";
2699 };
2700
2701
2702 /*
2703  *  Fix casts as lvalues in glibc's <rpc/xdr.h>.
2704  */
2705 fix = {
2706     hackname  = rpc_xdr_lvalue_cast_a;
2707     files     = rpc/xdr.h;
2708     select    = "#define[ \t]*IXDR_GET_LONG.*\\\\\n.*__extension__.*";
2709     c_fix     = format;
2710     c_fix_arg = "#define IXDR_GET_LONG(buf) ((long)IXDR_GET_U_INT32(buf))";
2711     test_text = "#define IXDR_GET_LONG(buf) \\\\\n"
2712                 "\t((long)ntohl((u_long)*__extension__((u_int32_t*)(buf))++))";
2713 };
2714
2715
2716 fix = {
2717     hackname  = rpc_xdr_lvalue_cast_b;
2718     files     = rpc/xdr.h;
2719     select    = "#define[ \t]*IXDR_PUT_LONG.*\\\\\n.*__extension__.*";
2720     c_fix     = format;
2721     c_fix_arg = "#define IXDR_PUT_LONG(buf, v) ((long)IXDR_PUT_INT32(buf, (long)(v)))";
2722     test_text = "#define IXDR_PUT_LONG(buf, v) \\\\\n"
2723                 "\t(*__extension__((u_int32_t*)(buf))++ = (long)htonl((u_long)(v)))";
2724 };
2725
2726
2727 /*
2728  *  function class(double x) conflicts with C++ keyword on rs/6000
2729  */
2730 fix = {
2731     hackname  = rs6000_double;
2732     files     = math.h;
2733     select    = '[^a-zA-Z_]class\(';
2734
2735     c_fix     = format;
2736     c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
2737     c_fix_arg = '^.*[^a-zA-Z_]class\(.*';
2738
2739     test_text = "extern int class();";
2740 };
2741
2742
2743 /*
2744  *  Wrong fchmod prototype on RS/6000.
2745  */
2746 fix = {
2747     hackname  = rs6000_fchmod;
2748     files     = sys/stat.h;
2749     select    = 'fchmod\(char \*';
2750     c_fix     = format;
2751     c_fix_arg = "fchmod(int";
2752     test_text = "extern int fchmod(char *, mode_t);";
2753 };
2754
2755
2756 /*
2757  *  parameters conflict with C++ new on rs/6000
2758  */
2759 fix = {
2760     hackname  = rs6000_param;
2761     files     = "stdio.h";
2762     files     = "unistd.h";
2763
2764     select    = 'rename\(const char \*old, const char \*new\)';
2765     c_fix     = format;
2766     c_fix_arg = 'rename(const char *_old, const char *_new)';
2767
2768     test_text = 'extern int rename(const char *old, const char *new);';
2769 };
2770
2771
2772 /*
2773  *  On OpenServer and on UnixWare 7, <math.h> uses the native compiler
2774  *  __builtin_generic. We fix that usage to use the GCC equivalent.
2775  * It also has a plethora of inline functions that conflict with libstdc++.
2776  */
2777 fix = {
2778     hackname = sco_math;
2779     files    = math.h;
2780     files    = ansi/math.h;
2781     files    = posix/math.h;
2782     files    = xpg4/math.h;
2783     files    = xpg4v2/math.h;
2784     files    = xpg4plus/math.h;
2785     files    = ods_30_compat/math.h;
2786     files    = oldstyle/math.h;
2787     select   = "inline double abs";
2788     bypass   = "__GNUG__";
2789     sed      = "/#define.*__fp_class(a) \\\\/i\\\n"
2790                "#ifndef __GNUC__\n";
2791     sed      =
2792 "/.*__builtin_generic/a\\\n"
2793 "#else\\\n"
2794 "#define __fp_class(a) \\\\\\\n"
2795 "  __builtin_choose_expr(__builtin_types_compatible_p(typeof(a),long double),\\\\\\\n"
2796 "   __fpclassifyl(a), \\\\\\\n"
2797 "    __builtin_choose_expr(__builtin_types_compatible_p(typeof(a), float), \\\\\\\n"
2798 "      __fpclassifyf(a),__fpclassify(a)))\\\n"
2799 "#endif";
2800
2801     sed      = "/extern \"C\\+\\+\"/N;"
2802                "/inline double abs/i\\\n"
2803                "#ifndef __GNUC__\n";
2804     sed      = "/inline long double trunc/N;"
2805                "/inline long double trunc.*}.*extern \"C\\+\\+\"/a\\\n"
2806                "#endif /* ! __GNUC__ */";
2807
2808     test_text =
2809     "#define __fp_class(a) \\\\\n"
2810     " __builtin_generic(a,\"ld:__fplcassifyl;f:__fpclassifyf;:__fpclassify\")\n";
2811
2812 };
2813
2814
2815 /*
2816  *  On SCO OpenServer prior to 5.0.7UP1, <sys/regset.h> and <ieeefp.h>
2817  *  have a clash on struct _fpstate and struct fpstate.
2818  */
2819 fix = {
2820     hackname = sco_regset;
2821     files    = sys/regset.h;
2822     mach     = "*-*-sco3.2v5*";
2823     select   = "(struct[ \t]+.*)fpstate";
2824     c_fix     = format;
2825     c_fix_arg = "%1rsfpstate";
2826
2827     test_text =
2828     "union u_fps {\n"
2829     "    struct\tfpstate\n"
2830     "    {\n"
2831     "       int whatever;\n"
2832     "    }\n"
2833     "};\n"
2834     "union _u_fps {\n"
2835     "    struct _fpstate\n"
2836     "    {\n"
2837     "       int whatever;\n"
2838     "    }\n"
2839     "};\n";
2840 };
2841
2842
2843 /*
2844  *  The static functions lstat() and fchmod() in <sys/stat.h>
2845  *  cause G++ grief since they're not wrapped in "if __cplusplus".
2846  *
2847  *  On SCO OpenServer 5.0.0 through (at least) 5.0.5 <sys/stat.h> contains
2848  *  tiny static wrappers that aren't C++ safe.
2849  */
2850 fix = {
2851     hackname = sco_static_func;
2852     files    = sys/stat.h;
2853     mach     = "i?86-*-sco3.2*";
2854     select   = "^static int";
2855
2856     sed      = "/^static int/i\\\n"
2857                "#if __cplusplus\\\n"
2858                "extern \"C\" {\\\n"
2859                "#endif /* __cplusplus */";
2860
2861     sed      = "/^}$/a\\\n"
2862                "#if __cplusplus\\\n"
2863                " }\\\n"
2864                "#endif /* __cplusplus */";
2865
2866     test_text =
2867     "#ifdef __STDC__\n"
2868     "static int\tstat(const char *__f, struct stat *__p) {\n"
2869     "\treturn __stat32(__f, __p);\n"
2870     "}\n\n#  else /* !__STDC__ THIS FAILS ON BSD SYSTEMS */\n"
2871
2872     "static int\tstat(__f, __p)\n"
2873     "\tchar *__f;\n"
2874     "\tstruct stat *__p;\n"
2875     "{\n"
2876     "\treturn __stat32(__f, __p);\n"
2877     "}\n"
2878     "#endif";
2879 };
2880
2881
2882 /*
2883  *  Fix prototype declaration of utime in sys/times.h.
2884  *  In 3.2v4.0 the const is missing.
2885  */
2886 fix = {
2887     hackname  = sco_utime;
2888     files     = sys/times.h;
2889     mach      = "i?86-*-sco3.2v4*";
2890
2891     select    = '\(const char \*, struct utimbuf \*\);';
2892     c_fix     = format;
2893     c_fix_arg = '(const char *, const struct utimbuf *);';
2894
2895     test_text = "extern int utime(const char *, struct utimbuf *);";
2896 };
2897
2898 /*
2899  * Sun Solaris 10 defines several C99 math macros in terms of
2900  * builtins specific to the Studio compiler, in particular not
2901  * compatible with the GNU compiler.
2902  */
2903 fix = {
2904     hackname = solaris_math_1;
2905     select = '@\(#\)math_c99.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
2906     bypass = "__GNUC__";
2907     files = iso/math_c99.h;
2908     c_fix = format;
2909     c_fix_arg = "#define\tHUGE_VA%1\t(__builtin_huge_va%2())";
2910     c_fix_arg = "^#define[ \t]+HUGE_VA([LF]+)[ \t]+__builtin_huge_va([lf]+)";
2911     test_text =
2912     '#ident     "@(#)math_c99.h 1.9     04/11/01 SMI"'"\n"
2913     "#undef     HUGE_VAL\n"
2914     "#define    HUGE_VAL        __builtin_huge_val\n"
2915     "#undef     HUGE_VALF\n"
2916     "#define    HUGE_VALF       __builtin_huge_valf\n"
2917     "#undef     HUGE_VALL\n"
2918     "#define    HUGE_VALL       __builtin_huge_vall";
2919 };
2920
2921 fix = {
2922     hackname = solaris_math_2;
2923     select = '@\(#\)math_c99.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
2924     bypass = "__GNUC__";
2925     files = iso/math_c99.h;
2926     c_fix = format;
2927     c_fix_arg = "#define\tINFINITY\t(__builtin_inff())";
2928     c_fix_arg = "^#define[ \t]+INFINITY[ \t]+__builtin_infinity";
2929     test_text =
2930     '#ident     "@(#)math_c99.h 1.9     04/11/01 SMI"'"\n"
2931     "#undef     INFINITY\n"
2932     "#define    INFINITY        __builtin_infinity";
2933 };
2934
2935 fix = {
2936     hackname = solaris_math_3;
2937     select = '@\(#\)math_c99.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
2938     bypass = "__GNUC__";
2939     files = iso/math_c99.h;
2940     c_fix = format;
2941     c_fix_arg = "#define\tNAN\t\t(__builtin_nanf(\"\"))";
2942     c_fix_arg = "^#define[ \t]+NAN[ \t]+__builtin_nan";
2943     test_text =
2944     '#ident     "@(#)math_c99.h 1.9     04/11/01 SMI"'"\n"
2945     "#undef     NAN\n"
2946     "#define    NAN     __builtin_nan";
2947 };
2948
2949 fix = {
2950     hackname = solaris_math_4;
2951     select = '@\(#\)math_c99.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
2952     bypass = "__GNUC__";
2953     files = iso/math_c99.h;
2954     c_fix = format;
2955     c_fix_arg = "#define\tfpclassify(x) \\\n"
2956                 "  __extension__ ({ __typeof(x) __x_fp = (x); \\\n"
2957                 "\t\t   isnan(__x_fp) \\\n"
2958                 "\t\t     ? FP_NAN \\\n"
2959                 "\t\t     : isinf(__x_fp) \\\n"
2960                 "\t\t       ? FP_INFINITE \\\n"
2961                 "\t\t       : isnormal(__x_fp) \\\n"
2962                 "\t\t\t ? FP_NORMAL \\\n"
2963                 "\t\t\t : __x_fp == 0.0 \\\n"
2964                 "\t\t\t   ? FP_ZERO \\\n"
2965                 "\t\t\t   : FP_SUBNORMAL; })";
2966     c_fix_arg = "^#define[ \t]+fpclassify\\(x\\)[ \t]+__builtin_fpclassify\\(x\\)";
2967     test_text =
2968     '#ident     "@(#)math_c99.h 1.9     04/11/01 SMI"'"\n"
2969     "#undef     fpclassify\n"
2970     "#define    fpclassify(x)   __builtin_fpclassify(x)";
2971 };
2972
2973 fix = {
2974     hackname = solaris_math_5;
2975     select = '@\(#\)math_c99.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
2976     bypass = "__GNUC__";
2977     files = iso/math_c99.h;
2978     c_fix = format;
2979     c_fix_arg = "#define\tisfinite(x) \\\n"
2980                 "  __extension__ ({ __typeof (x) __x_f = (x); \\\n"
2981                 "\t\t   __builtin_expect(!isnan(__x_f - __x_f), 1); })";
2982     c_fix_arg = "^#define[ \t]+isfinite\\(x\\)[ \t]+__builtin_isfinite\\(x\\)";
2983     test_text =
2984     '#ident     "@(#)math_c99.h 1.9     04/11/01 SMI"'"\n"
2985     "#undef     isfinite\n"
2986     "#define    isfinite(x)     __builtin_isfinite(x)";
2987 };
2988
2989 fix = {
2990     hackname = solaris_math_6;
2991     select = '@\(#\)math_c99.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
2992     bypass = "__GNUC__";
2993     files = iso/math_c99.h;
2994     c_fix = format;
2995     c_fix_arg = "#define\tisinf(x) \\\n"
2996                 "  __extension__ ({ __typeof (x) __x_i = (x); \\\n"
2997                 "\t\t   __builtin_expect(!isnan(__x_i) && !isfinite(__x_i), 0); })";
2998     c_fix_arg = "^#define[ \t]+isinf\\(x\\)[ \t]+__builtin_isinf\\(x\\)";
2999     test_text =
3000     '#ident     "@(#)math_c99.h 1.9     04/11/01 SMI"'"\n"
3001     "#undef     isinf\n"
3002     "#define    isinf(x)        __builtin_isinf(x)";
3003 };
3004
3005 fix = {
3006     hackname = solaris_math_7;
3007     select = '@\(#\)math_c99.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
3008     bypass = "__GNUC__";
3009     files = iso/math_c99.h;
3010     c_fix = format;
3011     c_fix_arg = "#define\tisnormal(x) \\\n"
3012                 "  __extension__ ({ __typeof(x) __x_n = (x); \\\n"
3013                 "\t\t   if (__x_n < 0.0) __x_n = -__x_n; \\\n"
3014                 "\t\t   __builtin_expect(isfinite(__x_n) \\\n"
3015                 "\t\t\t\t    && (sizeof(__x_n) == sizeof(float) \\\n"
3016                 "\t\t\t\t\t  ? __x_n >= __FLT_MIN__ \\\n"
3017                 "\t\t\t\t\t  : sizeof(__x_n) == sizeof(long double) \\\n"
3018                 "\t\t\t\t\t    ? __x_n >= __LDBL_MIN__ \\\n"
3019                 "\t\t\t\t\t    : __x_n >= __DBL_MIN__), 1); })";
3020     c_fix_arg = "^#define[ \t]+isnormal\\(x\\)[ \t]+__builtin_isnormal\\(x\\)";
3021     test_text =
3022     '#ident     "@(#)math_c99.h 1.9     04/11/01 SMI"'"\n"
3023     "#undef     isnormal\n"
3024     "#define    isnormal(x)     __builtin_isnormal(x)";
3025 };
3026
3027 fix = {
3028     hackname = solaris_math_8;
3029     select = '@\(#\)math_c99.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
3030     bypass = "__GNUC__";
3031     files = iso/math_c99.h;
3032     c_fix = format;
3033     c_fix_arg = "#define\tsignbit(x)\t(sizeof(x) == sizeof(float) \\\n"
3034                 "\t\t\t   ? __builtin_signbitf(x) \\\n"
3035                 "\t\t\t   : sizeof(x) == sizeof(long double) \\\n"
3036                 "\t\t\t     ? __builtin_signbitl(x) \\\n"
3037                 "\t\t\t     : __builtin_signbit(x))";
3038     c_fix_arg = "^#define[ \t]+signbit\\(x\\)[ \t]+__builtin_signbit\\(x\\)";
3039     test_text =
3040     '#ident     "@(#)math_c99.h 1.9     04/11/01 SMI"'"\n"
3041     "#undef     signbit\n"
3042     "#define    signbit(x)      __builtin_signbit(x)";
3043 };
3044
3045 fix = {
3046     hackname = solaris_math_9;
3047     select = '@\(#\)math_c99.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
3048     bypass = "__GNUC__";
3049     files = iso/math_c99.h;
3050     c_fix = format;
3051     c_fix_arg = "#define\t%1(x, y)%2__builtin_%1(x, y)";
3052     c_fix_arg = "^#define[ \t]+([a-z]+)\\(x, y\\)([ \t]+)\\(\\(x\\) __builtin_[a-z]+\\(y\\)\\)";
3053     test_text =
3054     '#ident     "@(#)math_c99.h 1.9     04/11/01 SMI"'"\n"
3055     "#undef     isgreater\n"
3056     "#define    isgreater(x, y)         ((x) __builtin_isgreater(y))\n"
3057     "#undef     isgreaterequal\n"
3058     "#define    isgreaterequal(x, y)    ((x) __builtin_isgreaterequal(y))\n"
3059     "#undef     isless\n"
3060     "#define    isless(x, y)            ((x) __builtin_isless(y))\n"
3061     "#undef     islessequal\n"
3062     "#define    islessequal(x, y)       ((x) __builtin_islessequal(y))\n"
3063     "#undef     islessgreater\n"
3064     "#define    islessgreater(x, y)     ((x) __builtin_islessgreater(y))\n"
3065     "#undef     isunordered\n"
3066     "#define    isunordered(x, y)       ((x) __builtin_isunordered(y))";
3067 };
3068
3069 /*
3070  *  Sun Solaris 2.5.1, 2.6 defines PTHREAD_{MUTEX|COND}_INITIALIZER
3071  *  incorrectly, so we replace them with versions that correspond to
3072  *  the definition.  We also explicitly name this fix "1" and the next
3073  *  fix "2" because this one does not deal with the last field.  This
3074  *  fix needs to run before the next.
3075  */
3076 fix = {
3077     hackname = solaris_mutex_init_1;
3078     select = '@\(#\)pthread.h' "[ \t]+1.1[0-9][ \t]+9[567]/[0-9/]+ SMI";
3079     files = pthread.h;
3080     sed   = "/define[ \t]*PTHREAD_MUTEX_INI/s/{0, 0,/{{{0}, 0}, {{{0}}},/\n"
3081             "/define[ \t]*PTHREAD_COND_INI/s/{0,/{{{0},0},/";
3082     test_text =
3083     '#ident "@(#)pthread.h  1.16    97/05/05 SMI"'"\n"
3084     "#define PTHREAD_MUTEX_INITIALIZER\t{0, 0, 0}\n"
3085     "#define PTHREAD_COND_INITIALIZER\t{0, 0} /* */\n";
3086 };
3087
3088
3089 /*
3090  * Sun Solaris defines PTHREAD_MUTEX_INITIALIZER with a trailing
3091  * "0" for the last field of the pthread_mutex_t structure, which is
3092  * of type upad64_t, which itself is typedef'd to int64_t, but with
3093  * __STDC__ defined (e.g. by -ansi) it is a union. So change the
3094  * initializer to "{0}" instead
3095  */
3096 fix = {
3097     hackname = solaris_mutex_init_2;
3098     select = '@\(#\)pthread.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
3099     files = pthread.h;
3100     /*
3101      * On Solaris 10, this fix is unnecessary because upad64_t is
3102      * always defined correctly regardless of the definition of the
3103      * __STDC__ macro.  The first "mach" pattern matches up to
3104      * solaris9.  The second "mach" pattern will not match any two (or
3105      * more) digit solaris version, but it will match e.g. 2.5.1.
3106      */
3107     mach = '*-*-solaris2.[0-9]', '*-*-solaris2.[0-9][!0-9]*';
3108     c_fix = format;
3109     c_fix_arg = "#if __STDC__ - 0 == 0 && !defined(_NO_LONGLONG)\n"
3110                 "%0\n"
3111                 "#else\n"
3112                 "%1, {0}}%4\n"
3113                 "#endif";
3114     c_fix_arg = "(^#define[ \t]+PTHREAD_(MUTEX|COND)_INITIALIZER[ \t]+"
3115                 "(|/\*.*\*/[ \t]*\\\\\n[ \t]*)\\{.*)"
3116                 ",[ \t]*0\\}" "(|[ \t].*)$";
3117     test_text =
3118     '#ident "@(#)pthread.h  1.26  98/04/12 SMI"'"\n"
3119     "#define PTHREAD_MUTEX_INITIALIZER\t{{{0},0}, {{{0}}}, 0}\n"
3120     "#define PTHREAD_COND_INITIALIZER\t{{{0}, 0}, 0}\t/* DEFAULTCV */\n"
3121     "#define    PTHREAD_MUTEX_INITIALIZER               /* = DEFAULTMUTEX */    \\\\\n"
3122     "   {{0, 0, 0, DEFAULT_TYPE, _MUTEX_MAGIC}, {{{0}}}, 0}\n"
3123     "#define    PTHREAD_COND_INITIALIZER                /* = DEFAULTCV */       \\\\\n"
3124     "   {{{0, 0, 0, 0}, DEFAULT_TYPE, _COND_MAGIC}, 0}";
3125 };
3126
3127
3128 /*
3129  * Sun Solaris defines PTHREAD_RWLOCK_INITIALIZER with a "0" for some
3130  *  fields of the pthread_rwlock_t structure, which are of type
3131  *  upad64_t, which itself is typedef'd to int64_t, but with __STDC__
3132  *  defined (e.g. by -ansi) it is a union. So change the initializer
3133  *  to "{0}" instead.
3134  */
3135 fix = {
3136     hackname = solaris_rwlock_init_1;
3137     select = '@\(#\)pthread.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
3138     files = pthread.h;
3139     mach = '*-*-solaris*';
3140     c_fix = format;
3141     c_fix_arg = "#if __STDC__ - 0 == 0 && !defined(_NO_LONGLONG)\n"
3142                 "%0\n"
3143                 "#else\n"
3144                 "%1{0, 0, 0, {{0}, {0}, {0}}, {{0}, {0}}, {{0}, {0}}}\n"
3145                 "#endif";
3146     c_fix_arg = "(^#define[ \t]+PTHREAD_RWLOCK_INITIALIZER[ \t]+)"
3147                 "\\{0, 0, 0, \\{0, 0, 0\\}, \\{0, 0\\}, \\{0, 0\\}\\}[ \t]*$";
3148
3149     test_text =
3150     '#ident "@(#)pthread.h  1.26  98/04/12 SMI"'"\n"
3151     "#define PTHREAD_RWLOCK_INITIALIZER\t{0, 0, 0, {0, 0, 0}, {0, 0}, {0, 0}}";
3152 };
3153
3154
3155 /*
3156  * Sun Solaris defines PTHREAD_ONCE_INIT as an array containing a
3157  * structure.  As such, it need two levels of brackets, but only
3158  * contains one.  Wrap the macro definition in an extra layer.
3159  */
3160 fix = {
3161     hackname = solaris_once_init_1;
3162     select = '@\(#\)pthread.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
3163     files = pthread.h;
3164     mach = '*-*-solaris*';
3165     c_fix = format;
3166     c_fix_arg = "%1{%2}%3";
3167     c_fix_arg = "(^#define[ \t]+PTHREAD_ONCE_INIT[ \t]+\\{)([^}]+)(\\})[ \t]*$";
3168     test_text =
3169     '#pragma ident      "@(#)pthread.h  1.37    04/09/28 SMI"'"\n"
3170     "#define PTHREAD_ONCE_INIT\t{0, 0, 0, PTHREAD_ONCE_NOTDONE}";
3171 };
3172
3173
3174 /*
3175  * Sun Solaris defines PTHREAD_ONCE_INIT with a "0" for some
3176  *  fields of the pthread_once_t structure, which are of type
3177  *  upad64_t, which itself is typedef'd to int64_t, but with __STDC__
3178  *  defined (e.g. by -ansi) it is a union. So change the initializer
3179  *  to "{0}" instead.  This test relies on solaris_once_init_1.
3180  */
3181 fix = {
3182     hackname = solaris_once_init_2;
3183     select = '@\(#\)pthread.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
3184     files = pthread.h;
3185     /*
3186      * On Solaris 10, this fix is unnecessary because upad64_t is
3187      * always defined correctly regardless of the definition of the
3188      * __STDC__ macro.  The first "mach" pattern matches up to
3189      * solaris9.  The second "mach" pattern will not match any two (or
3190      * more) digit solaris version, but it will match e.g. 2.5.1.
3191      */
3192     mach = '*-*-solaris2.[0-9]', '*-*-solaris2.[0-9][!0-9]*';
3193     c_fix = format;
3194     c_fix_arg = "#if __STDC__ - 0 == 0 && !defined(_NO_LONGLONG)\n"
3195                 "%0\n"
3196                 "#else\n"
3197                 "%1{0}, {0}, {0}, {%3}%4\n"
3198                 "#endif";
3199     c_fix_arg = "(^#define[ \t]+PTHREAD_ONCE_INIT[ \t]+\\{\\{)"
3200                 "(0, 0, 0, )(PTHREAD_[A-Z_]+)(\\}\\})[ \t]*$";
3201     test_text =
3202     '#ident "@(#)pthread.h  1.26  98/04/12 SMI"'"\n"
3203     "#define PTHREAD_ONCE_INIT\t{{0, 0, 0, PTHREAD_ONCE_NOTDONE}}\n";
3204 };
3205
3206
3207 /*
3208  * Solaris 2.5.1 and 2.6 use an outdated prototype for send & recv
3209  * in sys/socket.h.  This is corrected in Solaris 7 and up.
3210  */
3211 fix = {
3212     hackname = solaris_socket;
3213     files = sys/socket.h;
3214     select = '@\(#\)socket.h' "[ \t]+1.[123][0-9][ \t]+9[567]/[0-9/]+ SMI";
3215     c_fix = format;
3216     c_fix_arg = "extern int %1(int, %2void *, int, int);";
3217     c_fix_arg = '^extern int (recv|send)\(int,'
3218                 ' (const )*char '
3219                 '\*, int, int\);';
3220
3221     test_text = '#ident   "@(#)socket.h   1.30    97/01/20 SMI"'"\n"
3222                 "extern int recv(int, char *, int, int);\n"
3223                 "extern int send(int, const char *, int, int);";
3224 };
3225
3226
3227 /*
3228  * Solaris 2.8 has what appears to be some gross workaround for 
3229  * some old version of their c++ compiler.  G++ doesn't want it
3230  * either, but doesn't want to be tied to SunPRO version numbers.
3231  */
3232 fix = {
3233     hackname = solaris_stdio_tag;
3234     files    = stdio_tag.h;
3235
3236     select   = '__cplusplus < 54321L';
3237     /* In Solaris 10, the code in stdio_tag.h is conditionalized on 
3238        "!defined(__GNUC__)" so we no longer need to fix it.  */
3239     bypass   = '__GNUC__';
3240     sed      = 's/defined(__cplusplus) && (__cplusplus < 54321L)/0/';
3241
3242     test_text = "#if\tdefined(__cplusplus) && (__cplusplus < 54321L)";
3243 };
3244
3245
3246 /*
3247  * Sun Solaris 2.5.1 doesn't define 'getpagesize' in <unistd.h>, as is done
3248  * on Solaris 2.6 and up.
3249  */
3250 fix = {
3251     hackname  = solaris_unistd;
3252     files = unistd.h;
3253     select = '@\(#\)unistd.h' "[ \t]+1.3[0-9][ \t]+9[567]/[0-9/]+ SMI";
3254     bypass = "getpagesize";
3255     c_fix = format;
3256     c_fix_arg = "extern int getpagesize();\n%0";
3257     c_fix_arg = '^extern (pid_t|int) getpgid\(.*\);';
3258     test_text = '#ident "@(#)unistd.h   1.33    95/08/28 SMI"'"\n"
3259                 "extern pid_t getpgid(pid_t);\n"
3260                 "extern int getpgid();";
3261 };
3262
3263
3264 /*
3265  * <widec.h> until Solaris 2.5.1 defines macros for a couple of <wchar.h>
3266  * functions, breaking their prototypes if that file is included afterwards.
3267  * Include <wchar.h> early to avoid this issue, as is done on Solaris 2.6
3268  * and up.
3269  */
3270 fix = {
3271     hackname  = solaris_widec;
3272     files     = widec.h;
3273     mach      = '*-*-solaris2.[0-5]';
3274     mach      = '*-*-solaris2.[0-5].*';
3275     bypass    = "include.*wchar\\.h";
3276     select    = "#include <euc.h>";
3277     c_fix     = format;
3278     c_fix_arg = "%0\n#include <wchar.h>";
3279     test_text = "#include <euc.h>";
3280 };
3281
3282
3283 /*
3284  *  a missing semi-colon at the end of the statsswtch structure definition.
3285  */
3286 fix = {
3287     hackname  = statsswtch;
3288     files     = rpcsvc/rstat.h;
3289     select    = "boottime$";
3290     c_fix     = format;
3291     c_fix_arg = "boottime;";
3292     test_text = "struct statswtch {\n  int boottime\n};";
3293 };
3294
3295
3296 /*
3297  *  Arrange for stdio.h to use stdarg.h to define __gnuc_va_list.
3298  *  On 4BSD-derived systems, stdio.h defers to machine/ansi.h; that's
3299  *  OK too.
3300  */
3301 fix = {
3302     hackname = stdio_stdarg_h;
3303     files    = stdio.h;
3304     bypass   = "include.*(stdarg\.h|machine/ansi\.h)";
3305     /*
3306      * On Solaris 10, this fix is unncessary; <stdio.h> includes
3307      * <iso/stdio_iso.h>, which includes <sys/va_list.h>.
3308       */
3309     mach     = '*-*-solaris2.1[0-9]*';
3310     not_machine = true;
3311
3312     c_fix     = wrap;
3313
3314     c_fix_arg = "#define __need___va_list\n#include <stdarg.h>\n";
3315
3316     test_text = "";
3317 };
3318
3319
3320 /*
3321  *  Don't use or define the name va_list in stdio.h.  This is for
3322  *  ANSI.  Note _BSD_VA_LIST_ is dealt with elsewhere.  The presence
3323  *  of __gnuc_va_list, __DJ_va_list, or _G_va_list is taken to
3324  *  indicate that the header knows what it's doing -- under SUSv2,
3325  *  stdio.h is required to define va_list, and we shouldn't break
3326  *  that.  On IRIX 6.5, internal/wchar_core.h used to get its
3327  *  definition of va_list from stdio.h.  Since this doesn't happen any
3328  *  longer, use __gnuc_va_list there, too.
3329  */
3330 fix = {
3331     hackname = stdio_va_list;
3332     files    = stdio.h;
3333     files    = internal/stdio_core.h;
3334     files    = internal/wchar_core.h;
3335     bypass   = '__gnuc_va_list|_BSD_VA_LIST_|__DJ_va_list|_G_va_list';
3336     /* 
3337      * On Solaris 10, the definition in 
3338      * <stdio.h> is guarded appropriately by the _XPG4 feature macro; 
3339      * there is therefore no need for this fix there.
3340      */
3341     mach = '*-*-solaris2.1[0-9]*';
3342     not_machine = true;
3343
3344     /*
3345      * Use __gnuc_va_list in arg types in place of va_list.
3346      * On 386BSD use __gnuc_va_list instead of _VA_LIST_.  On Tru64 UNIX V5.1A
3347      * use __gnuc_va_list instead of __VA_LIST__.  We're hoping the
3348      * trailing parentheses and semicolon save all other systems from this.
3349      * Define __not_va_list__ (something harmless and unused)
3350      * instead of va_list.
3351      * Don't claim to have defined va_list.
3352      */
3353     sed = "s@[ \t]va_list\\([ \t)]\\)@ __gnuc_va_list\\1@\n"
3354           "s@(va_list)&@(__gnuc_va_list)\\&@\n"
3355           "s@ _VA_LIST_));@ __gnuc_va_list));@\n"
3356           "s@ __VA_LIST__));@ __gnuc_va_list));@\n"
3357           "s@ va_list@ __not_va_list__@\n"
3358           "s@\\*va_list@*__not_va_list__@\n"
3359           "s@ __va_list)@ __gnuc_va_list)@\n"
3360           "s@typedef[ \t]\\(.*\\)[ \t]va_list[ \t]*;"
3361            "@typedef \\1 __not_va_list__;@\n"
3362           "s@typedef[ \t]*__va_list__@typedef __gnuc_va_list@\n"
3363           "s@GNUC_VA_LIST@GNUC_Va_LIST@\n"
3364           "s@_VA_LIST_DEFINED@_Va_LIST_DEFINED@\n"
3365           "s@_NEED___VA_LIST@_NEED___Va_LIST@\n"
3366           "s@VA_LIST@DUMMY_VA_LIST@\n"
3367           "s@_Va_LIST@_VA_LIST@";
3368     test_text = "extern void mumble( va_list);";
3369 };
3370
3371
3372 /*
3373  *  Fix headers that use va_list from stdio.h to use the updated
3374  *  va_list from the stdio_va_list change.  Note _BSD_VA_LIST_ is
3375  *  dealt with elsewhere.  The presence of __gnuc_va_list,
3376  *  __DJ_va_list, or _G_va_list is taken to indicate that the header
3377  *  knows what it's doing.
3378  */
3379 fix = {
3380     hackname = stdio_va_list_clients;
3381     files    = com_err.h;
3382     files    = cps.h;
3383     files    = curses.h;
3384     files    = krb5.h;
3385     files    = lc_core.h;
3386     files    = pfmt.h;
3387     files    = wchar.h;
3388     files    = curses_colr/curses.h;
3389     bypass   = '__gnuc_va_list|_BSD_VA_LIST_|__DJ_va_list|_G_va_list';
3390     /* Don't fix, if we use va_list from stdarg.h, or if the use is
3391        otherwise protected.  */
3392     bypass   = 'include <stdarg\.h>|#ifdef va_start';
3393
3394     /*
3395      * Use __gnuc_va_list in arg types in place of va_list.
3396      * On 386BSD use __gnuc_va_list instead of _VA_LIST_.  On Tru64 UNIX V5.1A
3397      * use __gnuc_va_list instead of __VA_LIST__.  We're hoping the
3398      * trailing parentheses and semicolon save all other systems from this.
3399      * Define __not_va_list__ (something harmless and unused)
3400      * instead of va_list.
3401      * Don't claim to have defined va_list.
3402      */
3403     sed = "s@[ \t]va_list\\([ \t)]\\)@ __gnuc_va_list\\1@\n"
3404           "s@(va_list)&@(__gnuc_va_list)\\&@\n"
3405           "s@ _VA_LIST_));@ __gnuc_va_list));@\n"
3406           "s@ __VA_LIST__));@ __gnuc_va_list));@\n"
3407           "s@ va_list@ __not_va_list__@\n"
3408           "s@\\*va_list@*__not_va_list__@\n"
3409           "s@ __va_list)@ __gnuc_va_list)@\n"
3410           "s@typedef[ \t]\\(.*\\)[ \t]va_list[ \t]*;"
3411            "@typedef \\1 __not_va_list__;@\n"
3412           "s@typedef[ \t]*__va_list__@typedef __gnuc_va_list@\n"
3413           "s@GNUC_VA_LIST@GNUC_Va_LIST@\n"
3414           "s@_VA_LIST_DEFINED@_Va_LIST_DEFINED@\n"
3415           "s@_NEED___VA_LIST@_NEED___Va_LIST@\n"
3416           "s@VA_LIST@DUMMY_VA_LIST@\n"
3417           "s@_Va_LIST@_VA_LIST@";
3418     test_text = "extern void mumble( va_list);";
3419 };
3420
3421
3422 /*
3423  *  "!__STDC__" or "__STDC__==0" or "__STDC__!=1" or "__STDC__-0==0"
3424  *  is "!defined( __STRICT_ANSI__ )"
3425  */
3426 fix = {
3427     hackname = strict_ansi_not;
3428     select   = "^([ \t]*#[ \t]*if.*)"
3429                "(!__STDC__"
3430                "|__STDC__[ \t]*==[ \t]*0"
3431                "|__STDC__[ \t]*!=[ \t]*1"
3432                "|__STDC__[ \t]*-[ \t]*0[ \t]*==[ \t]*0)";
3433     /* Tru64 UNIX V4.0F/V5.1 <standards.h> supports GCC usage of __STDC__. */
3434     bypass = 'GNU and MIPS C compilers define __STDC__ differently';
3435     /* GNU gmp.h uses "__STDC__ != 1" only if __SCO_VERSION__, which
3436        is not defined by GCC, so it is safe.  */
3437     bypass = '__SCO_VERSION__.*__STDC__ != 1';
3438     c_test   = stdc_0_in_system_headers;
3439
3440     c_fix     = format;
3441     c_fix_arg = "%1 !defined(__STRICT_ANSI__)";
3442
3443     test_text = "#if !__STDC__ \n"
3444                 "#if __STDC__ == 0\n"
3445                 "#if __STDC__ != 1\n"
3446                 "#if __STDC__ - 0 == 0"
3447                "/* not std C */\nint foo;\n"
3448                "\n#end-end-end-end-if :-)";
3449 };
3450
3451 /*
3452  *  "__STDC__-0==0"
3453  *  is "!defined( __STRICT_ANSI__ )" on continued #if-s
3454  */
3455 fix = {
3456     hackname = strict_ansi_not_ctd;
3457     files    = math.h, limits.h, stdio.h, signal.h,
3458                stdlib.h, sys/signal.h, time.h;
3459     /*
3460      * Starting at the beginning of a line, skip white space and
3461      * a leading "(" or "&&" or "||".  One of those must be found.
3462      * Then, zero, one or more copies of a "defined(_FOO_BAR_) &&"
3463      * expression.  If these are nested, then they must accumulate
3464      * because we won't match any closing parentheses.  Finally,
3465      * after skipping over all that, we must then match our suspect
3466      * phrase:  "__STDC__-0==0" with or without white space.
3467      */
3468     select   = "^([ \t]*" '(\(|&&|\|\|)'
3469                "([ \t(]*!*[ \t]*defined\\([a-zA-Z_0-9]+\\)[ \t]*[|&][|&])*"
3470                "[ \t(]*)"
3471                "(__STDC__[ \t]*(|-[ \t]*0[ \t]*)==[ \t]*0)";
3472     c_test   = stdc_0_in_system_headers;
3473
3474     c_fix     = format;
3475     c_fix_arg = "%1 !defined(__STRICT_ANSI__)";
3476
3477     test_text = "#if 1 && \\\\\n"
3478                "&& defined(mumbling) |& (__STDC__ - 0 == 0) \\\\\n"
3479                "( __STDC__ == 0 && !defined(_XOPEN_SOURCE) \\\\\n"
3480                "|| __STDC__ - 0 == 0 ) /* not std C */\n"
3481                "int foo;\n#endif";
3482 };
3483
3484
3485 /*
3486  *  "__STDC__!=0" or "__STDC__==1" or "__STDC__-0==1"
3487  *  is "defined( __STRICT_ANSI__ )"
3488  */
3489 fix = {
3490     hackname = strict_ansi_only;
3491     select   = "^([ \t]*#[ \t]*if.*)"
3492                "(__STDC__[ \t]*!=[ \t]*0"
3493                "|__STDC__[ \t]*==[ \t]*1"
3494                "|__STDC__[ \t]*-[ \t]*0[ \t]*==[ \t]*1"
3495                "|__STDC__[ \t]*-[ \t]*0[ \t]*!=[ \t]*0)";
3496     c_test   = stdc_0_in_system_headers;
3497
3498     c_fix     = format;
3499     c_fix_arg = "%1 defined(__STRICT_ANSI__)";
3500
3501     test_text = "#if __STDC__ == 1 /* is std C\n */\nint foo;\n#endif";
3502 };
3503
3504
3505 /*
3506  *  IRIX 4.0.5 <rpc/xdr.h> uses struct __file_s
3507  *  in prototype without previous definition.
3508  */
3509 fix = {
3510     hackname  = struct_file;
3511     files     = rpc/xdr.h;
3512     select    = '^.*xdrstdio_create.*struct __file_s';
3513     c_fix     = format;
3514     c_fix_arg = "struct __file_s;\n%0";
3515     test_text = "extern void xdrstdio_create( struct __file_s* );";
3516 };
3517
3518
3519 /*
3520  *  IRIX 4.0.5 <rpc/auth.h> uses struct sockaddr
3521  *  in prototype without previous definition.
3522  *
3523  *  Don't fix OpenBSD, which uses struct sockaddr_in prototyping the same
3524  *  function, and does define it.
3525  */
3526 fix = {
3527     hackname  = struct_sockaddr;
3528     files     = rpc/auth.h;
3529     select    = "^.*authdes_create.*struct sockaddr[^_]";
3530     bypass    = "<sys/socket\.h>";
3531     bypass    = "struct sockaddr;\n";
3532     c_fix     = format;
3533     c_fix_arg = "struct sockaddr;\n%0";
3534     test_text = "extern AUTH* authdes_create( struct sockaddr* );";
3535 };
3536
3537
3538 /*
3539  *  Apply fix this to all OSs since this problem seems to effect
3540  *  more than just SunOS.
3541  */
3542 fix = {
3543     hackname = sun_auth_proto;
3544     files    = rpc/auth.h;
3545     files    = rpc/clnt.h;
3546     files    = rpc/svc.h;
3547     files    = rpc/xdr.h;
3548     bypass   = "__cplusplus";
3549     /*
3550      *  Select those files containing '(*name)()'.
3551      */
3552     select    = '\(\*[a-z][a-z_]*\)\(\)';
3553
3554     c_fix     = format;
3555     c_fix_arg = "#ifdef __cplusplus\n%1(...);%2\n"
3556                 "#else\n%1();%2\n#endif";
3557     c_fix_arg = '(.*\(\*[a-z][a-z_]*\))\(\);(.*)';
3558
3559     test_text =
3560     "struct auth_t {\n"
3561     "    int (*name)(); /* C++ bad */\n"
3562     "};";
3563 };
3564
3565
3566 /*
3567  *  Fix bogus #ifdef on SunOS 4.1.
3568  */
3569 fix = {
3570     hackname  = sun_bogus_ifdef;
3571     files     = "hsfs/hsfs_spec.h";
3572     files     = "hsfs/iso_spec.h";
3573     select    = '#ifdef(.*\|\|.*)';
3574     c_fix     = format;
3575     c_fix_arg = "#if%1";
3576
3577     test_text = "#ifdef  __i386__ || __vax__ || __sun4c__";
3578 };
3579
3580
3581 /*
3582  *  Fix the CAT macro in SunOS memvar.h.
3583  */
3584 fix = {
3585     hackname  = sun_catmacro;
3586     files     = pixrect/memvar.h;
3587     select    = "^#define[ \t]+CAT\\(a,b\\).*";
3588     c_fix     = format;
3589
3590     c_fix_arg =
3591     "#ifdef __STDC__\n"
3592     "#  define CAT(a,b) a##b\n"
3593     "#else\n%0\n#endif";
3594
3595     test_text =
3596     "#define CAT(a,b)\ta/**/b";
3597 };
3598
3599
3600 /*
3601  *  Fix return type of free and {c,m,re}alloc in <malloc.h> on SunOS 4.1.
3602  *  Also fix return type of {m,re}alloc in <malloc.h> on sysV68
3603  */
3604 fix = {
3605     hackname = sun_malloc;
3606     files    = malloc.h;
3607     bypass   = "_CLASSIC_ANSI_TYPES";
3608
3609     sed   = "s/typedef[ \t]char \\*\tmalloc_t/typedef void \\*\tmalloc_t/g";
3610     sed   = "s/int[ \t][ \t]*free/void\tfree/g";
3611     sed   = "s/char\\([ \t]*\\*[ \t]*malloc\\)/void\\1/g";
3612     sed   = "s/char\\([ \t]*\\*[ \t]*realloc\\)/void\\1/g";
3613     sed   = "s/char\\([ \t]*\\*[ \t]*calloc\\)/void\\1/g";
3614
3615     test_text =
3616     "typedef char *\tmalloc_t;\n"
3617     "int \tfree();\n"
3618     "char*\tmalloc();\n"
3619     "char*\tcalloc();\n"
3620     "char*\trealloc();";
3621 };
3622
3623
3624 /*
3625  *  Check for yet more missing ';' in struct (in SunOS 4.0.x)
3626  */
3627 fix = {
3628     hackname = sun_rusers_semi;
3629     files    = rpcsvc/rusers.h;
3630     select   = "_cnt$";
3631     sed      = "/^struct/,/^};/s/_cnt$/_cnt;/";
3632     test_text = "struct mumble\n  int _cnt\n};";
3633 };
3634
3635
3636 /*
3637  *  signal.h on SunOS defines signal using (),
3638  *  which causes trouble when compiling with g++ -pedantic.
3639  */
3640 fix = {
3641     hackname = sun_signal;
3642     files    = sys/signal.h;
3643     files    = signal.h;
3644     select   = "^void\t" '\(\*signal\(\)\)\(\);.*';
3645
3646     c_fix     = format;
3647     c_fix_arg =
3648           "#ifdef __cplusplus\n"
3649           "void\t(*signal(...))(...);\n"
3650           "#else\n%0\n#endif";
3651
3652     test_text = "void\t(*signal())();";
3653 };
3654
3655
3656 /*
3657  *  Correct the return type for strlen in strings.h in SunOS 4.
3658  */
3659 fix = {
3660     hackname = sunos_strlen;
3661     files    = strings.h;
3662     select   = "int[ \t]*strlen\\(\\);(.*)";
3663     c_fix     = format;
3664     c_fix_arg = "__SIZE_TYPE__ strlen();%1";
3665     test_text = " int\tstrlen(); /* string length */";
3666 };
3667
3668
3669 /*
3670  *  Disable apparent native compiler optimization cruft in SVR4.2 <string.h>
3671  *  that is visible to any ANSI compiler using this include.  Simply
3672  *  delete the lines that #define some string functions to internal forms.
3673  */
3674 fix = {
3675     hackname = svr4_disable_opt;
3676     files    = string.h;
3677     select   = '#define.*__std_hdr_';
3678     sed      = '/#define.*__std_hdr_/d';
3679     test_text = "#define strlen __std_hdr_strlen\n";
3680 };
3681
3682
3683 /*
3684  *  Conditionalize some of <sys/endian.h> on __GNUC__ and __GNUG__.
3685  *  On some systems (UnixWare 2, UnixWare 7), the file is byteorder.h
3686  *  but we still "hijack" it and redirect it to the GNU byteorder.h..
3687  */
3688 #ifdef SVR5
3689 fix = {
3690     hackname = svr4_endian;
3691     files    = sys/endian.h;
3692 #ifdef LATER
3693     /*
3694      * since we emit our own sys/byteorder.h,
3695      * this fix can never be applied to that file.
3696      */
3697     files    = sys/byteorder.h;
3698 #endif
3699     bypass   = '__GNUC__';
3700
3701     sed      = "/#\tifdef\t__STDC__/i\\\n"
3702                "#   if !defined (__GNUC__) && !defined (__GNUG__)\n";
3703
3704     sed      = "/#\t\tinclude\t<sys\\/byteorder.h>/s/\t\t/   /";
3705
3706     sed      = "/#   include\t<sys\\/byteorder.h>/i\\\n"
3707                "#   endif /* !defined (__GNUC__) && !defined (__GNUG__) */\n";
3708 };
3709 #endif /* SVR5 */
3710
3711
3712 /*
3713  *  Remove useless extern keyword from struct forward declarations
3714  *  in <sys/stream.h> and <sys/strsubr.h>
3715  */
3716 #ifdef SVR4
3717 fix = {
3718     hackname = svr4_extern_struct;
3719     files    = sys/stream.h;
3720     files    = sys/strsubr.h;
3721     select   = 'extern struct [a-z_]*;';
3722     sed      = 's/extern struct \([a-z][a-z_]*\)/struct \1/';
3723 };
3724 #endif
3725
3726 /*
3727  *  Fix declarations of `ftw' and `nftw' in <ftw.h>.  On some/most SVR4
3728  *  systems the file <ftw.h> contains extern declarations of these
3729  *  functions followed by explicitly `static' definitions of these
3730  *  functions... and that's not allowed according to ANSI C.  (Note
3731  *  however that on Solaris, this header file glitch has been pre-fixed by
3732  *  Sun.  In the Solaris version of <ftw.h> there are no static
3733  *  definitions of any function so we don't need to do any of this stuff
3734  *  when on Solaris.
3735  */
3736 #ifdef SVR4
3737 #ifndef SOLARIS
3738 fix = {
3739     hackname = svr4_ftw;
3740     files    = ftw.h;
3741     select   = '^extern int ftw\(const';
3742
3743     sed = '/^extern int ftw(const/i' "\\\n"
3744             "#if !defined(_STYPES)\\\n"
3745             "static\\\n"
3746             "#else\\\n"
3747             "extern\\\n"
3748             "#endif";
3749     sed = 's/extern \(int ftw(const.*\)$/\1/';
3750     sed = "/^extern int nftw/i\\\n"
3751             "#if defined(_STYPES)\\\n"
3752             "static\\\n"
3753             "#else\\\n"
3754             "extern\\\n"
3755             "#endif";
3756     sed = 's/extern \(int nftw.*\)$/\1/';
3757     sed = "/^extern int ftw(),/c\\\n"
3758             "#if !defined(_STYPES)\\\n"
3759             "static\\\n"
3760             "#else\\\n"
3761             "extern\\\n"
3762             "#endif\\\n"
3763             "  int ftw();\\\n"
3764             "#if defined(_STYPES)\\\n"
3765             "static\\\n"
3766             "#else\\\n"
3767             "extern\\\n"
3768             "#endif\\\n"
3769             "  int nftw();";
3770 };
3771 #endif
3772 #endif
3773
3774
3775 /*
3776  *   Fix broken decl of getcwd present on some svr4 systems.
3777  */
3778 fix = {
3779     hackname = svr4_getcwd;
3780     files    = stdlib.h;
3781     files    = unistd.h;
3782     files    = prototypes.h;
3783     select   = 'getcwd\(char \*, int\)';
3784
3785     c_fix     = format;
3786     c_fix_arg = "getcwd(char *, size_t)";
3787
3788     test_text = "extern char* getcwd(char *, int);";
3789 };
3790
3791
3792 /*
3793  *  Wrap some files on System V r4 and DYNIX/ptx systems with
3794  *  #ifdef _KERNEL, presumably to prevent kernel headers from
3795  *  leaking into userspace.  This may not be necessary at all,
3796  *  but it was in the old scripts, so it seems safest to keep it for now.
3797  */
3798 fix = {
3799     /* Can't name this with _kernel, or the test case will hit the bypass! */
3800     hackname = svr4_krnl;
3801     /* Since I'm rather unsure about the validity of this, limit it
3802      * to the specific systems it was operating on before.  It should
3803      * also be bypassed for i?86-*-sysv4.3uw2, by that rule, but I didn't
3804      * see an easy way to do that.  Hopefully it will be harmless
3805      * in any case. -- Nathanael */
3806     mach     = '*-*-sysv4*';
3807     mach     = 'i?86-sequent-ptx*';
3808     files    = fs/rfs/rf_cache.h;
3809     files    = sys/erec.h;
3810     files    = sys/err.h;
3811     files    = sys/char.h;
3812     files    = sys/getpages.h;
3813     files    = sys/map.h;
3814     files    = sys/cmn_err.h;
3815     files    = sys/kdebugger.h;
3816
3817     /* This bypass will match _KERNEL, __KERNEL, __KERNEL__, etc.
3818      * It will also match SVR4_KERNEL_CHECK, which means that the
3819      * testsuite case will always be bypassed.  Which is fine with me. */
3820     bypass   = '_KERNEL';
3821
3822     c_fix     = wrap;
3823     c_fix_arg = "#ifdef _KERNEL\n";
3824     c_fix_arg = "#endif /* _KERNEL */\n";
3825
3826     /* There's no reasonable test for this given that we don't know exactly
3827      * what problem inspired it in the first place. */
3828     test_text = "";
3829 };
3830
3831
3832 /*
3833  *  Delete any #defines of `__i386' which may be present in <ieeefp.h>.  They
3834  *  tend to conflict with the compiler's own definition of this symbol.  (We
3835  *  will use the compiler's definition.)
3836  *  Likewise __sparc, for Solaris, and __i860, and a few others
3837  *  (guessing it is necessary for all of them).
3838  */
3839 #ifdef SVR4
3840 fix = {
3841     hackname = svr4_mach_defines;
3842     files    = ieeefp.h;
3843     select   = "#define[ \t]*__(i386|mips|sparc|m88k|m68k)[ \t]";
3844     sed      = "/#define[ \t]*__\\(i386|mips|sparc|m88k|m68k\\)[ \t]/d";
3845 };
3846 #endif
3847
3848
3849 /*
3850  *  Fix declarations of `makedev', `major', and `minor' in <sys/mkdev.h>.
3851  *  They are declared as non-static then immediately redeclared as static.
3852  */
3853 #ifdef SVR5
3854 fix = {
3855     hackname = svr4_mkdev;
3856     files    = sys/mkdev.h;
3857     select   = '^static';
3858
3859     sed      = "/^dev_t makedev(/s/^/static /";
3860     sed      = "/^major_t major(/s/^/static /";
3861     sed      = "/^minor_t minor(/s/^/static /";
3862 };
3863 #endif /* SVR5 */
3864
3865
3866 /*
3867  *  Fix reference to NC_NPI_RAW in <sys/netcspace.h>.
3868  *  Also fix types of array initializers.
3869  */
3870 #ifdef SVR4
3871 fix = {
3872     hackname = svr4_netcspace;
3873     files    = sys/netcspace.h;
3874     select   = 'NC_NPI_RAW';
3875     sed      = 's/NC_NPI_RAW/NC_TPI_RAW/g';
3876     sed      = 's/NC_/(unsigned long) NC_/';
3877 };
3878 #endif
3879
3880 /*
3881  *  Fix reference to NMSZ in <sys/adv.h>.
3882  */
3883 #ifdef SVR4
3884 fix = {
3885     hackname = svr4_nmsz;
3886     files    = sys/adv.h;
3887     select   = '\[NMSZ\]';
3888     sed      = 's/\[NMSZ\]/\[RFS_NMSZ\]/g';
3889 };
3890 #endif
3891
3892
3893 /*
3894  * Some SVR4 systems supposedly use these non-ANSI preprocessor directives.
3895  */
3896 #ifdef SVR4
3897 fix = {
3898     hackname  = svr4_preproc_lint_on;
3899     select    = '#lint\(on\)';
3900     c_fix     = format;
3901     c_fix_arg = 'defined(lint)';
3902     test_text = "#if #lint(on)";
3903 };
3904 fix = {
3905     hackname  = svr4_preproc_lint_off;
3906     select    = '#lint\(off\)';
3907     c_fix     = format;
3908     c_fix_arg = '!defined(lint)';
3909     test_text = "#if #lint(off)";
3910 };
3911 fix = {
3912     hackname  = svr4_preproc_machine;
3913     select    = '#(machine|system|cpu)\(([^)]*)\)';
3914     c_fix     = format;
3915     c_fix_arg = 'defined(__%1__)';
3916     test_text = "#if #machine(i386) || #system(vax) || #cpu(sparc)";
3917 };
3918 #endif
3919
3920
3921 /*
3922  *   Fix broken decl of profil present on some svr4 systems.
3923  */
3924 fix = {
3925     hackname = svr4_profil;
3926     files    = stdlib.h;
3927     files    = unistd.h;
3928
3929     select    =
3930     'profil\(unsigned short \*, unsigned int, unsigned int, unsigned int\)';
3931     /* The fix is wrong on IRIX 5/6 and creates a conflict with another
3932        prototype in <sys/profil.h>.  */
3933     bypass    = 'Silicon Graphics';
3934     c_fix     = format;
3935     c_fix_arg = 'profil(unsigned short *, size_t, int, unsigned int)';
3936
3937     test_text =
3938     'profil(unsigned short *, unsigned int, unsigned int, unsigned int);';
3939 };
3940
3941
3942 /*
3943  *  Convert functions to prototype form, and fix arg names in <sys/stat.h>.
3944  */
3945 #ifdef SVR4
3946 fix = {
3947     hackname = svr4_proto_form;
3948     files    = sys/stat.h;
3949     select   = 'const extern';
3950
3951     sed      = "/^stat([ \t]*[^c]/ {\nN\nN\n"
3952                    "s/(.*)\\n/( /\n"
3953                    "s/;\\n/, /\n"
3954                    "s/;$/)/\n"  "}";
3955
3956     sed      = "/^lstat([ \t]*[^c]/ {\nN\nN\n"
3957                    "s/(.*)\\n/( /\n"
3958                    "s/;\\n/, /\n"
3959                    "s/;$/)/\n"  "}";
3960
3961     sed      = "/^fstat([ \t]*[^i]/ {\nN\nN\n"
3962                    "s/(.*)\\n/( /\n"
3963                    "s/;\\n/, /\n"
3964                    "s/;$/)/\n"  "}";
3965
3966     sed      = "/^mknod([ \t]*[^c]/{\nN\nN\nN\n"
3967                    "s/(.*)\\n/( /\n"
3968                    "s/;\\n/, /g\n"
3969                    "s/;$/)/\n"  "}";
3970
3971     sed      = "1,$s/\\([^A-Za-z]\\)path\\([^A-Za-z]\\)/\\1__path\\2/g";
3972     sed      = "1,$s/\\([^A-Za-z]\\)buf\\([^A-Za-z]\\)/\\1__buf\\2/g";
3973     sed      = "1,$s/\\([^A-Za-z]\\)fd\\([^A-Za-z]\\)/\\1__fd\\2/g";
3974     sed      = "1,$s/ret\\([^u]\\)/__ret\\1/g";
3975     sed      = "1,$s/\\([^_]\\)mode\\([^_]\\)/\\1__mode\\2/g";
3976     sed      = "1,$s/\\([^_r]\\)dev\\([^_]\\)/\\1__dev\\2/g";
3977 };
3978 #endif
3979
3980 /*
3981  *  Add a prototyped declaration of mmap to <sys/mman.h>.
3982  */
3983 #ifdef SVR4
3984 fix = {
3985     hackname = svr4_proto_mmap;
3986     files    = sys/mman.h;
3987     select   = '^extern caddr_t mmap();$';
3988     sed = '/^extern caddr_t mmap();$/c' "\\\n"
3989           "#ifdef __STDC__\\\n"
3990           "extern caddr_t mmap (caddr_t, size_t, int, int, int, off_t);\\\n"
3991           "#else /* !defined(__STDC__) */\\\n"
3992           "extern caddr_t mmap ();\\\n"
3993           "#endif /* !defined(__STDC__) */\\\n";
3994 };
3995 #endif
3996
3997 /*
3998  *  Add a #define of _SIGACTION_ into <sys/signal.h>.
3999  */
4000 #ifdef SVR4
4001 fix = {
4002     hackname = svr4_sigaction;
4003     files    = sys/signal.h;
4004     sed      = "/^struct sigaction {/i\\\n"
4005                "#define _SIGACTION_";
4006     sed      = 's/(void *(\*)())/(void (*)(int))/';
4007 };
4008 #endif
4009
4010
4011 /*
4012  * Correct types for signal handler constants like SIG_DFL; they might be
4013  * void (*) (), and should be void (*) (int).  C++ doesn't like the
4014  * old style.
4015  */
4016 fix = {
4017     hackname = svr4_sighandler_type;
4018     files = sys/signal.h;
4019     select = 'void *\(\*\)\(\)';
4020     c_fix = format;
4021     c_fix_arg = "void (*)(int)";
4022     test_text = "#define SIG_DFL (void(*)())0\n"
4023                 "#define SIG_IGN (void (*)())0\n";
4024 };
4025
4026 /*
4027  *  Put storage class at start of decl, to avoid warning.
4028  */
4029 #ifdef SVR4
4030 fix = {
4031     hackname = svr4_storage_class;
4032     files    = rpc/types.h;
4033     select   = 'const extern';
4034     sed      = 's/const extern/extern const/g';
4035 };
4036 #endif
4037
4038
4039 /*
4040  *  Some SysV r4 systems, including Sequent's DYNIX/ptx, use the local
4041  *  function 'getrnge' in <regexp.h> before they declare it.  For these
4042  *  systems add a 'static int' declaration of 'getrnge' into <regexp.h>
4043  *  early on.
4044  *
4045  *  'getrnge' traditionally manipulates a file-scope global called 'size',
4046  *  so put the declaration right after the declaration of 'size'.
4047  *
4048  *  Don't do this if there is already a `static void getrnge' declaration
4049  *  present, since this would cause a redeclaration error.  Solaris 2.x has
4050  *  such a declaration.
4051  */
4052 fix = {
4053     hackname  = svr4_undeclared_getrnge;
4054     files     = regexp.h;
4055     select    = "getrnge";
4056     bypass    = "static void getrnge";
4057     c_fix     = format;
4058     c_fix_arg = "%0\n"
4059                 "static int getrnge ();";
4060     c_fix_arg = "^static int[ \t]+size;";
4061     test_text = "static int size;\n"
4062                 "/* stuff which calls getrnge() */\n"
4063                 "static getrnge()\n"
4064                 "{}";
4065 };
4066
4067
4068 /*
4069  *  Like svr4_mach_defines, but with newfangled syntax.
4070  *  Source lines are of #define __i386 #machine(i386).   Delete them.
4071  */
4072 #ifdef SVR5
4073 fix = {
4074     hackname = svr5_mach_defines;
4075     files    = ieeefp.h;
4076     select   = "#define[ \t]*__i386.*\(i386\)";
4077     sed      = "/#define[ \t]*__i386.*/d";
4078 };
4079 #endif /*  SVR5 */
4080
4081
4082 /*
4083  *  Fix return value of mem{ccpy,chr,cpy,set} and str{len,spn,cspn}
4084  *  in string.h on sysV68
4085  *  Correct the return type for strlen in string.h on Lynx.
4086  *  Correct the argument type for ffs in string.h on Alpha OSF/1 V2.0.
4087  *  Add missing const for strdup on OSF/1 V3.0.
4088  *  On sysV88 layout is slightly different.
4089  */
4090 fix = {
4091     hackname = sysv68_string;
4092     files    = testing.h;
4093     files    = string.h;
4094     bypass   = "_CLASSIC_ANSI_TYPES";
4095
4096     sed = "s/extern[ \t]*int[ \t]*strlen();/extern unsigned int strlen();/";
4097     sed = "s/extern[ \t]*int[ \t]*ffs[ \t]*(long);/extern int ffs(int);/";
4098     sed = "s/strdup(char \\*s1);/strdup(const char *s1);/";
4099
4100     sed = "/^extern char$/N";
4101     sed = "s/^extern char\\(\\n\t\\*memccpy(),\\)$/extern void\\1/";
4102
4103     sed = "/^extern int$/N";
4104     sed = "s/^extern int\\(\\n\tstrlen(),\\)/extern size_t\\1/";
4105
4106     sed = "/^\tstrncmp(),$/N";
4107     sed = 's/^\(' "\t" 'strncmp()\),\n\(' "\t" 'strlen(),\)$/'
4108             '\1;' "\\\nextern unsigned int\\\n\\2/";
4109
4110     test_text =
4111     "extern int strlen();\n"
4112
4113     "extern int ffs(long);\n"
4114
4115     "extern char\n"
4116     "\t*memccpy(),\n"
4117     "\tmemcpy();\n"
4118
4119     "extern int\n"
4120     "\tstrcmp(),\n"
4121     "\tstrncmp(),\n"
4122     "\tstrlen(),\n"
4123     "\tstrspn();\n"
4124
4125     "extern int\n"
4126     "\tstrlen(), strspn();";
4127 };
4128
4129
4130 /*
4131  *  Fix return type of calloc, malloc, realloc, bsearch and exit
4132  */
4133 fix = {
4134     hackname = sysz_stdlib_for_sun;
4135     files    = stdlib.h;
4136     bypass   = "_CLASSIC_ANSI_TYPES";
4137
4138     select    = "char[ \t]*\\*[ \t]*(calloc|malloc|realloc|bsearch)[ \t]*\\(";
4139     c_fix     = format;
4140     c_fix_arg = "void *\t%1(";
4141
4142     test_text =
4143     "extern char*\tcalloc(size_t);\n"
4144     "extern char*\tmalloc(size_t);\n"
4145     "extern char*\trealloc(void*,size_t);\n"
4146     "extern char*\tbsearch(void*,size_t,size_t);\n";
4147 };
4148
4149
4150 /*
4151  * __thread is now a keyword.
4152  */
4153 fix = {
4154     hackname  = thread_keyword;
4155     files     = "pthread.h";
4156     files     = "bits/sigthread.h";
4157     select    = "([* ])__thread([,)])";
4158     c_fix     = format;
4159     c_fix_arg = "%1__thr%2";
4160
4161     test_text =
4162         "extern int pthread_create (pthread_t *__restrict __thread,\n"
4163         "extern int pthread_kill (pthread_t __thread, int __signo);\n"
4164         "extern int pthread_cancel (pthread_t __thread);";
4165 };
4166
4167 /*
4168  *  if the #if says _cplusplus, not the double underscore __cplusplus
4169  *  that it should be
4170  */
4171 fix = {
4172     hackname = tinfo_cplusplus;
4173     files    = tinfo.h;
4174     select   = "[ \t]_cplusplus";
4175
4176     c_fix     = format;
4177     c_fix_arg = " __cplusplus";
4178     test_text = "#ifdef _cplusplus\nint bogus;\n#endif";
4179 };
4180
4181
4182 /*
4183  *  function parameter to atexit is missing "void" on VAX Ultrix 4.3.
4184  */
4185 fix = {
4186     hackname = ultrix_atexit_param;
4187     files    = stdlib.h;
4188     select   = 'atexit\(.*\(\)';
4189
4190     c_fix     = format;
4191     c_fix_arg = "atexit( void (*__func)( void )";
4192
4193     test_text = "int atexit( void (*__func)() );\n";
4194 };
4195
4196
4197 /*
4198  *  parameter to atof not const on DECstation Ultrix V4.0 and NEWS-OS 4.2R.
4199  */
4200 fix = {
4201     hackname = ultrix_atof_param;
4202     files    = math.h;
4203     select   = "atof\\([ \t]*char";
4204
4205     c_fix     = format;
4206     c_fix_arg = "atof(const char";
4207
4208     test_text = "extern double atof( char *__nptr);\n";
4209 };
4210
4211
4212 /*
4213  *  parameters not const on DECstation Ultrix V4.0 and OSF/1.
4214  */
4215 fix = {
4216     hackname  = ultrix_const;
4217     files     = stdio.h;
4218     select    = 'perror\( char \*';
4219
4220     c_fix     = format;
4221     c_fix_arg = "%1 const %3 *__";
4222     c_fix_arg = "([ \t*](perror|fputs|fwrite|scanf|fscanf)\\(.*)"
4223                 "[ \t]+(char|void) \\*__";
4224
4225     test_text =
4226     "extern void perror( char *__s );\n"
4227     "extern int fputs( char *__s, FILE *);\n"
4228     "extern size_t fwrite( void *__ptr, size_t, size_t, FILE *);\n"
4229     "extern int fscanf( FILE *__stream, char *__format, ...);\n"
4230     "extern int scanf( char *__format, ...);\n";
4231 };
4232
4233
4234 /*
4235  *  parameters not const on DECstation Ultrix V4.0 and OSF/1.
4236  */
4237 fix = {
4238     hackname  = ultrix_const2;
4239     files     = stdio.h;
4240
4241     select    = '\*fopen\( char \*';
4242     c_fix     = format;
4243     c_fix_arg = "%1( const char *%3, const char *";
4244     c_fix_arg = "([ \t*](fopen|sscanf|popen|tempnam))\\("
4245                "[ \t]*char[ \t]*\\*([^,]*),"
4246                "[ \t]*char[ \t]*\\*[ \t]*";
4247
4248     test_text =
4249     "extern FILE *fopen( char *__filename, char *__type );\n"
4250     "extern int sscanf( char *__s, char *__format, ...);\n"
4251     "extern FILE *popen(char *, char *);\n"
4252     "extern char *tempnam(char*,char*);\n";
4253 };
4254
4255
4256 /*
4257  *  parameters not const on Ultrix V4.3.
4258  */
4259 fix = {
4260     hackname  = ultrix_const3;
4261     files     = stdio.h;
4262     select    = 'fdopen\( .*, char \*';
4263
4264     c_fix     = format;
4265     c_fix_arg = "%1 const %3 *__";
4266     c_fix_arg = "([ \t*](fdopen)\\(.*)"
4267                 "[ \t]+(char|void) \\*__";
4268
4269     test_text =
4270     "extern FILE *      fdopen( int __filedes, char *__type );\n";
4271 };
4272
4273
4274 /*
4275  * Ultrix V4.[35] puts the declaration of uname before the definition
4276  * of struct utsname, so the prototype (added by fixproto) causes havoc.
4277  */
4278 fix = {
4279     hackname = ultrix_fix_fixproto;
4280     files    = sys/utsname.h;
4281     select   = ULTRIX;
4282
4283     c_fix     = format;
4284     c_fix_arg = "struct utsname;\n%0";
4285     c_fix_arg = "^[ \t]*extern[ \t]*int[ \t]*uname\\(\\);";
4286
4287     test_text =
4288     "/* ULTRIX's uname */\nextern\tint\tuname();";
4289 };
4290
4291
4292 /*
4293  *  Check for bad #ifdef line (in Ultrix 4.1)
4294  */
4295 fix = {
4296     hackname = ultrix_ifdef;
4297     select   = "^#ifdef KERNEL[ \t]+&&";
4298     files    = sys/file.h;
4299
4300     c_fix     = format;
4301     c_fix_arg = "#if defined(KERNEL) &&";
4302
4303     test_text =
4304     "#ifdef KERNEL\t&& defined( mumbojumbo )\nint oops;\n#endif";
4305 };
4306
4307
4308 /*
4309  *  Add once-only latch to Ultrix V4.3 locale.h.
4310  */
4311 fix = {
4312     hackname = ultrix_locale;
4313     files  = locale.h;
4314     select = "@\\(#\\)locale\\.h.*6\\.1.*\\(ULTRIX\\)";
4315     c_fix  = wrap;
4316     test_text =
4317     "@(#)locale.h   6.1     (ULTRIX)\n";
4318 };
4319
4320
4321 /*
4322  * Strip "|| CC$gfloat" from Ultrix math headers.
4323  */
4324 fix = {
4325     hackname  = ultrix_math_ifdef;
4326     files     = sys/limits.h;
4327     files     = float.h;
4328     files     = math.h;
4329     select    = "^(#if.*)\\|\\|[ \t]+CC\\$[a-z]+";
4330     c_fix     = format;
4331     c_fix_arg = "%1";
4332
4333     test_text = '#if     defined(__GFLOAT) || CC\$gfloat';
4334 };
4335
4336
4337 /*
4338  *  Avoid nested comments on Ultrix 4.3.
4339  */
4340 fix = {
4341     hackname = ultrix_nested_ioctl;
4342     files    = sys/ioctl.h;
4343     select   = "^/\\* #define SIOCSCREEN";
4344     sed      = "/^\\/\\* #define SIOCSCREEN/s@/\\* screend@*//* screend@";
4345     test_text =
4346     "/* #define SIOCSCREENON _IOWR('i', 49, int)"
4347     "/* screend, net/gw_screen.h */\n";
4348 };
4349
4350
4351 fix = {
4352     hackname = ultrix_nested_svc;
4353     files    = rpc/svc.h;
4354     select   = "^ \\*[ \t]*int protocol;  */\\*";
4355     sed      = "s@^\\( \\*\tint protocol;  \\)/\\*@\\1*/ /*@";
4356     test_text =
4357     " *\tint protocol;  /* like TCP or UDP\n";
4358 };
4359
4360
4361 /*
4362  *  Add missing prototype for lstat and define for S_ISLNK
4363  *  in Ultrix V4.3 sys/stat.h.
4364  */
4365 fix = {
4366     hackname = ultrix_stat;
4367     files  = sys/stat.h;
4368     select = "@\\(#\\)stat\\.h.*6\\.1.*\\(ULTRIX\\)";
4369     sed    = "/^#define[ \t]S_IFPORT[ \t]*S_IFIFO$/a\\\n"
4370                 "\\\n"
4371                 "/* macro to test for symbolic link */\\\n"
4372                 "#define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)\\\n"
4373                 "\n";
4374     sed    = "/^[ \t]*fstat(),$/a\\\n"
4375                 "\tlstat(),\n";
4376     test_text =
4377     "@(#)stat.h      6.1     (ULTRIX)\n"
4378     "#define S_IFPORT S_IFIFO\n"
4379     "\tfstat(),\n/* THE INSERTION LINE FAILS ON BSD SYSTEMS */";
4380 };
4381
4382
4383 /*
4384  *  Check for superfluous `static' (in Ultrix 4.2)
4385  *  On Ultrix 4.3, includes of other files (r3_cpu.h,r4_cpu.h) is broken.
4386  */
4387 fix = {
4388     hackname = ultrix_static;
4389     files  = machine/cpu.h;
4390     select = '#include "r[34]_cpu';
4391     sed    = "s/^static struct tlb_pid_state/struct tlb_pid_state/";
4392     sed    = 's/^#include "r3_cpu\.h"$/#include <machine\/r3_cpu\.h>/';
4393     sed    = 's/^#include "r4_cpu\.h"$/#include <machine\/r4_cpu\.h>/';
4394     test_text =
4395     "static struct tlb_pid_state {\n"
4396     "#include \"r3_cpu.h\"\n";
4397 };
4398
4399
4400 /*
4401  *  Add missing declarations to Ultrix V4.3 stdlib.h.
4402  */
4403 fix = {
4404     hackname = ultrix_stdlib;
4405     files  = stdlib.h;
4406     select = "@\\(#\\)stdlib\\.h.*6\\.1.*\\(ULTRIX\\)";
4407
4408     sed    = "/^char.*getenv( const char .* );.*$/a\\\n"
4409     "int\t\tsetenv( const char *__name, const char *__val, int __ovrwrt );\\\n"
4410     "void\t\tunsetenv( const char *__name );\\\n"
4411     "int\t\tputenv( char *__s );\n";
4412
4413     sed    = "/^char.*getenv();.*$/a\\\n"
4414     "int\tsetenv();\\\n"
4415     "void\tunsetenv();\\\n"
4416     "int\tputenv();\n";
4417
4418     test_text =
4419     "@(#)stdlib.h      6.1     (ULTRIX)\n"
4420     "char *             getenv( const char *__name );\n"
4421     "char       *getenv();\n";
4422 };
4423
4424
4425 /*
4426  *  Add once-only latch to Ultrix V4.3 strings.h.
4427  */
4428 fix = {
4429     hackname = ultrix_strings;
4430     files  = strings.h;
4431     select = "@\\(#\\)strings\\.h.*6\\.1.*\\(ULTRIX\\)";
4432     c_fix  = wrap;
4433     test_text =
4434     "@(#)strings.h   6.1     (ULTRIX)\n";
4435 };
4436
4437
4438 /*
4439  *  Add missing declarations to Ultrix V4.3 strings.h.
4440  */
4441 fix = {
4442     hackname = ultrix_strings2;
4443     files  = strings.h;
4444     select = "@\\(#\\)strings\\.h.*6\\.1.*\\(ULTRIX\\)";
4445
4446     sed    = "/^.*strncmp( const .* );.*/a\\\n"
4447     "\\\n"
4448     "extern int\\\n"
4449     "\tstrcasecmp( const char *__s1, const char *__s2),\\\n"
4450     "\tstrncasecmp( const char *__s1, const char *__s2, size_t __n );\n";
4451
4452     sed    = "/^.*strncmp();.*/a\\\n"
4453     "extern int\\\n"
4454     "\tstrcasecmp(),\\\n"
4455     "\tstrncasecmp();\n";
4456
4457     test_text =
4458     "@(#)strings.h      6.1     (ULTRIX)\n"
4459     "\tstrncmp( const char *__s1, const char *__s2, size_t __n );\n"
4460     "\tstrncmp();\n";
4461 };
4462
4463
4464 /*
4465  *  Add missing declarations to Ultrix V4.3 sys/time.h.
4466  */
4467 fix = {
4468     hackname = ultrix_sys_time;
4469     files  = sys/time.h;
4470     select = "@\\(#\\)time\\.h.*6\\.1.*\\(ULTRIX\\)";
4471
4472     sed    = "/^extern.*time_t.*time( time_t .* );.*$/a\\\n"
4473     "\\\n"
4474     "extern int adjtime(struct timeval *, struct timeval *);\\\n"
4475     "extern int getitimer(int, struct itimerval *);\\\n"
4476     "extern int setitimer(int, struct itimerval *, struct itimerval *);\\\n"
4477     "extern int gettimeofday(struct timeval *, struct timezone *);\\\n"
4478     "extern int settimeofday(struct timeval *, struct timezone *);\\\n"
4479     "extern void profil(const void *, size_t, size_t, unsigned int);\\\n"
4480     "extern int stime(const time_t *);\\\n"
4481     "extern int utimes(const char *, const struct timeval[2]);\\\n"
4482     "extern int select(int, fd_set *, fd_set *, fd_set *, struct timeval *);\n";
4483
4484     sed    = "/^extern.*double.*difftime();.*$/a\\\n"
4485     "extern\tint adjtime();\\\n"
4486     "extern\tint getitimer();\\\n"
4487     "extern\tint setitimer();\\\n"
4488     "extern\tint gettimeofday();\\\n"
4489     "extern\tint settimeofday();\\\n"
4490     "extern\tvoid profil();\\\n"
4491     "extern\tint stime();\\\n"
4492     "extern\tint utimes();\\\n"
4493     "extern\tint select();\n";
4494
4495     test_text =
4496     "@(#)time.h      6.1     (ULTRIX)\n"
4497     "extern time_t              time( time_t *__tloc );\n"
4498     "extern double difftime();\n";
4499 };
4500
4501
4502 /*
4503  *  Add missing declarations to Ultrix V4.3 unistd.h.
4504  */
4505 fix = {
4506     hackname = ultrix_unistd;
4507     files  = unistd.h;
4508     select = "@\\(#\\)unistd\\.h.*6\\.1.*\\(ULTRIX\\)";
4509
4510     sed    = "/^[ \t]*getgroups(),.*$/a\\\n"
4511     "\tgetpagesize(),\n";
4512
4513     sed    = "/^[ \t]*fork(),.*$/a\\\n"
4514     "\tvfork(),\n";
4515
4516     test_text =
4517     "@(#)unistd.h      6.1     (ULTRIX)\n"
4518     "\tgetgroups(),\n"
4519     "\tfork(),\n";
4520 };
4521
4522
4523 /*
4524  * On Cray Unicos/Mk some standard headers use the C99 keyword "restrict"
4525  * which must be replaced by __restrict__ for GCC.
4526  */
4527 fix = {
4528     hackname = unicosmk_restrict;
4529     files    = stdio.h;
4530     files    = stdlib.h;
4531     files    = wchar.h;
4532     mach     = "*-*-unicosmk*";
4533     select   = "(\\*[ \t]*)restrict([ \t]+)";
4534
4535     c_fix     = format;
4536     c_fix_arg = "%1__restrict__%2";
4537
4538     test_text = "void f (char * restrict x);";
4539 };
4540
4541 /*
4542  * If arpa/inet.h prototypes are incompatible with the ones we just
4543  * installed in <sys/byteorder.h>, just remove the protos.
4544  * Because of this close association, this patch must be applied only
4545  * on those systems where the replacement byteorder header is installed.
4546  */
4547 fix = {
4548     hackname = uw7_byteorder_fix;
4549     files    = arpa/inet.h;
4550     select   = "in_port_t";
4551     test     = "-f sys/byteorder.h";
4552 #ifndef SVR5
4553         mach = "*-*-sysv4*";
4554         mach = "i?86-*-sysv5*";
4555         mach = "i?86-*-udk*";
4556         mach = "i?86-*-solaris2.[0-4]";
4557         mach = "powerpcle-*-solaris2.[0-4]";
4558         mach = "sparc-*-solaris2.[0-4]";
4559 #endif /* SVR5 */
4560
4561     c_fix     = format;
4562     c_fix_arg = "";
4563     c_fix_arg = "^extern.*[ \t](htons|ntohs).*\\(in_port_t\\).*;";
4564
4565     test_text = "extern in_port_t\thtons __P((in_port_t));\n"
4566                 "extern in_port_t\tntohs __P((in_port_t));"
4567                 "`[ ! -d $DESTDIR/sys ] && mkdir $DESTDIR/sys\n"
4568                 "echo '/* DUMMY */' >> sys/byteorder.h`";
4569 };
4570
4571
4572 /*
4573  *  Fix definitions of macros used by va-i960.h in VxWorks header file.
4574  */
4575 fix = {
4576     hackname  = va_i960_macro;
4577     files     = arch/i960/archI960.h;
4578     select    = "__(vsiz|vali|vpad|alignof__)";
4579
4580     c_fix     = format;
4581     c_fix_arg = "__vx%1";
4582
4583     test_text =
4584     "extern int __vsiz vsiz;\n"
4585     "extern int __vali vali;\n"
4586     "extern int __vpad vpad;\n"
4587     "#define __alignof__(x) ...";
4588 };
4589
4590
4591 /*
4592  *  AIX and Interix headers define NULL to be cast to a void pointer,
4593  *  which is illegal in ANSI C++.
4594  */
4595 fix = {
4596     hackname  = void_null;
4597     files     = curses.h;
4598     files     = dbm.h;
4599     files     = locale.h;
4600     files     = stdio.h;
4601     files     = stdlib.h;
4602     files     = string.h;
4603     files     = time.h;
4604     files     = unistd.h;
4605     files     = sys/dir.h;
4606     files     = sys/param.h;
4607     files     = sys/types.h;
4608     /* avoid changing C++ friendly NULL */
4609     bypass    = __cplusplus;
4610     select    = "^#[ \t]*define[ \t]+NULL[ \t]+\\(\\(void[ \t]*\\*\\)0\\)";
4611     c_fix     = format;
4612     c_fix_arg = "#define NULL 0";
4613     test_text = "# define\tNULL \t((void *)0)  /* typed NULL */";
4614 };
4615
4616
4617 /*
4618  *  Make VxWorks header which is almost gcc ready fully gcc ready.
4619  */
4620 fix = {
4621     hackname = vxworks_gcc_problem;
4622     files    = types/vxTypesBase.h;
4623     select   = "__GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__";
4624
4625     sed = "s/#ifdef __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__/"
4626           "#if 1/";
4627
4628     sed = "/[ \t]size_t/i\\\n"
4629         "#ifndef _GCC_SIZE_T\\\n"
4630         "#define _GCC_SIZE_T\n";
4631
4632     sed = "/[ \t]size_t/a\\\n"
4633         "#endif\n";
4634
4635     sed = "/[ \t]ptrdiff_t/i\\\n"
4636         "#ifndef _GCC_PTRDIFF_T\\\n"
4637         "#define _GCC_PTRDIFF_T\n";
4638
4639     sed = "/[ \t]ptrdiff_t/a\\\n"
4640         "#endif\n";
4641
4642     sed = "/[ \t]wchar_t/i\\\n"
4643         "#ifndef _GCC_WCHAR_T\\\n"
4644         "#define _GCC_WCHAR_T\n";
4645
4646     sed = "/[ \t]wchar_t/a\\\n"
4647         "#endif\n";
4648
4649     test_text =
4650     "#ifdef __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__\n"
4651     "typedef unsigned int size_t;\n"
4652     "typedef long ptrdiff_t;\n"
4653     "typedef unsigned short wchar_t;\n"
4654     "#endif /* __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__ */\n";
4655 };
4656
4657
4658 /*
4659  *  Fix VxWorks <time.h> to not require including <vxTypes.h>.
4660  */
4661 fix = {
4662     hackname  = vxworks_needs_vxtypes;
4663     files     = time.h;
4664     select    = "uint_t([ \t]+_clocks_per_sec)";
4665     c_fix     = format;
4666     c_fix_arg = "unsigned int%1";
4667     test_text = "uint_t\t_clocks_per_sec;";
4668 };
4669
4670
4671 /*
4672  *  Fix VxWorks <sys/stat.h> to not require including <vxWorks.h>.
4673  */
4674 fix = {
4675     hackname = vxworks_needs_vxworks;
4676     files    = sys/stat.h;
4677     test     = " -r types/vxTypesOld.h";
4678     test     = " -n \"`egrep '#include' $file`\"";
4679     test     = " -n \"`egrep ULONG $file`\"";
4680     select   = "#[ \t]define[ \t]+__INCstath";
4681
4682     sed = "/#[ \t]define[ \t][ \t]*__INCstath/a\\\n"
4683           "#include <types/vxTypesOld.h>\n";
4684
4685     test_text = "`touch types/vxTypesOld.h`"
4686     "#include </dev/null> /* ULONG */\n"
4687     "# define\t__INCstath <sys/stat.h>";
4688 };
4689
4690
4691 /*
4692  *  Another bad dependency in VxWorks 5.2 <time.h>.
4693  */
4694 fix = {
4695     hackname = vxworks_time;
4696     files    = time.h;
4697     test     = " -r vxWorks.h";
4698
4699     select    = "#[ \t]*define[ \t]+VOIDFUNCPTR[ \t].*";
4700     c_fix     = format;
4701
4702     c_fix_arg =
4703     "#ifndef __gcc_VOIDFUNCPTR_defined\n"
4704     "#ifdef __cplusplus\n"
4705     "typedef void (*__gcc_VOIDFUNCPTR) (...);\n"
4706     "#else\n"
4707     "typedef void (*__gcc_VOIDFUNCPTR) ();\n"
4708     "#endif\n"
4709     "#define __gcc_VOIDFUNCPTR_defined\n"
4710     "#endif\n"
4711     "#define VOIDFUNCPTR __gcc_VOIDFUNCPTR";
4712
4713     test_text = "`touch vxWorks.h`"
4714                 "#define VOIDFUNCPTR (void(*)())";
4715 };
4716
4717
4718 /* 
4719  * WindISS math.h headers include bogus extern declarations of 
4720  * numerous math functions that conflict with libstdc++-v3.
4721  */
4722 fix = {
4723     hackname  = windiss_math1;
4724     files     = math.h;
4725     mach      = "*-*-windiss";
4726     sed       = "s|inline long double cosl.*|#ifndef __GNUC__|";
4727
4728     test_text = "inline long double cosl(long double);";
4729 };
4730
4731 fix = {
4732     hackname  = windiss_math2;
4733     files     = math.h;
4734     mach      = "*-*-windiss";
4735     sed       = "s|/\\* long double declarations \\*/|"
4736                   "#endif /* __GNUC__ */|";
4737
4738     test_text = "/* long double declarations */";
4739 };
4740
4741 /*
4742  * WindISS headers include "diab/va_list.h" instead of "stdarg.h"
4743  */
4744 fix = {
4745     select    = '(#include.*)diab/va_list.h';
4746     hackname  = windiss_valist;
4747     sed       = "s|diab/va_list.h|stdarg.h|";
4748     mach      = "*-*-windiss";
4749
4750     test_text = "#include <diab/va_list.h>";
4751 };
4752
4753 /*
4754  *  There are several name conflicts with C++ reserved words in X11 header
4755  *  files.  These are fixed in some versions, so don't do the fixes if
4756  *  we find __cplusplus in the file.  These were found on the RS/6000.
4757  */
4758 fix = {
4759     hackname  = x11_class;
4760     files     = X11/ShellP.h;
4761     bypass    = __cplusplus;
4762     select    = "^([ \t]*char \\*)class;(.*)";
4763     c_fix     = format;
4764     c_fix_arg = "#ifdef __cplusplus\n%1c_class;%2\n"
4765                 "#else\n%1class;%2\n#endif";
4766     test_text =
4767     "struct {\n"
4768     "   char *class;\n"
4769     "} mumble;\n";
4770 };
4771
4772
4773 /*
4774  *  class in Xm/BaseClassI.h
4775  */
4776 fix = {
4777     hackname = x11_class_usage;
4778     files    = Xm/BaseClassI.h;
4779     bypass   = "__cplusplus";
4780
4781     select    = " class\\)";
4782     c_fix     = format;
4783     c_fix_arg = " c_class)";
4784
4785     test_text = "extern mumble (int  class);\n";
4786 };
4787
4788
4789 /*
4790  *  new in Xm/Traversal.h
4791  */
4792 fix = {
4793     hackname = x11_new;
4794     files    = Xm/Traversal.h;
4795     bypass   = __cplusplus;
4796
4797     sed      = "/Widget\told, new;/i\\\n"
4798                    "#ifdef __cplusplus\\\n"
4799                    "\tWidget\told, c_new;\\\n"
4800                    "#else\n";
4801
4802     sed      = "/Widget\told, new;/a\\\n"
4803                    "#endif\n";
4804
4805     sed      = "s/Widget new,/Widget c_new,/g";
4806     test_text =
4807     "struct wedge {\n"
4808     "   Widget\told, new; /* fixinc check FAILS ON BSD */\n"
4809     "};\nextern Wedged( Widget new, Widget old );";
4810 };
4811
4812
4813 /*
4814  *  Incorrect sprintf declaration in X11/Xmu.h
4815  */
4816 fix = {
4817     hackname = x11_sprintf;
4818     files    = X11/Xmu.h;
4819     files    = X11/Xmu/Xmu.h;
4820     select   = "^extern char \\*\tsprintf\\(\\);$";
4821
4822     c_fix     = format;
4823     c_fix_arg = "#ifndef __STDC__\n%0\n#endif /* !defined __STDC__ */";
4824
4825     test_text = "extern char *\tsprintf();";
4826 };
4827
4828 /*EOF*/