OSDN Git Service

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