OSDN Git Service

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