OSDN Git Service

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