OSDN Git Service

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