OSDN Git Service

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