OSDN Git Service

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