OSDN Git Service

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