OSDN Git Service

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