OSDN Git Service

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