OSDN Git Service

* fixinc/inclhack.def (sun_malloc): Handle `calloc'.
[pf3gnuchains/gcc-fork.git] / gcc / fixinc / inclhack.def
1
2 /* -*- Mode: C -*-  */
3
4 autogen definitions fixincl;
5
6 /* Define all the fixes we know about for repairing damaged headers.
7    Please see the README before adding or changing entries in this file.
8
9    Set up a debug test so we can make the templates emit special
10    code while debugging these fixes:  */
11
12 #ifdef DEBUG
13 FIXINC_DEBUG = yes;
14 #endif
15
16 /* DO NOT DO BROKEN FIXES (empty replacement fixes) */
17
18 /*
19  *  Purge some HP-UX 11 files that are only broken after they are "fixed".
20  */
21 fix = {
22     hackname = AAA_ki_iface;
23     files    = sys/ki_iface.h;
24     select   = 'These definitions are for HP Internal developers';
25     replace; /* empty replacement -> no fixing the file */
26 };
27
28
29 /*
30  *  Purge some HP-UX 11 files that are only broken after they are "fixed".
31  */
32 fix = {
33     hackname = AAA_ki;
34     files    = sys/ki.h;
35     select   = '11.00 HP-UX LP64';
36     replace; /* empty replacement -> no fixing the file */
37 };
38
39
40 /*
41  *  Purge some HP-UX 11 files that are only broken after they are "fixed".
42  */
43 fix = {
44     hackname = AAA_ki_calls;
45     files    = sys/ki_calls.h;
46     select   = 'kthread_create_caller_t';
47     replace; /* empty replacement -> no fixing the file */
48 };
49
50
51 /*
52  *  Purge some HP-UX 11 files that are only broken after they are "fixed".
53  */
54 fix = {
55     hackname = AAA_ki_defs;
56     files    = sys/ki_defs.h;
57     select   = 'Kernel Instrumentation Definitions';
58     replace; /* empty replacement -> no fixing the file */
59 };
60
61
62 /*
63  *  This file on SunOS 4 has a very large macro.  When the sed loop
64  *  tries pull it in, it overflows the pattern space size of the SunOS
65  *  sed (GNU sed does not have this problem).  Since the file does not
66  *  require fixing, we remove it from the fixed directory.
67  */
68 fix = {
69     hackname = AAA_bad_fixes;
70     files    = sundev/ipi_error.h;
71     /* shouldn't there be a select expression here??? */
72     replace; /* empty replacement -> no fixing the file */
73 };
74
75
76 /*
77  *  Purge some HP-UX 11 files that are only broken after they are "fixed".
78  */
79 fix = {
80     hackname = AAA_time;
81     files    = sys/time.h;
82     select   = '11.0 and later representation of ki time';
83     replace; /* empty replacement -> no fixing the file */
84 };
85
86 /* And now, the real fixes, replacement text fixes first: */
87
88 /*
89  *  Completely replace <_int_varargs.h> with a file that includes gcc's
90  *  stdarg.h or varargs.h files as appropriate on DG/UX
91  */
92 fix = {
93     hackname = AAB_dgux_int_varargs;
94     files    = _int_varargs.h;
95     replace  = "#ifndef __INT_VARARGS_H
96 \#define __INT_VARARGS_H
97
98 /************************************************************************/
99 /* _INT_VARARGS.H - Define the common stuff for varargs/stdarg/stdio.   */
100 /************************************************************************/
101
102 /*
103 ** This file is a DG internal header.  Never include this
104 ** file directly.
105 */
106
107 \#ifndef ___int_features_h
108 \#include <sys/_int_features.h>
109 \#endif
110
111 \#if !(defined(_VA_LIST) || defined(_VA_LIST_))
112 \#define _VA_LIST
113 \#define _VA_LIST_
114
115 \#ifdef __LINT__
116
117 \#ifdef __STDC__
118 typedef void * va_list;
119 \#else
120 typedef char * va_list;
121 \#endif
122
123 \#else
124 \#if _M88K_ANY
125
126 \#if defined(__DCC__)
127
128 typedef struct {
129       int     next_arg;
130       int     *mem_ptr;
131       int     *reg_ptr;
132 } va_list;
133
134 \#else  /* ! defined(__DCC__) */
135
136 typedef struct {
137       int  __va_arg;       /* argument number */
138       int *__va_stk;       /* start of args passed on stack */
139       int *__va_reg;       /* start of args passed in regs */
140 } va_list;
141
142 \#endif  /* ! defined(__DCC__) */
143
144 \#elif _IX86_ANY
145
146 \#if defined(__GNUC__) || defined(__STDC__)
147 typedef void * va_list;
148 \#else
149 typedef char * va_list;
150 \#endif
151
152 \#endif  /*  _IX86_ANY */
153
154 \#endif /* __LINT__ */
155 \#endif /*  !(defined(_VA_LIST) || defined(_VA_LIST_)) */
156 \#endif /*  #ifndef __INT_VARARGS_H  */\n";
157 };
158
159
160 /*
161  *  This fixes __FD_ZERO bug for linux 2.x.y (x <= 2 && y <= some n)
162  */
163 fix = {
164     hackname = AAB_fd_zero_asm_posix_types_h;
165     files    = asm/posix_types.h;
166     mach     = 'i[34567]86-*-linux-gnu*';
167     bypass   = '} while';
168
169     /*
170      * Define _POSIX_TYPES_H_WRAPPER at the end of the wrapper, not
171      * the start, so that if #include_next gets another instance of
172      * the wrapper, this will follow the #include_next chain until
173      * we arrive at the real <asm/posix_types.h>.
174      */
175     replace  =
176
177 '/* This file fixes a bug in the __FD_ZERO macro
178    for older versions of the Linux kernel. */
179 \#ifndef _POSIX_TYPES_H_WRAPPER
180 \#include <features.h>
181  \#include_next <asm/posix_types.h>
182
183 \#if defined(__FD_ZERO) && !defined(__GLIBC__)
184 \#undef __FD_ZERO
185 \#define __FD_ZERO(fdsetp) \\
186   do { \\
187     int __d0, __d1; \\
188                 __asm__ __volatile__("cld ; rep ; stosl" \\
189                         : "=&c" (__d0), "=&D" (__d1) \\
190                         : "a" (0), "0" (__FDSET_LONGS), \\
191                           "1" ((__kernel_fd_set *) (fdsetp)) :"memory"); \\
192   } while (0)
193 \#endif
194
195 \#define _POSIX_TYPES_H_WRAPPER
196 \#endif /* _POSIX_TYPES_H_WRAPPER */
197 ';
198 };
199
200
201 /*
202  *  This fixes __FD_ZERO bug for glibc-1.x
203  */
204 fix = {
205     hackname = AAB_fd_zero_gnu_types_h;
206     files    = gnu/types.h;
207     mach     = 'i[34567]86-*-linux-gnu*';
208
209     /*
210      * Define _TYPES_H_WRAPPER at the end of the wrapper, not
211      * the start, so that if #include_next gets another instance of
212      * the wrapper, this will follow the #include_next chain until
213      * we arrive at the real <gnu/types.h>.
214      */
215     replace  =
216
217 '/* This file fixes a bug in the __FD_ZERO macro present in glibc 1.x. */
218 \#ifndef _TYPES_H_WRAPPER
219 \#include <features.h>
220  \#include_next <gnu/types.h>
221
222 \#if defined(__FD_ZERO) && !defined(__GLIBC__)
223 \#undef __FD_ZERO
224 \# define __FD_ZERO(fdsetp) \\
225   do { \\
226     int __d0, __d1; \\
227         __asm__ __volatile__("cld ; rep ; stosl" \\
228                 : "=&c" (__d0), "=&D" (__d1) \\
229                 : "a" (0), "0" (__FDSET_LONGS), \\
230                   "1" ((__fd_set *) (fdsetp)) :"memory"); \\
231   } while (0)
232 \#endif
233
234 \#define _TYPES_H_WRAPPER
235 \#endif /* _TYPES_H_WRAPPER */
236 ';
237 };
238
239
240 /*
241  *  This fixes __FD_ZERO bug for glibc-2.0.x
242  */
243 fix = {
244     hackname = AAB_fd_zero_selectbits_h;
245     files    = selectbits.h;
246     mach     = 'i[34567]86-*-linux-gnu*';
247
248     /*
249      * Define _SELECTBITS_H_WRAPPER at the end of the wrapper, not
250      * the start, so that if #include_next gets another instance of
251      * the wrapper, this will follow the #include_next chain until
252      * we arrive at the real <selectbits.h>.
253      */
254     replace  =
255
256 '/* This file fixes a bug in the __FD_ZERO macro present in glibc 2.0.x. */
257 \#ifndef _SELECTBITS_H_WRAPPER
258 \#include <features.h>
259  \#include_next <selectbits.h>
260
261 \#if defined(__FD_ZERO) && defined(__GLIBC__) \\
262         && defined(__GLIBC_MINOR__) && __GLIBC__ == 2 \\
263         && __GLIBC_MINOR__ == 0
264 \#undef __FD_ZERO
265 \#define __FD_ZERO(fdsetp) \\
266   do { \\
267     int __d0, __d1; \\
268   __asm__ __volatile__ ("cld; rep; stosl" \\
269                         : "=&c" (__d0), "=&D" (__d1) \\
270                         : "a" (0), "0" (sizeof (__fd_set) \\
271                                         / sizeof (__fd_mask)), \\
272                           "1" ((__fd_mask *) (fdsetp)) \\
273                         : "memory"); \\
274   } while (0)
275 \#endif
276
277 \#define _SELECTBITS_H_WRAPPER
278 \#endif /* _SELECTBITS_H_WRAPPER */
279 ';
280 };
281
282
283 /*
284  *  Fix non-ANSI memcpy declaration that conflicts with gcc's builtin
285  *  declaration on Sun OS 4.x.  We must only fix this on Sun OS 4.x, because
286  *  many other systems have similar text but correct versions of the file.
287  *  To ensure only Sun's is fixed, we grep for a likely unique string.
288  *  Fix also on sysV68 R3V7.1 (head/memory.h\t50.1\t )
289  */
290 fix = {
291     hackname = AAB_sun_memcpy;
292     files    = memory.h;
293     select = "/\\*\t@\\(#\\)"
294              "(head/memory.h\t50.1\t "
295              "|memory\\.h 1\\.[2-4] 8./../.. SMI; from S5R2 1\\.2\t)\\*/";
296
297     replace =
298 '/* This file was generated by fixincludes */
299 \#ifndef __memory_h__
300 \#define __memory_h__
301
302 \#ifdef __STDC__
303 extern void *memccpy();
304 extern void *memchr();
305 extern void *memcpy();
306 extern void *memset();
307 \#else
308 extern char *memccpy();
309 extern char *memchr();
310 extern char *memcpy();
311 extern char *memset();
312 \#endif /* __STDC__ */
313
314 extern int memcmp();
315
316 \#endif /* __memory_h__ */
317 ';
318
319 };
320
321
322 /*
323  *  Completely replace <sys/byteorder.h>; with a file that implements gcc's
324  *  optimized byteswapping.  Restricted to "SVR4" machines until either
325  *  it is shown to be safe to replace this file always, or we get bolder ;-)
326  */
327 fix = {
328     hackname = AAB_svr4_replace_byteorder;
329 #ifndef SVR5
330     mach = "*-*-sysv4*";
331     mach = "i[34567]86-*-sysv5*";
332     mach = "i[34567]86-*-udk*";
333     mach = "i[34567]86-*-solaris2.[0-4]";
334     mach = "powerpcle-*-solaris2.[0-4]";
335     mach = "sparc-*-solaris2.[0-4]";
336 #endif /* SVR5 */
337     files    = sys/byteorder.h;
338     replace  = '#ifndef _SYS_BYTEORDER_H
339 \#define _SYS_BYTEORDER_H
340
341 /* Functions to convert `short\' and `long\' quantities from host byte order
342    to (internet) network byte order (i.e. big-endian).
343
344    Written by Ron Guilmette (rfg@ncd.com).
345
346    This isn\'t actually used by GCC.  It is installed by fixinc.svr4.
347
348    For big-endian machines these functions are essentially no-ops.
349
350    For little-endian machines, we define the functions using specialized
351    asm sequences in cases where doing so yields better code (e.g. i386).  */
352
353 \#if !defined (__GNUC__) && !defined (__GNUG__)
354 \#error You lose!  This file is only useful with GNU compilers.
355 \#endif
356
357 \#ifndef __BYTE_ORDER__
358 /* Byte order defines.  These are as defined on UnixWare 1.1, but with
359    double underscores added at the front and back.  */
360 \#define __LITTLE_ENDIAN__   1234
361 \#define __BIG_ENDIAN__      4321
362 \#define __PDP_ENDIAN__      3412
363 \#endif
364
365 \#ifdef __STDC__
366 static __inline__ unsigned long htonl (unsigned long);
367 static __inline__ unsigned short htons (unsigned int);
368 static __inline__ unsigned long ntohl (unsigned long);
369 static __inline__ unsigned short ntohs (unsigned int);
370 \#endif /* defined (__STDC__) */
371
372 \#if defined (__i386__)
373
374 \#ifndef __BYTE_ORDER__
375 \#define __BYTE_ORDER__ __LITTLE_ENDIAN__
376 \#endif
377
378 /* Convert a host long to a network long.  */
379
380 /* We must use a new-style function definition, so that this will also
381    be valid for C++.  */
382 static __inline__ unsigned long
383 htonl (unsigned long __arg)
384 {
385   register unsigned long __result;
386
387   __asm__ ("xchg%B0 %b0,%h0
388         ror%L0 $16,%0
389         xchg%B0 %b0,%h0" : "=q" (__result) : "0" (__arg));
390   return __result;
391 }
392
393 /* Convert a host short to a network short.  */
394
395 static __inline__ unsigned short
396 htons (unsigned int __arg)
397 {
398   register unsigned short __result;
399
400   __asm__ ("xchg%B0 %b0,%h0" : "=q" (__result) : "0" (__arg));
401   return __result;
402 }
403
404 \#elif ((defined (__i860__) && !defined (__i860_big_endian__))  \\
405        || defined (__ns32k__) || defined (__vax__)              \\
406        || defined (__spur__) || defined (__arm__))
407
408 \#ifndef __BYTE_ORDER__
409 \#define __BYTE_ORDER__ __LITTLE_ENDIAN__
410 \#endif
411
412 /* For other little-endian machines, using C code is just as efficient as
413    using assembly code.  */
414
415 /* Convert a host long to a network long.  */
416
417 static __inline__ unsigned long
418 htonl (unsigned long __arg)
419 {
420   register unsigned long __result;
421
422   __result = (__arg >> 24) & 0x000000ff;
423   __result |= (__arg >> 8) & 0x0000ff00;
424   __result |= (__arg << 8) & 0x00ff0000;
425   __result |= (__arg << 24) & 0xff000000;
426   return __result;
427 }
428
429 /* Convert a host short to a network short.  */
430
431 static __inline__ unsigned short
432 htons (unsigned int __arg)
433 {
434   register unsigned short __result;
435
436   __result = (__arg << 8) & 0xff00;
437   __result |= (__arg >> 8) & 0x00ff;
438   return __result;
439 }
440
441 \#else /* must be a big-endian machine */
442
443 \#ifndef __BYTE_ORDER__
444 \#define __BYTE_ORDER__ __BIG_ENDIAN__
445 \#endif
446
447 /* Convert a host long to a network long.  */
448
449 static __inline__ unsigned long
450 htonl (unsigned long __arg)
451 {
452   return __arg;
453 }
454
455 /* Convert a host short to a network short.  */
456
457 static __inline__ unsigned short
458 htons (unsigned int __arg)
459 {
460   return __arg;
461 }
462
463 \#endif /* big-endian */
464
465 /* Convert a network long to a host long.  */
466
467 static __inline__ unsigned long
468 ntohl (unsigned long __arg)
469 {
470   return htonl (__arg);
471 }
472
473 /* Convert a network short to a host short.  */
474
475 static __inline__ unsigned short
476 ntohs (unsigned int __arg)
477 {
478   return htons (__arg);
479 }
480 \#endif
481 ';
482 };
483
484
485 /*
486  *  Completely replace <sys/varargs.h> with a file that includes gcc's
487  *  stdarg.h or varargs.h files as appropriate.
488  */
489 #ifdef SVR4
490 fix = {
491     hackname = AAB_svr4_no_varargs;
492     files    = sys/varargs.h;
493     replace  = "/* This file was generated by fixincludes.  */\n"
494                "#ifndef _SYS_VARARGS_H\n"
495                "#define _SYS_VARARGS_H\n\n"
496
497                "#ifdef __STDC__\n"
498                "#include <stdarg.h>\n"
499                "#else\n"
500                "#include <varargs.h>\n"
501                "#endif\n\n"
502
503                "#endif  /* _SYS_VARARGS_H */\n";
504 };
505 #endif
506
507
508 /*
509  *  Cancel out ansi_compat.h on Ultrix.  Replace it with an empty file.
510  */
511 fix = {
512     hackname = AAB_ultrix_ansi_compat;
513     files    = ansi_compat.h;
514     select   = ULTRIX;
515     replace  = "/* This file intentionally left blank.  */\n";
516 };
517
518
519 /*
520  *  sys/wait.h on AIX 3.2.5 puts the declaration of wait3 before the
521  *  definition of struct rusage, so the prototype added by fixproto fails.
522  */
523 fix = {
524     hackname  = aix_syswait;
525     files     = sys/wait.h;
526     select    = "^extern pid_t wait3\\(\\);\n";
527     select    = "bos325,";
528     c_fix     = format;
529     c_fix_arg = "struct rusage;\n%0";
530     test_text = "/* bos325, */\n"
531     "extern pid_t wait3();\n"
532     "\t/* pid_t wait3(int *, int, struct rusage *); */";
533 };
534
535
536 /*
537  *  sys/signal.h on some versions of AIX uses volatile in the typedef of
538  *  sig_atomic_t, which causes gcc to generate a warning about duplicate
539  *  volatile when a sig_atomic_t variable is declared volatile, as
540  *  required by ANSI C.
541  */
542 fix = {
543     hackname  = aix_volatile;
544     files     = sys/signal.h;
545     select    = "typedef volatile int sig_atomic_t";
546     c_fix     = format;
547     c_fix_arg = "typedef int sig_atomic_t";
548     test_text = "typedef volatile int sig_atomic_t;";
549 };
550
551
552 /*
553  *  Fix getopt declarations in stdio.h and stdlib.h on Alpha OSF/1 and AIX.
554  */
555 fix = {
556     hackname  = alpha_getopt;
557     files     = "stdio.h";
558     files     = "stdlib.h";
559     select    = 'getopt\(int, char \*\[\], *char \*\)';
560     c_fix     = format;
561     c_fix_arg = "getopt(int, char *const[], const char *)";
562     test_text = 'extern int getopt(int, char *[], char *);';
563 };
564
565
566 /* 
567  * Remove erroneous parentheses in sym.h on Alpha OSF/1.
568  */
569 fix = {
570     hackname  = alpha_parens;
571     files     = sym.h;
572     select    = '#ifndef\(__mips64\)';
573     c_fix     = format;
574     c_fix_arg = "#ifndef __mips64";
575     test_text = "#ifndef(__mips64) /* bogus */\nextern int foo;\n#endif";
576 };
577
578
579 /*
580  *  Fix return value of sbrk in unistd.h on Alpha OSF/1 V2.0
581  */
582 fix = {
583     hackname = alpha_sbrk;
584     files    = unistd.h;
585     select   = "char[ \t]*\\*[\t ]*sbrk[ \t]*\\(";
586     c_fix     = format;
587     c_fix_arg = "void *sbrk(";
588     test_text = "extern char* sbrk(ptrdiff_t increment);";
589 };
590
591
592 /*
593  *  Fix this ARM/RISCiX file where ___type is a Compiler
594  *  hint that is specific to the Norcroft compiler.
595  */
596 fix = {
597     hackname  = arm_norcroft_hint;
598     select    = "___type p_type";
599     files     = "X11/Intrinsic.h";
600     c_fix     = format;
601     c_fix_arg = "p_type";
602     test_text = "___type p_type mumble;";
603 };
604
605
606 /*
607  *  Fix this ARM/RISCiX file to avoid interfering
608  *  with the use of __wchar_t in cc1plus.
609  */
610 fix = {
611     hackname = arm_wchar;
612     files  = stdlib.h;
613     select = "#[ \t]*define[ \t]*__wchar_t";
614
615     c_fix     = format;
616     c_fix_arg = "%1_GCC_WCHAR_T";
617     c_fix_arg = "(#[ \t]*(ifndef|define)[ \t]+)__wchar_t";
618
619     test_text =
620     "# ifndef \t __wchar_t /* we don't have wchar_t yet, ... */\n"
621     "#  define  __wchar_t  short\n"
622     "# endif /* __wchar_t */";
623 };
624
625
626 /*
627  *  This file in A/UX 3.0.x/3.1.x contains an __asm directive for c89;
628  *  gcc doesn't understand it.
629  */
630 fix = {
631     hackname = aux_asm;
632     files    = sys/param.h;
633     select   = "#ifndef NOINLINE";
634
635     c_fix     = format;
636     c_fix_arg = "#if !defined(NOINLINE) && !defined(__GNUC__)";
637
638     test_text =
639     "#ifndef NOINLINE /* ain't got no inline, so we got it */\n"
640     "#endif /* NOINLINE */";
641 };
642
643
644 /*
645  *  For C++, avoid any typedef or macro definition of bool,
646  *  and use the built in type instead.
647  *  HP/UX 10.20 also has it in curses_colr/curses.h.
648  */
649 fix = {
650     hackname  = avoid_bool_define;
651     files     = curses.h;
652     files     = curses_colr/curses.h;
653     files     = term.h;
654     files     = tinfo.h;
655
656     select    = "#[ \t]*define[ \t]+bool[ \t]";
657     bypass    = "we must use the C\\+\\+ compiler's type";
658
659     c_fix     = format;
660     c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
661     c_fix_arg = "^[ \t]*#[ \t]*define[ \t]+bool[ \t].*";
662
663     test_text = "# define bool\t char \n";
664 };
665
666 fix = {
667     hackname = avoid_bool_type;
668     files    = curses.h;
669     files    = curses_colr/curses.h;
670     files    = term.h;
671     files    = tinfo.h;
672
673     select    = "^[ \t]*typedef[ \t].*[ \t]bool[ \t]*;";
674     bypass    = "we must use the C\\+\\+ compiler's type";
675
676     c_fix     = format;
677     c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
678     c_fix_arg = "^[ \t]*typedef[ \t].*[ \t]bool[ \t]*;.*";
679
680     test_text = "typedef unsigned int\tbool \t; /* bool type */";
681 };
682
683
684 /*
685  *  Fix #defines under Alpha OSF/1:
686  *  The following files contain '#pragma extern_prefix "_FOO"' followed by
687  *  a '#define something(x,y,z) _FOOsomething(x,y,z)'.  The intent of these
688  *  statements is to reduce namespace pollution.  While these macros work
689  *  properly in most cases, they don't allow you to take a pointer to the
690  *  "something" being modified.  To get around this limitation, change these
691  *  statements to be of the form '#define something _FOOsomething'.
692  *
693  *  sed ain't egrep, lesson 2463:  sed can use self-referential
694  *  regular expressions.  In the substitute expression below,
695  *  "\\1" and "\\2" refer to subexpressions found earlier in the
696  *  same match.  So, we continue to use sed.  "extern_prefix" will
697  *  be a rare match anyway...
698  */
699 fix = {
700     hackname = bad_lval;
701
702     select   = "^[ \t]*#[ \t]*pragma[ \t]+extern_prefix";
703
704     files    = libgen.h;
705     files    = dirent.h;
706     files    = ftw.h;
707     files    = grp.h;
708     files    = ndbm.h;
709     files    = pthread.h;
710     files    = pwd.h;
711     files    = signal.h;
712     files    = standards.h;
713     files    = stdlib.h;
714     files    = string.h;
715     files    = stropts.h;
716     files    = time.h;
717     files    = unistd.h;
718
719     sed      =
720         "s/^[ \t]*#[ \t]*define[ \t][ \t]*\\([^(]*\\)\\(([^)]*)\\)[ \t]*"
721                "\\(_.*\\)\\1\\2[ \t]*$/#define \\1 \\3\\1/";
722
723     test_text = '#pragma extern_prefix "_FOO"'"\n"
724                 "#define something(x,y,z) _FOOsomething(x,y,z)\n"
725                 "#define mumble _FOOmumble";
726 };
727
728
729 /*
730  *  Fix `typedef struct term;' on hppa1.1-hp-hpux9.
731  */
732 fix = {
733     hackname  = bad_struct_term;
734     files     = curses.h;
735     select    = "^[ \t]*typedef[ \t]+struct[ \t]+term[ \t]*;";
736     c_fix     = format;
737     c_fix_arg = "struct term;";
738
739     test_text = 'typedef struct term;';
740 };
741
742
743 /*
744  *  Fix one other error in this file:
745  *  a mismatched quote not inside a C comment.
746  */
747 fix = {
748     hackname  = badquote;
749     files     = sundev/vuid_event.h;
750     select    = "doesn't";
751     c_fix     = format;
752     c_fix_arg = "does not";
753
754     test_text = "/* doesn't have matched single quotes */";
755 };
756
757
758 /*
759  *  check for broken assert.h that needs stdio.h
760  */
761 fix = {
762     hackname  = broken_assert_stdio;
763     files     = assert.h;
764     select    = stderr;
765     bypass    = "include.*stdio\\.h";
766     c_fix     = wrap;
767     c_fix_arg = "#include <stdio.h>\n";
768     test_text = "extern FILE* stderr;";
769 };
770
771
772 /*
773  *  check for broken assert.h that needs stdlib.h
774  */
775 fix = {
776     hackname  = broken_assert_stdlib;
777     files     = assert.h;
778     select    = 'exit *\(|abort *\(';
779     bypass    = "include.*stdlib\\.h";
780     c_fix     = wrap;
781     c_fix_arg = "#ifdef __cplusplus\n"
782                 "#include <stdlib.h>\n"
783                 "#endif\n";
784     test_text = "extern void exit ( int );";
785 };
786
787
788 /*
789  *  Remove `extern double cabs' declarations from math.h.
790  *  This conflicts with C9x.  Discovered on AIX.
791  *  SunOS4 has its cabs() declaration followed by a comment which
792  *  terminates on the following line.
793  */
794 fix = {
795     hackname = broken_cabs;
796     files  = "math.h";
797     select = '^extern double cabs';
798
799     c_fix     = format;
800     c_fix_arg = "";
801     c_fix_arg = "^extern double cabs\\((struct dbl_hypot|)\\);";
802
803     test_text = "#ifdef __STDC__\n"
804                 "extern double cabs(struct dbl_hypot);\n"
805                 "#else\n"
806                 "extern double cabs();\n"
807                 "#endif\n"
808                 "extern double cabs(); /* This is a comment\n"
809                 "                         and it ends here. */";
810 };
811
812
813 /*
814  *  Fix various macros used to define ioctl numbers.
815  *  The traditional syntax was:
816  *
817  *    #define _CTRL(n, x) (('n'<<8)+x)
818  *    #define TCTRLCFOO _CTRL(T, 1)
819  *
820  *  but this does not work with the C standard, which disallows macro
821  *  expansion inside strings.  We have to rewrite it thus:
822  *
823  *    #define _CTRL(n, x) ((n<<8)+x)
824  *    #define TCTRLCFOO  _CTRL('T', 1)
825  *
826  *  The select expressions match too much, but the c_fix code is cautious.
827  *
828  *  CTRL might be: CTRL _CTRL ISCTRL BSD43_CTRL ...
829  */
830 fix = {
831     hackname  = ctrl_quotes_def;
832     select    = "define[ \t]+[A-Z0-9_]+CTRL\\([a-zA-Z],";
833     c_fix     = char_macro_def;
834     c_fix_arg = "CTRL";
835     test_text = "#define BSD43_CTRL(n, x) (('n'<<8)+x)";
836 };
837
838 fix = {
839     hackname  = ctrl_quotes_use;
840     select    = "define[ \t]+[A-Z0-9_]+[ \t]+[A-Z0-9_]+CTRL[ \t]*\\( *[^,']";
841     c_fix     = char_macro_use;
842     c_fix_arg = "CTRL";
843     test_text = "#define TIOCFOO BSD43_CTRL(T, 1)";
844 };
845
846
847 /*
848  *  sys/mman.h on HP/UX is not C++ ready,
849  *  even though NO_IMPLICIT_EXTERN_C is defined on HP/UX.
850  *
851  *  rpc/types.h on OSF1/2.0 is not C++ ready,
852  *  even though NO_IMPLICIT_EXTERN_C is defined for the alpha.
853  *
854  *  The problem is the declaration of malloc.
855  */
856 fix = {
857     hackname = cxx_unready;
858     files    = sys/mman.h;
859     files    = rpc/types.h;
860     select   = '[^#]+malloc.*;';  /* Catch any form of declaration
861                                      not within a macro.  */
862     bypass   = '"C"|__BEGIN_DECLS';
863
864     c_fix     = wrap;
865     c_fix_arg = "#ifdef __cplusplus\n"
866                 "extern \"C\" {\n"
867                 "#endif\n";
868     c_fix_arg = "#ifdef __cplusplus\n"
869                 "}\n"
870                 "#endif\n";
871     test_text = "extern void* malloc( size_t );";
872 };
873
874
875 /*
876  *  Fix <c_asm.h> on Digital UNIX V4.0:
877  *  It contains a prototype for a DEC C internal asm() function,
878  *  clashing with gcc's asm keyword.  So protect this with __DECC.
879  */
880 fix = {
881     hackname = dec_intern_asm;
882     files    = c_asm.h;
883     sed = "/^[ \t]*float[ \t]*fasm/i\\\n#ifdef __DECC\n";
884     sed = "/^[ \t]*#[ \t]*pragma[ \t]*intrinsic([ \t]*dasm/a\\\n"
885           "#endif\n";
886     test_text =
887     "float fasm {\n"
888     "    ... asm stuff ...\n"
889     "};\n#pragma intrinsic( dasm )\n/* END ASM TEST*/";
890 };
891
892
893 /*
894  * Fix these Sun OS files to avoid an invalid identifier in an #ifdef.
895  */
896 fix = {
897     hackname  = ecd_cursor;
898     files     = "sunwindow/win_lock.h";
899     files     = "sunwindow/win_cursor.h";
900     select    = 'ecd\.cursor';
901     c_fix     = format;
902     c_fix_arg = 'ecd_cursor';
903
904     test_text = "#ifdef ecd.cursor\n#error bogus\n#endif /* ecd+cursor */";
905 };
906
907
908 /*
909  *  fix-header doesn't fix fabs' prototype, and I have no idea why.
910  */
911 fix = {
912     hackname  = fix_header_breakage;
913     mach      = "m88k-motorola-sysv3*";
914     files     = "math.h";
915
916     select    = 'extern double floor\(\), ceil\(\), fmod\(\), fabs\(\);';
917     c_fix     = format;
918     c_fix_arg =
919     'extern double floor(), ceil(), fmod(), fabs _PARAMS((double));';
920     test_text = 'extern double floor(), ceil(), fmod(), fabs();';
921 };
922
923
924 /*
925  *  Fix HP's use of ../machine/inline.h to refer to
926  *    /usr/include/machine/inline.h
927  */
928 fix = {
929     hackname  = hp_inline;
930     files     = sys/spinlock.h;
931     files     = machine/machparam.h;
932     select    = "[ \t]*#[ \t]*include[ \t]+"  '"\.\./machine/';
933
934     c_fix     = format;
935     c_fix_arg = "%1<machine/%2.h>";
936
937     c_fix_arg = "([ \t]*#[ \t]*include[ \t]+)"  '"\.\./machine/'
938                 '([a-z]+)\.h"';
939
940     test_text = ' # include "../machine/mumble.h"';
941 };
942
943
944 /*
945  *  Check for (...) in C++ code in HP/UX sys/file.h.
946  */
947 fix = {
948     hackname  = hp_sysfile;
949     files     = sys/file.h;
950     select    = "HPUX_SOURCE";
951
952     c_fix     = format;
953     c_fix_arg = "(struct file *, ...)";
954     c_fix_arg = '\(\.\.\.\)';
955
956     test_text = "extern void foo(...); /* HPUX_SOURCE - bad varargs */";
957 };
958
959
960 /*
961  *  Keep HP-UX 11 from stomping on C++ math namespace
962  *  with defines for fabsf.
963  */
964 fix = {
965     hackname  = hpux11_fabsf;
966     files     = math.h;
967     select    = "^[ \t]*#[ \t]*define[ \t]+fabsf\\(.*";
968     bypass    = "__cplusplus";
969
970     c_fix     = format;
971     c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
972
973     test_text =
974     "#ifdef _PA_RISC\n"
975     "#  define fabsf(x) ((float)fabs((double)(float)(x)))\n"
976     "#endif";
977 };
978
979
980 /*
981  * In inttypes.h on HPUX 11, the use of __CONCAT__ in the definition 
982  * of UINT32_C has undefined behavior according to ISO/ANSI:
983  * the arguments to __CONCAT__ are not macro expanded before the
984  * concatination happens so the trailing ')' in the first argument
985  * is concatinated with the 'l' in the second argument creating an
986  * invalid pp token.  The behavior of invalid pp tokens is undefined.
987  * GCC does not handle these invalid tokens the way the HP compiler does.
988  * This problem will potentially occur anytime macros are used in the
989  * arguments to __CONCAT__.  A general solution to this problem would be to 
990  * insert another layer of macro between __CONCAT__ and its use
991  * in UINT32_C.  An example of this solution can be found in the C standard.
992  * A more specific solution, the one used here, is to change the UINT32_C
993  * macro to not used macros in the arguments to __CONCAT__.
994  */
995 fix = {
996     hackname = hpux11_uint32_c;
997     files    = inttypes.h;
998     select   = "^#define UINT32_C\\(__c\\)[ \t]*"
999                          "__CONCAT__\\(__CONCAT_U__\\(__c\\),l\\)";
1000     c_fix    = format;
1001     c_fix_arg = '#define UINT32_C(__c) __CONCAT__(__c,ul)';
1002     test_text =
1003     "#define CONCAT_U__(__c)\t__CONCAT__(__c,u)\n"
1004     "#define UINT32_C(__c)\t__CONCAT__(__CONCAT_U__(__c),l)";
1005 };
1006
1007
1008 /*
1009  *  get rid of bogus inline definitions in HP-UX 8.0
1010  */
1011 fix = {
1012     hackname = hpux8_bogus_inlines;
1013     files    = math.h;
1014     select   = inline;
1015     sed = "s@inline int abs(int [a-z][a-z]*) {.*}"
1016            "@extern \"C\" int abs(int);@";
1017     sed = "s@inline double abs(double [a-z][a-z]*) {.*}@@";
1018     sed = "s@inline int sqr(int [a-z][a-z]*) {.*}@@";
1019     sed = "s@inline double sqr(double [a-z][a-z]*) {.*}@@";
1020     test_text = "inline int abs(int v) { return (v>=0)?v:-v; }\n"
1021                 "inline double sqr(double v) { return v**0.5; }";
1022 };
1023
1024
1025 /*
1026  *  Fix return type of abort and free
1027  */
1028 fix = {
1029     hackname  = int_abort_free_and_exit;
1030     files     = stdlib.h;
1031     select    = "int[ \t]+(abort|free|exit)[ \t]*\\(";
1032
1033     c_fix     = format;
1034     c_fix_arg = "void\t%1(";
1035
1036     test_text = "extern int abort(int);\n"
1037                 "extern int free(void*);\n"
1038                 "extern int exit(void*);";
1039 };
1040
1041
1042 /*
1043  *  On Interactive Unix 2.2, certain traditional Unix definitions
1044  *  (notably getc and putc in stdio.h) are omitted if __STDC__ is
1045  *  defined, not just if _POSIX_SOURCE is defined.  This makes it
1046  *  impossible to compile any nontrivial program except with -posix.
1047  */
1048 fix = {
1049     hackname = isc_omits_with_stdc;
1050
1051     files     = "stdio.h";
1052     files     = "math.h";
1053     files     = "ctype.h";
1054     files     = "sys/limits.h";
1055     files     = "sys/fcntl.h";
1056     files     = "sys/dirent.h";
1057
1058     select    = '!defined\(__STDC__\) && !defined\(_POSIX_SOURCE\)';
1059     c_fix     = format;
1060     c_fix_arg = '!defined(_POSIX_SOURCE)';
1061     test_text = "#if !defined(__STDC__) && !defined(_POSIX_SOURCE) /* ? ! */"
1062                 "\nint foo;\n#endif";
1063 };
1064
1065
1066 /*
1067  *  Fix various macros used to define ioctl numbers.
1068  *  The traditional syntax was:
1069  *
1070  *    #define _IO(n, x) (('n'<<8)+x)
1071  *    #define TIOCFOO _IO(T, 1)
1072  *
1073  *  but this does not work with the C standard, which disallows macro
1074  *  expansion inside strings.  We have to rewrite it thus:
1075  *
1076  *    #define _IO(n, x) ((n<<8)+x)
1077  *    #define TIOCFOO  _IO('T', 1)
1078  *
1079  *  The select expressions match too much, but the c_fix code is cautious.
1080  *
1081  *  _IO might be: _IO DESIO BSD43__IO with W, R, WR, C, ... suffixes.
1082  */
1083 fix = {
1084     hackname  = io_quotes_def;
1085     select    = "define[ \t]+[A-Z0-9_]+IO[A-Z]*\\([a-zA-Z],";
1086     c_fix     = char_macro_def;
1087     c_fix_arg = "IO";
1088     test_text =
1089     "#define BSD43__IOWR(n, x) (('n'<<8)+x)\n"
1090     "#define _IOWN(x,y,t)  (_IOC_IN|(((t)&_IOCPARM_MASK)<<16)|('x'<<8)|y)\n"
1091     "#define _IO(x,y)      ('x'<<8|y)";
1092 };
1093
1094 fix = {
1095     hackname  = io_quotes_use;
1096     select    = "define[ \t]+[A-Z0-9_]+[ \t]+[A-Z0-9_]+IO[A-Z]*[ \t]*"
1097                 "\\( *[^,']";
1098     c_fix     = char_macro_use;
1099     c_fix_arg = "IO";
1100     test_text = "#define TIOCFOO BSD43__IOWR(T, 1)";
1101 };
1102
1103
1104 /*
1105  *  HPUX 10.x sys/param.h defines MAXINT which clashes with values.h
1106  */
1107 fix = {
1108     hackname  = hpux_maxint;
1109     files     = sys/param.h;
1110     select    = "^#[ \t]*define[ \t]*MAXINT[ \t]";
1111
1112     c_fix     = format;
1113     c_fix_arg = "#ifndef MAXINT\n%0\n#endif";
1114     c_fix_arg = "^#[ \t]*define[ \t]*MAXINT[ \t].*";
1115
1116     test_text = '#define MAXINT 0x7FFFFFFF';
1117 };
1118
1119
1120 /*
1121  *  Fix hpux10.20 <sys/time.h> to avoid invalid forward decl
1122  */
1123 fix = {
1124     hackname = hpux_systime;
1125     files    = sys/time.h;
1126     select   = "^extern struct sigevent;";
1127
1128     c_fix     = format;
1129     c_fix_arg = "struct sigevent;";
1130
1131     test_text = 'extern struct sigevent;';
1132 };
1133
1134
1135 /*
1136  *  Check for missing ';' in struct
1137  */
1138 fix = {
1139     hackname = ip_missing_semi;
1140     files    = netinet/ip.h;
1141     select   = "}$";
1142     sed      = "/^struct/,/^};/s/}$/};/";
1143     test_text=
1144     "struct mumble {\n"
1145     "  union {\n"
1146     "    int x;\n"
1147     "  }\n"
1148     "}; /* mumbled struct */\n";
1149 };
1150
1151
1152 /*
1153  *  IRIX 5.2's <sys/asm.h> contains an asm comment with a contraction
1154  *  that causes the assembly preprocessor to complain about an
1155  *  unterminated character constant.
1156  */
1157 fix = {
1158     hackname  = irix_asm_apostrophe;
1159     files     = sys/asm.h;
1160
1161     select    = "^[ \t]*#.*[Ww]e're";
1162     c_fix     = format;
1163     c_fix_arg = "%1 are";
1164     c_fix_arg = "^([ \t]*#.*[Ww]e)'re";
1165     test_text = "\t# and we're on vacation";
1166 };
1167
1168
1169 /*
1170  *  Some IRIX header files contain the string "//"
1171  */
1172 fix = {
1173     hackname = irix_multiline_cmnt;
1174     files    = sys/types.h;
1175
1176     sed   = "s@type of the result@type of the result */@";
1177     sed   = "s@of the sizeof@/* of the sizeof@";
1178     test_text =
1179     "/* we check the type of the result\n"
1180     "// of the sizeof something.  This is a bad test :-( */";
1181 };
1182
1183
1184 /*
1185  * Fixing ISC fmod declaration
1186  */
1187 fix = {
1188     hackname  = isc_fmod;
1189     files     = math.h;
1190     select    = 'fmod\(double\)';
1191     c_fix     = format;
1192     c_fix_arg = "fmod(double, double)";
1193     test_text = "extern double  fmod(double);";
1194 };
1195
1196
1197 /*
1198  * These files in Sun OS 4.x and ARM/RISCiX and BSD4.3
1199  * use / * * / to concatenate tokens.
1200  */
1201 fix = {
1202     hackname = kandr_concat;
1203     files  = "sparc/asm_linkage.h";
1204     files  = "sun3/asm_linkage.h";
1205     files  = "sun3x/asm_linkage.h";
1206     files  = "sun4/asm_linkage.h";
1207     files  = "sun4c/asm_linkage.h";
1208     files  = "sun4m/asm_linkage.h";
1209     files  = "sun4c/debug/asm_linkage.h";
1210     files  = "sun4m/debug/asm_linkage.h";
1211     files  = "arm/as_support.h";
1212     files  = "arm/mc_type.h";
1213     files  = "arm/xcb.h";
1214     files  = "dev/chardefmac.h";
1215     files  = "dev/ps_irq.h";
1216     files  = "dev/screen.h";
1217     files  = "dev/scsi.h";
1218     files  = "sys/tty.h";
1219     files  = "Xm.acorn/XmP.h";
1220     files  = bsd43/bsd43_.h;
1221     select = '/\*\*/';
1222     c_fix     = format;
1223     c_fix_arg = '##';
1224     test_text = "#define __CONCAT__(a,b) a/**/b";
1225 };
1226
1227
1228 /*
1229  *  In limits.h, put #ifndefs around things that are supposed to be defined
1230  *  in float.h to avoid redefinition errors if float.h is included first.
1231  *  On HP/UX this patch does not work, because on HP/UX limits.h uses
1232  *  multi line comments and the inserted #endif winds up inside the
1233  *  comment.  Fortunately, HP/UX already uses #ifndefs in limits.h; if
1234  *  we find a #ifndef FLT_MIN we assume that all the required #ifndefs
1235  *  are there, and we do not add them ourselves.
1236  */
1237 fix = {
1238     hackname = limits_ifndefs;
1239     files  = "limits.h";
1240     files  = "sys/limits.h";
1241     bypass = "ifndef[ \t]+FLT_MIN";
1242
1243     c_fix     = format;
1244     c_fix_arg = "#ifndef %1\n%0\n#endif";
1245     c_fix_arg = "^[ \t]*#[ \t]*define[ \t]+"
1246                 "((FLT|DBL)_(MIN|MAX|DIG))[ \t].*";
1247     test_text = " #\tdefine\tDBL_DIG \t 0  /* somthin' */";
1248 };
1249
1250
1251 /*
1252  *  Delete the '#define void int' line from curses.h on Lynx
1253  */
1254 fix = {
1255     hackname  = lynx_void_int;
1256     files     = curses.h;
1257     select    = "#[ \t]*define[ \t]+void[ \t]+int[ \t]*";
1258     c_fix     = format;
1259     c_fix_arg = "";
1260     test_text = "# define\tvoid\tint \t/* curses foiled again */";
1261 };
1262
1263
1264 /*
1265  *  Fix fcntl prototype in fcntl.h on LynxOS.
1266  */
1267 fix = {
1268     hackname  = lynxos_fcntl_proto;
1269     files     = fcntl.h;
1270     select    = "fcntl[ \t]*" '\(int, int, int\)';
1271     c_fix     = format;
1272     c_fix_arg = '%1...)';
1273     c_fix_arg = "(fcntl[ \t]*" '\(int, int, )int\)';
1274     test_text = "extern int fcntl(int, int, int);";
1275 };
1276
1277
1278 /*
1279  *  libm.a on m88k-motorola-sysv3 contains a stupid optimization for
1280  *  function hypot(), which returns the second argument without even
1281  *  looking at its value, if the other is 0.0.
1282  */
1283 fix = {
1284     hackname  = m88k_bad_hypot_opt;
1285     mach      = "m88k-motorola-sysv3*";
1286     files     = "math.h";
1287     select    = "^extern double hypot\\(\\);\n";
1288     c_fix     = format;
1289     c_fix_arg = "%0"
1290           "/* Workaround a stupid Motorola optimization if one\n"
1291           "   of x or y is 0.0 and the other is negative!  */\n"
1292           "#ifdef __STDC__\n"
1293           "static __inline__ double fake_hypot (double x, double y)\n"
1294           "#else\n"
1295           "static __inline__ double fake_hypot (x, y)\n"
1296           "\tdouble x, y;\n"
1297           "#endif\n"
1298           "{\n"
1299           "\treturn fabs (hypot (x, y));\n"
1300           "}\n"
1301           "#define hypot\tfake_hypot\n";
1302     test_text = "extern double hypot();";
1303 };
1304
1305
1306 /*
1307  *  Fix incorrect S_IF* definitions on m88k-sysv3.
1308  */
1309 fix = {
1310     hackname = m88k_bad_s_if;
1311     mach     = "m88k-*-sysv3*";
1312     files    = sys/stat.h;
1313     select   = "#define[ \t]+S_IS[A-Z]+\\(m\\)[ \t]+\\(m[ \t]*&";
1314
1315     c_fix     = format;
1316     c_fix_arg = '#define %1(m) (((m) & S_IFMT) == %2)';
1317     c_fix_arg = "#define[ \t]+(S_IS[A-Z]+)\\(m\\)[ \t]+"
1318                   "\\(m[ \t]*&[ \t]*"
1319                     "(S_IF[A-Z][A-Z][A-Z]+|0[0-9]+)"
1320                   "[ \t]*\\)";
1321     test_text = '#define S_ISREG(m) (m & S_IFREG) /* is regular? */';
1322 };
1323
1324
1325 /*
1326  * Put cpp wrappers around these include files to avoid redeclaration
1327  * errors during multiple inclusion on m88k-tektronix-sysv3.
1328  */
1329 fix = {
1330     hackname = m88k_multi_incl;
1331     mach     = "m88k-tektronix-sysv3*";
1332     files    = "time.h";
1333     bypass   = "#ifndef";
1334     c_fix    = wrap;
1335     test_text = "";
1336 };
1337
1338
1339 /*
1340  * Fix BSD machine/ansi.h to use __builtin_va_list to define _BSD_VA_LIST_.
1341  */
1342 fix = {
1343     hackname = machine_ansi_h_va_list;
1344     files    = machine/ansi.h;
1345     select   = "define[ \t]+_BSD_VA_LIST_[ \t]";
1346     bypass   = '__builtin_va_list';
1347
1348     c_fix     = format;
1349     c_fix_arg = "%1__builtin_va_list";
1350     c_fix_arg = "(define[ \t]+_BSD_VA_LIST_[ \t]+).*";
1351
1352     test_text = " # define _BSD_VA_LIST_\tchar**";
1353 };
1354
1355
1356 /*
1357  *  Fix non-ansi machine name defines
1358  */
1359 fix = {
1360     hackname  = machine_name;
1361     c_test    = machine_name;
1362     c_fix     = machine_name;
1363
1364     test_text = "/* MACH_DIFF: */\n"
1365     "#if defined( i386 ) || defined( sparc ) || defined( vax )"
1366     "\n/* no uniform test, so be careful  :-) */";
1367 };
1368
1369
1370 /*
1371  *  Some math.h files define struct exception, which conflicts with
1372  *  the class exception defined in the C++ file std/stdexcept.h.  We
1373  *  redefine it to __math_exception.  This is not a great fix, but I
1374  *  haven't been able to think of anything better.
1375  *  Note that we have to put the #ifdef/#endif blocks at beginning
1376  *  and end of file, because fixproto runs after us and may insert
1377  *  additional references to struct exception.
1378  */
1379 fix = {
1380     hackname  = math_exception;
1381     files     = math.h;
1382     select    = "struct exception";
1383     bypass    = 'We have a problem when using C\+\+';
1384     c_fix     = wrap;
1385
1386     c_fix_arg = "#ifdef __cplusplus\n"
1387                 "#define exception __math_exception\n"
1388                 "#endif\n";
1389
1390     c_fix_arg = "#ifdef __cplusplus\n"
1391                 "#undef exception\n"
1392                 "#endif\n";
1393
1394     test_text = "typedef struct exception t_math_exception;";
1395 };
1396
1397
1398 /*
1399  *  This looks pretty broken to me.  ``dbl_max_def'' will contain
1400  *  "define DBL_MAX " at the start, when what we really want is just
1401  *  the value portion.  Can't figure out how to write a test case
1402  *  for this either  :-(
1403  */
1404 fix = {
1405     hackname = math_huge_val_from_dbl_max;
1406     files    = math.h;
1407     /*
1408      * IF HUGE_VAL is defined to be DBL_MAX *and* DBL_MAX is _not_ defined
1409      * in math.h, this fix applies.
1410      */
1411     select   = "define[ \t]*HUGE_VAL[ \t]*DBL_MAX";
1412     bypass   = "define[ \t]*DBL_MAX";
1413
1414     shell    =
1415     /*
1416      *  See if we have a definition for DBL_MAX in float.h.
1417      *  If we do, we will replace the one in math.h with that one.
1418      */
1419
1420     "\tdbl_max_def=`egrep 'define[ \t]+DBL_MAX[ \t]+.*' float.h "
1421                 "2>/dev/null`\n\n"
1422
1423     "\tif ( test -n \"${dbl_max_def}\" ) > /dev/null 2>&1\n"
1424     "\tthen sed -e '/define[ \t]*HUGE_VAL[ \t]*DBL_MAX/"
1425                         "s/DBL_MAX/'\"$dbl_max_def/\"\n"
1426     "\telse cat\n"
1427     "\tfi";
1428 };
1429
1430
1431 /*
1432  * In any case, put #ifndef .. #endif around #define HUGE_VAL in math.h.
1433  */
1434 fix = {
1435     hackname = math_huge_val_ifndef;
1436     files    = math.h;
1437     files    = math/math.h;
1438     select   = "define[ \t]+HUGE_VAL";
1439
1440     c_fix     = format;
1441     c_fix_arg = "#ifndef HUGE_VAL\n%0\n#endif";
1442     c_fix_arg = "^[ \t]*#[ \t]*define[ \t]+HUGE_VAL[ \t].*";
1443
1444     test_text = "# define\tHUGE_VAL 3.4e+40";
1445 };
1446
1447
1448 /*
1449  * Fix nested comments in Motorola's <limits.h> and <sys/limits.h>
1450  */
1451 fix = {
1452     hackname = nested_motorola;
1453     mach     = "m68k-motorola-sysv*";
1454     files    = limits.h;
1455     files    = sys/limits.h;
1456     sed = "s@^\\(#undef[ \t][ \t]*PIPE_BUF[ \t]*"
1457                    "/\\* max # bytes atomic in write to a\\)$@\\1 */@";
1458     sed = "s@\\(/\\*#define\tHUGE_VAL\t3.[0-9e+]* \\)"
1459           "\\(/\\*error value returned by Math lib\\*/\\)$@\\1*/ \\2@";
1460 };
1461
1462
1463 /*
1464  * Fixing nested comments in ISC <sys/limits.h>
1465  */
1466 fix = {
1467     hackname = nested_sys_limits;
1468     files  = sys/limits.h;
1469     select = CHILD_MAX;
1470     sed    = "/CHILD_MAX/s,/\\* Max, Max,";
1471     sed    = "/OPEN_MAX/s,/\\* Max, Max,";
1472     test_text = "/*\n#define CHILD_MAX 20 /* Max, Max, ... */ /*\n"
1473                 "#define OPEN_MAX  20 /* Max, Max, ... */\n";
1474 };
1475
1476 /*
1477  *  nested comment
1478  */
1479 fix = {
1480     hackname  = nested_auth_des;
1481     files     = rpc/rpc.h;
1482     select    = '(/\*.*rpc/auth_des\.h>.*)/\*';
1483     c_fix     = format;
1484     c_fix_arg = "%1*/ /*";
1485     test_text = "/*#include <rpc/auth_des.h> /* skip this */";
1486 };
1487
1488
1489 /*
1490  *  Avoid nested comments on Ultrix 4.3.
1491  */
1492 fix = {
1493     hackname = nested_ultrix;
1494     files    = rpc/svc.h;
1495     sed      = "s@^\\( \\*\tint protocol;  \\)/\\*@\\1*/ /*@";
1496 };
1497
1498
1499 /*
1500  *  fix bogus recursive stdlib.h in NEWS-OS 4.0C
1501  */
1502 fix = {
1503     hackname = news_os_recursion;
1504     files    = stdlib.h;
1505     select   = "[ \t]*#include <stdlib\\.h>.*";
1506
1507     c_fix     = format;
1508     c_fix_arg = "#ifdef BOGUS_RECURSION\n%0\n#endif";
1509     test_text = "#include <stdlib.h>";
1510 };
1511
1512
1513 /*
1514  *  NeXT 3.2 adds const prefix to some math functions.
1515  *  These conflict with the built-in functions.
1516  */
1517 fix = {
1518     hackname  = next_math_prefix;
1519     files     = ansi/math.h;
1520     select    = "^extern[ \t]+double[ \t]+__const__[ \t]";
1521
1522     c_fix     = format;
1523     c_fix_arg = "extern double %1(";
1524     c_fix_arg = "^extern[ \t]+double[ \t]+__const__[ \t]+([a-z]+)\\(";
1525
1526     test_text = "extern\tdouble\t__const__\tmumble();";
1527 };
1528
1529
1530 /*
1531  *  NeXT 3.2 uses the word "template" as a parameter for some
1532  *  functions. GCC reports an invalid use of a reserved key word
1533  *  with the built-in functions.
1534  */
1535 fix = {
1536     hackname = next_template;
1537     files    = bsd/libc.h;
1538     select   = "[ \t]template\\)";
1539
1540     c_fix     = format;
1541     c_fix_arg = "(%1)";
1542     c_fix_arg = "\\(([^)]*)[ \t]template\\)";
1543     test_text = "extern mumble( char * template); /* fix */";
1544 };
1545
1546
1547 /*
1548  *  NeXT 3.2 includes the keyword volatile in the abort() and  exit()
1549  *  function prototypes. That conflicts with the  built-in functions.
1550  */
1551 fix = {
1552     hackname = next_volitile;
1553     files    = ansi/stdlib.h;
1554     select   = "^extern[ \t]+volatile[ \t]+void[ \t]";
1555
1556     c_fix     = format;
1557     c_fix_arg = "extern void %1(";
1558     c_fix_arg = "^extern[ \t]+volatile[ \t]+void[ \t]+(exit|abort)\\(";
1559
1560     test_text = "extern\tvolatile\tvoid\tabort();";
1561 };
1562
1563
1564 /*
1565  *  NeXT 2.0 defines 'int wait(union wait*)', which conflicts with Posix.1.
1566  *  Note that version 3 of the NeXT system has wait.h in a different directory,
1567  *  so that this code won't do anything.  But wait.h in version 3 has a
1568  *  conditional, so it doesn't need this fix.  So everything is okay.
1569  */
1570 fix = {
1571     hackname  = next_wait_union;
1572     files     = sys/wait.h;
1573
1574     select    = 'wait\(union wait';
1575     c_fix     = format;
1576     c_fix_arg = "wait(void";
1577     test_text = "extern pid_d wait(union wait*);";
1578 };
1579
1580
1581 /*
1582  *  a missing semi-colon at the end of the nodeent structure definition.
1583  */
1584 fix = {
1585     hackname  = nodeent_syntax;
1586     files     = netdnet/dnetdb.h;
1587     select    = "char[ \t]*\\*na_addr[ \t]*$";
1588     c_fix     = format;
1589     c_fix_arg = "%0;";
1590     test_text = "char *na_addr\t";
1591 };
1592
1593
1594 /*
1595  *  sys/lc_core.h on some versions of OSF1/4.x pollutes the namespace by
1596  *  defining regex.h related types.  This causes libg++ build and usage
1597  *  failures.  Fixing this correctly requires checking and modifying 3 files.
1598  */
1599 fix = {
1600     hackname = osf_namespace_a;
1601     files    = reg_types.h;
1602     files    = sys/lc_core.h;
1603     test     = " -r reg_types.h";
1604     test     = " -r sys/lc_core.h";
1605     test     = " -n \"`grep '} regex_t;' reg_types.h`\"";
1606     test     = " -z \"`grep __regex_t regex.h`\"";
1607
1608     c_fix     = format;
1609     c_fix_arg = "__%0";
1610     c_fix_arg = "reg(ex|off|match)_t[^;]";
1611
1612     test_text = "`touch inc/sys/lc_core.h`"
1613     "typedef struct {\n  int stuff, mo_suff;\n} regex_t;\n"
1614     "extern regex_t    re;\n"
1615     "extern regoff_t   ro;\n"
1616     "extern regmatch_t rm;\n";
1617 };
1618
1619 fix = {
1620     hackname = osf_namespace_c;
1621     files    = regex.h;
1622     test     = " -r reg_types.h";
1623     test     = " -r sys/lc_core.h";
1624     test     = " -n \"`grep '} regex_t;' reg_types.h`\"";
1625     test     = " -z \"`grep __regex_t regex.h`\"";
1626
1627     select    = "#include <reg_types\.h>.*";
1628     c_fix     = format;
1629     c_fix_arg = "%0\n"
1630                 "typedef __regex_t\tregex_t;\n"
1631                 "typedef __regoff_t\tregoff_t;\n"
1632                 "typedef __regmatch_t\tregmatch_t;";
1633
1634     test_text = "#include <reg_types.h>";
1635 };
1636
1637
1638 /*
1639  *  Fix __page_size* declarations in pthread.h AIX 4.1.[34].
1640  *  The original ones fail if uninitialized externs are not common.
1641  *  This is the default for all ANSI standard C++ compilers.
1642  */
1643 fix = {
1644     hackname  = pthread_page_size;
1645     files     = pthread.h;
1646     select    = "^int __page_size";
1647     c_fix     = format;
1648     c_fix_arg = "extern %0";
1649     test_text = "int __page_size;";
1650 };
1651
1652
1653 /*
1654  *  Fix return type of fread and fwrite on sysV68
1655  */
1656 fix = {
1657     hackname = read_ret_type;
1658     files    = stdio.h;
1659     select   = "extern int\t.*, fread\\(\\), fwrite\\(\\)";
1660     c_fix     = format;
1661     c_fix_arg = "extern unsigned int fread(), fwrite();\n%1%2";
1662     c_fix_arg = "(extern int\t.*), fread\\(\\), fwrite\\(\\)(.*)";
1663
1664     test_text = "extern int\tfclose(), fflush(), fread(), fwrite(), foo();";
1665 };
1666
1667
1668 /*
1669  *  function class(double x) conflicts with C++ keyword on rs/6000 
1670  */
1671 fix = {
1672     hackname  = rs6000_double;
1673     files     = math.h;
1674     select    = '[^a-zA-Z_]class\(';
1675
1676     c_fix     = format;
1677     c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
1678     c_fix_arg = '^.*[^a-zA-Z_]class\(.*';
1679
1680     test_text = "extern int class();";
1681 };
1682
1683
1684 /*
1685  *  Wrong fchmod prototype on RS/6000.
1686  */
1687 fix = {
1688     hackname  = rs6000_fchmod;
1689     files     = sys/stat.h;
1690     select    = 'fchmod\(char \*';
1691     c_fix     = format;
1692     c_fix_arg = "fchmod(int";
1693     test_text = "extern int fchmod(char *, mode_t);";
1694 };
1695
1696
1697 /*
1698  *  parameters conflict with C++ new on rs/6000 
1699  */
1700 fix = {
1701     hackname  = rs6000_param;
1702     files     = "stdio.h";
1703     files     = "unistd.h";
1704
1705     select    = 'rename\(const char \*old, const char \*new\)';
1706     c_fix     = format;
1707     c_fix_arg = 'rename(const char *_old, const char *_new)';
1708
1709     test_text = 'extern int rename(const char *old, const char *new);';
1710 };
1711
1712
1713 /*
1714  *  The static functions lstat() and fchmod() in <sys/stat.h> 
1715  *  cause G++ grief since they're not wrapped in "if __cplusplus".
1716  *
1717  *  On SCO OpenServer 5.0.0 through (at least) 5.0.5 <sys/stat.h> contains
1718  *  tiny static wrappers that aren't C++ safe.
1719  */
1720 fix = {
1721     hackname = sco_static_func;
1722     files    = sys/stat.h;
1723     mach     = "i?86-*-sco3.2*";
1724     select   = "^static int";
1725
1726     sed      = "/^static int/i\\\n"
1727                "#if __cplusplus\\\n"
1728                "extern \"C\" {\\\n"
1729                "#endif /* __cplusplus */";
1730
1731     sed      = "/^}$/a\\\n"
1732                "#if __cplusplus\\\n"
1733                " }\\\n"
1734                "#endif /* __cplusplus */";
1735
1736     test_text =
1737     "#ifdef __STDC__\n"
1738     "static int\tstat(const char *__f, struct stat *__p) {\n"
1739     "\treturn __stat32(__f, __p);\n"
1740     "}\n\n#  else /* !__STDC__ */\n"
1741
1742     "static int\tstat(__f, __p)\n"
1743     "\tchar *__f;\n"
1744     "\tstruct stat *__p;\n"
1745     "{\n"
1746     "\treturn __stat32(__f, __p);\n"
1747     "}\n"
1748     "#endif";
1749 };
1750
1751
1752 /*
1753  *  "!__STDC__" is "!defined( __STRICT_ANSI__ )"
1754  */
1755 fix = {
1756     hackname = sco_strict_ansi;
1757     mach     = "i?86-*-sco3.2*";
1758     select   = "^[ \t]*#[ \t]*if.*!__STDC__";
1759
1760     c_fix     = format;
1761     c_fix_arg = "%1defined(__STRICT_ANSI__)%2";
1762     c_fix_arg = "^([ \t]*#[ \t]*if[ \t].*!)__STDC__(.*)";
1763
1764     test_text = "#if !__STDC__ /* not standard C */\nint foo;\n#endif";
1765 };
1766
1767
1768 /*
1769  *  Fix prototype declaration of utime in sys/times.h.
1770  *  In 3.2v4.0 the const is missing.
1771  */
1772 fix = {
1773     hackname  = sco_utime;
1774     files     = sys/times.h;
1775     mach      = "i?86-*-sco3.2v4*";
1776
1777     select    = '\(const char \*, struct utimbuf \*\);';
1778     c_fix     = format;
1779     c_fix_arg = '(const char *, const struct utimbuf *);';
1780
1781     test_text = "extern int utime(const char *, struct utimbuf *);";
1782 };
1783
1784
1785 /*
1786  *  Sony NEWSOS 5.0 does not support the complete ANSI C standard.
1787  */
1788 #ifdef SONY
1789 fix = {
1790     hackname = sony_ctype;
1791     files    = ctype.h;
1792     test     = " -x /bin/sony";
1793     test     = " ! -z \"`if /bin/sony ; then echo true ; fi`\"";
1794     sed      = "s/__ctype/_ctype/g";
1795 };
1796 #endif
1797
1798
1799 /*
1800  *  Sony NEWSOS 5.0 does not support the complete ANSI C standard.
1801  */
1802 #ifdef SONY
1803 fix = {
1804     hackname = sony_stdio;
1805     files    = stdio.h;
1806     test     = " -x /bin/sony";
1807     test     = " ! -z \"`if /bin/sony ; then echo true ; fi`\"";
1808     sed      = "s/__filbuf/_filbuf/g\n"
1809                "s/__flsbuf/_flsbuf/g\n"
1810                "s/__iob/_iob/g";
1811 };
1812 #endif
1813
1814
1815 /*
1816  *  Incorrect #include in Sony News-OS 3.2.
1817  */
1818 fix = {
1819     hackname = sony_include;
1820     files    = machine/machparam.h;
1821     select   = '"\.\./machine/endian.h"';
1822     sed      = 's@"../machine/endian.h"@<machine/endian.h>@';
1823 };
1824
1825
1826 /*
1827  *  Sony NEWSOS 5.0 does not support the complete ANSI C standard.
1828  */
1829 #ifdef SONY
1830 fix = {
1831     hackname = sony_stdio;
1832     files    = stdio.h;
1833     test     = " -x /bin/sony";
1834     test     = " ! -z \"`if /bin/sony ; then echo true ; fi`\"";
1835     sed      = "s/__filbuf/_filbuf/g\n"
1836                "s/__flsbuf/_flsbuf/g\n"
1837                "s/__iob/_iob/g";
1838 };
1839 #endif
1840
1841
1842 /*
1843  *  Add a `static' declaration of `getrnge' into <regexp.h>.
1844  *
1845  *  Don't do this if there is already a `static void getrnge' declaration
1846  *  present, since this would cause a redeclaration error.  Solaris 2.x has
1847  *  such a declaration.
1848  */
1849 #ifdef SVR4
1850 fix = {
1851     hackname = static_getrnge;
1852     files    = regexp.h;
1853     bypass   = "static void getrnge";
1854     sed      = "/^static int[ \t]*size;/c\\\n"
1855                "static int      size ;\\\n\\\n"
1856                "static int getrnge ();";
1857 };
1858 #endif
1859
1860
1861 /*
1862  *  a missing semi-colon at the end of the statsswtch structure definition.
1863  */
1864 fix = {
1865     hackname  = statsswtch;
1866     files     = rpcsvc/rstat.h;
1867     select    = "boottime$";
1868     c_fix     = format;
1869     c_fix_arg = "boottime;";
1870     test_text = "struct statswtch {\n  int boottime\n};";
1871 };
1872
1873
1874 /*
1875  *  Arrange for stdio.h to use stdarg.h to define __gnuc_va_list.
1876  *  On 4BSD-derived systems, stdio.h defers to machine/ansi.h; that's
1877  *  OK too.
1878  */
1879 fix = {
1880     hackname = stdio_stdarg_h;
1881     files    = stdio.h;
1882     bypass   = "include.*(stdarg\.h|machine/ansi\.h)";
1883
1884     c_fix     = wrap;
1885
1886     c_fix_arg = "#define __need___va_list\n#include <stdarg.h>\n";
1887
1888     test_text = "";
1889 };
1890
1891
1892 /*
1893  *  Don't use or define the name va_list in stdio.h.
1894  *  This is for ANSI and also to interoperate properly with gcc's varargs.h.
1895  *  Note _BSD_VA_LIST_ is dealt with elsewhere.
1896  */
1897 fix = {
1898     hackname = stdio_va_list;
1899     files    = stdio.h;
1900     bypass   = '__gnuc_va_list|_BSD_VA_LIST_';
1901
1902     /*
1903      * Use __gnuc_va_list in arg types in place of va_list.
1904      * On 386BSD use __gnuc_va_list instead of _VA_LIST_.  We're hoping the
1905      * trailing parentheses and semicolon save all other systems from this.
1906      * Define __not_va_list__ (something harmless and unused)
1907      * instead of va_list.
1908      * Don't claim to have defined va_list.
1909      */
1910     sed = "s@ va_list @ __gnuc_va_list @\n"
1911           "s@ va_list)@ __gnuc_va_list)@\n"
1912           "s@ _VA_LIST_));@ __gnuc_va_list));@\n"
1913           "s@ va_list@ __not_va_list__@\n"
1914           "s@\\*va_list@*__not_va_list__@\n"
1915           "s@ __va_list)@ __gnuc_va_list)@\n"
1916           "s@typedef[ \t]\\(.*\\)[ \t]va_list[ \t]*;"
1917            "@typedef \\1 __not_va_list__;@\n"
1918           "s@GNUC_VA_LIST@GNUC_Va_LIST@\n"
1919           "s@_NEED___VA_LIST@_NEED___Va_LIST@\n"
1920           "s@VA_LIST@DUMMY_VA_LIST@\n"
1921           "s@_Va_LIST@_VA_LIST@";
1922 };
1923
1924
1925 /*
1926  *  Check for strict ansi compliance
1927  */
1928 #ifdef STRICT_ANSI
1929 fix = {
1930     hackname = strict_ansi;
1931     select   = "__STDC__[ \t]*[=!]=[ \t]*[01]";
1932     sed      = "s/__STDC__[ \t]*==[ \t]*0/!defined (__STRICT_ANSI__)/g";
1933     sed      = "s/__STDC__[ \t]*!=[ \t]*0/defined (__STRICT_ANSI__)/g";
1934     sed      = "s/__STDC__[ \t]*==[ \t]*1/defined (__STRICT_ANSI__)/g";
1935     sed      = "s/__STDC__[ \t]*!=[ \t]*1/!defined (__STRICT_ANSI__)/g";
1936 };
1937 #endif
1938
1939
1940 /*
1941  *  IRIX 4.0.5 <rpc/xdr.h> uses struct __file_s
1942  *  in prototype without previous definition.
1943  */
1944 fix = {
1945     hackname  = struct_file;
1946     files     = rpc/xdr.h;
1947     select    = '^.*xdrstdio_create.*struct __file_s';
1948     c_fix     = format;
1949     c_fix_arg = "struct __file_s;\n%0";
1950     test_text = "extern void xdrstdio_create( struct __file_s* );";
1951 };
1952
1953
1954 /*
1955  *  IRIX 4.0.5 <rpc/auth.h> uses struct sockaddr
1956  *  in prototype without previous definition.
1957  */
1958 fix = {
1959     hackname  = struct_sockaddr;
1960     files     = rpc/auth.h;
1961     select    = "^.*authdes_create.*struct sockaddr";
1962     bypass    = "<sys/socket\.h>";
1963     c_fix     = format;
1964     c_fix_arg = "struct sockaddr;\n%0";
1965     test_text = "extern AUTH* authdes_create( struct sockaddr* );";
1966 };
1967
1968
1969 /*
1970  *  Apply fix this to all OSs since this problem seems to effect
1971  *  more than just SunOS.
1972  */
1973 fix = {
1974     hackname = sun_auth_proto;
1975     files    = rpc/auth.h;
1976     files    = rpc/clnt.h;
1977     files    = rpc/svc.h;
1978     files    = rpc/xdr.h;
1979     /*
1980      *  Select those files containing '(*name)()'.
1981      */
1982     select    = '\(\*[a-z][a-z_]*\)\(\)';
1983
1984     c_fix     = format;
1985     c_fix_arg = "#ifdef __cplusplus\n%1(...);%2\n"
1986                 "#else\n%1();%2\n#endif";
1987     c_fix_arg = '(.*\(\*[a-z][a-z_]*\))\(\);(.*)';
1988
1989     test_text =
1990     "struct auth_t {\n"
1991     "    int (*name)(); /* C++ bad */\n"
1992     "};";
1993 };
1994
1995
1996 /*
1997  *  Fix bogus #ifdef on SunOS 4.1.
1998  */
1999 fix = {
2000     hackname  = sun_bogus_ifdef;
2001     files     = "hsfs/hsfs_spec.h";
2002     files     = "hsfs/iso_spec.h";
2003     select    = '#ifdef(.*\|\|.*)';
2004     c_fix     = format;
2005     c_fix_arg = "#if%1";
2006
2007     test_text = "#ifdef  __i386__ || __vax__ || __sun4c__";
2008 };
2009
2010
2011 /*
2012  *  Fix the CAT macro in SunOS memvar.h.
2013  */
2014 fix = {
2015     hackname  = sun_catmacro;
2016     files     = pixrect/memvar.h;
2017     select    = "^#define[ \t]+CAT\\(a,b\\).*";
2018     c_fix     = format;
2019
2020     c_fix_arg =
2021     "#ifdef __STDC__\n"
2022     "#  define CAT(a,b) a##b\n"
2023     "#else\n%0\n#endif";
2024
2025     test_text =
2026     "#define CAT(a,b)\ta/**/b";
2027 };
2028
2029
2030 /*
2031  *  Fix return type of free and {c,m,re}alloc in <malloc.h> on SunOS 4.1.
2032  *  Also fix return type of {m,re}alloc in <malloc.h> on sysV68
2033  */
2034 fix = {
2035     hackname = sun_malloc;
2036     files    = malloc.h;
2037
2038     sed   = "s/typedef[ \t]char \\*\tmalloc_t/typedef void \\*\tmalloc_t/g";
2039     sed   = "s/int[ \t][ \t]*free/void\tfree/g";
2040     sed   = "s/char\\([ \t]*\\*[ \t]*malloc\\)/void\\1/g";
2041     sed   = "s/char\\([ \t]*\\*[ \t]*realloc\\)/void\\1/g";
2042     sed   = "s/char\\([ \t]*\\*[ \t]*calloc\\)/void\\1/g";
2043
2044     test_text =
2045     "typedef char *\tmalloc_t;\n"
2046     "int \tfree();\n"
2047     "char*\tmalloc();\n"
2048     "char*\tcalloc();\n"
2049     "char*\trealloc();";
2050 };
2051
2052
2053 /*
2054  *  Check for yet more missing ';' in struct (in SunOS 4.0.x)
2055  */
2056 fix = {
2057     hackname = sun_rusers_semi;
2058     files    = rpcsvc/rusers.h;
2059     select   = "_cnt$";
2060     sed      = "/^struct/,/^};/s/_cnt$/_cnt;/";
2061     test_text = "struct mumble\n  int _cnt\n};";
2062 };
2063
2064
2065 /*
2066  *  signal.h on SunOS defines signal using (),
2067  *  which causes trouble when compiling with g++ -pedantic.
2068  */
2069 fix = {
2070     hackname = sun_signal;
2071     files    = sys/signal.h;
2072     files    = signal.h;
2073     select   = "^void\t" '\(\*signal\(\)\)\(\);.*';
2074
2075     c_fix     = format;
2076     c_fix_arg =
2077           "#ifdef __cplusplus\n"
2078           "void\t(*signal(...))(...);\n"
2079           "#else\n%0\n#endif";
2080
2081     test_text = "void\t(*signal())();";
2082 };
2083
2084
2085 /*
2086  *  math.h on SunOS 4 puts the declaration of matherr before the definition
2087  *  of struct exception, so the prototype (added by fixproto) causes havoc.
2088  */
2089 fix = {
2090     hackname  = sunos_matherr_decl;
2091     files     = math.h;
2092
2093     /*  If matherr has a prototype already, the header needs no fix.  */
2094     bypass    = 'matherr.*struct exception';
2095     select    = matherr;
2096
2097     c_fix     = wrap;
2098     c_fix_arg = "struct exception;\n";
2099
2100     test_text = "extern int matherr();";
2101 };
2102
2103
2104 /*
2105  *  Correct the return type for strlen in strings.h in SunOS 4.
2106  */
2107 fix = {
2108     hackname = sunos_strlen;
2109     files    = strings.h;
2110     select   = "int[ \t]*strlen\\(\\);(.*)";
2111     c_fix     = format;
2112     c_fix_arg = "__SIZE_TYPE__ strlen();%1";
2113     test_text = " int\tstrlen(); /* string length */";
2114 };
2115
2116
2117 /*
2118  *  Solaris math.h and floatingpoint.h define __P without protection,
2119  *  which conflicts with the fixproto definition.  The fixproto
2120  *  definition and the Solaris definition are used the same way.
2121  */
2122 fix = {
2123     hackname = svr4__p;
2124     files    = math.h;
2125     files    = floatingpoint.h;
2126     select   = "^#define[ \t]+__P.*";
2127     c_fix     = format;
2128     c_fix_arg = "#ifndef __P\n%0\n#endif";
2129
2130     test_text = "#define __P(a) a";
2131 };
2132
2133
2134 /*
2135  *  Disable apparent native compiler optimization cruft in SVR4.2 <string.h>
2136  *  that is visible to any ANSI compiler using this include.  Simply
2137  *  delete the lines that #define some string functions to internal forms.
2138  */
2139 #ifdef SVR4
2140 fix = {
2141     hackname = svr4_disable_opt;
2142     files    = string.h;
2143     select   = '#define.*__std_hdr_';
2144     sed      = '/#define.*__std_hdr_/d';
2145 };
2146 #endif
2147
2148
2149 /*
2150  *  Conditionalize some of <sys/endian.h> on __GNUC__ and __GNUG__.
2151  *  On some systems (UnixWare 2, UnixWare 7), the file is byteorder.h
2152  *  but we still "hijack" it and redirect it to the GNU byteorder.h..
2153  *
2154  *
2155  */
2156 #ifdef SVR5
2157 fix = {
2158     hackname = svr4_endian;
2159     files    = sys/endian.h;
2160 #ifdef LATER
2161     /*
2162      * since we emit our own sys/byteorder.h,
2163      * this fix can never be applied to that file.
2164      */
2165     files    = sys/byteorder.h;
2166 #endif
2167     bypass   = '__GNUC__';
2168
2169     sed      = "/#\tifdef\t__STDC__/i\\\n"
2170                "#   if !defined (__GNUC__) && !defined (__GNUG__)\n";
2171
2172     sed      = "/#\t\tinclude\t<sys\\/byteorder.h>/s/\t\t/   /";
2173
2174     sed      = "/#   include\t<sys\\/byteorder.h>/i\\\n"
2175                "#   endif /* !defined (__GNUC__) && !defined (__GNUG__) */\n";
2176 };
2177 #endif /* SVR5 */
2178
2179
2180 /*
2181  *  Remove useless extern keyword from struct forward declarations
2182  *  in <sys/stream.h> and <sys/strsubr.h>
2183  */
2184 #ifdef SVR4
2185 fix = {
2186     hackname = svr4_extern_struct;
2187     files    = sys/stream.h;
2188     files    = sys/strsubr.h;
2189     select   = 'extern struct [a-z_]*;';
2190     sed      = 's/extern struct \([a-z][a-z_]*\)/struct \1/';
2191 };
2192 #endif
2193
2194 /*
2195  *  Fix declarations of `ftw' and `nftw' in <ftw.h>.  On some/most SVR4
2196  *  systems the file <ftw.h> contains extern declarations of these
2197  *  functions followed by explicitly `static' definitions of these
2198  *  functions... and that's not allowed according to ANSI C.  (Note
2199  *  however that on Solaris, this header file glitch has been pre-fixed by
2200  *  Sun.  In the Solaris version of <ftw.h> there are no static
2201  *  definitions of any function so we don't need to do any of this stuff
2202  *  when on Solaris.
2203  */
2204 #ifdef SVR4
2205 #ifndef SOLARIS
2206 fix = {
2207     hackname = svr4_ftw;
2208     files    = ftw.h;
2209     select   = '^extern int ftw\(const';
2210
2211     sed = '/^extern int ftw(const/i' "\\\n"
2212             "#if !defined(_STYPES)\\\n"
2213             "static\\\n"
2214             "#else\\\n"
2215             "extern\\\n"
2216             "#endif";
2217     sed = 's/extern \(int ftw(const.*\)$/\1/';
2218     sed = "/^extern int nftw/i\\\n"
2219             "#if defined(_STYPES)\\\n"
2220             "static\\\n"
2221             "#else\\\n"
2222             "extern\\\n"
2223             "#endif";
2224     sed = 's/extern \(int nftw.*\)$/\1/';
2225     sed = "/^extern int ftw(),/c\\\n"
2226             "#if !defined(_STYPES)\\\n"
2227             "static\\\n"
2228             "#else\\\n"
2229             "extern\\\n"
2230             "#endif\\\n"
2231             "  int ftw();\\\n"
2232             "#if defined(_STYPES)\\\n"
2233             "static\\\n"
2234             "#else\\\n"
2235             "extern\\\n"
2236             "#endif\\\n"
2237             "  int nftw();";
2238 };
2239 #endif
2240 #endif
2241
2242
2243 /*
2244  *   Fix broken decl of getcwd present on some svr4 systems.
2245  */
2246 fix = {
2247     hackname = svr4_getcwd;
2248     files    = stdlib.h;
2249     files    = unistd.h;
2250     files    = prototypes.h;
2251     select   = 'getcwd\(char \*, int\)';
2252
2253     c_fix     = format;
2254     c_fix_arg = "getcwd(char *, size_t)";
2255
2256     test_text = "extern char* getcwd(char *, int);";
2257 };
2258
2259
2260 /*
2261  *  set ifdef _KERNEL
2262  */
2263 #ifdef SVR4
2264 fix = {
2265     hackname = svr4_kernel;
2266     files    = fs/rfs/rf_cache.h;
2267     files    = sys/erec.h;
2268     files    = sys/err.h;
2269     files    = sys/char.h;
2270     files    = sys/getpages.h;
2271     files    = sys/map.h;
2272     files    = sys/cmn_err.h;
2273     files    = sys/kdebugger.h;
2274     bypass   = '_KERNEL';
2275     c_fix     = wrap;
2276
2277     c_fix_arg = "#ifdef _KERNEL\n";
2278     c_fix_arg = "#endif /* _KERNEL */\n";
2279     test_text = "";
2280 };
2281 #endif
2282
2283 /*
2284  *  Delete any #defines of `__i386' which may be present in <ieeefp.h>.  They
2285  *  tend to conflict with the compiler's own definition of this symbol.  (We
2286  *  will use the compiler's definition.)
2287  *  Likewise __sparc, for Solaris, and __i860, and a few others
2288  *  (guessing it is necessary for all of them).
2289  */
2290 #ifdef SVR4
2291 fix = {
2292     hackname = svr4_mach_defines;
2293     files    = ieeefp.h;
2294     select   = "#define[ \t]*__(i386|i860|mips|sparc|m88k|m68k)[ \t]";
2295     sed      = "/#define[ \t]*__\\(i386|i860|mips|sparc|m88k|m68k\\)[ \t]/d";
2296 };
2297 #endif
2298
2299
2300 /*
2301  *  Fix declarations of `makedev', `major', and `minor' in <sys/mkdev.h>.
2302  *  They are declared as non-static then immediately redeclared as static.
2303  */
2304 #ifdef SVR5
2305 fix = {
2306     hackname = svr4_mkdev;
2307     files    = sys/mkdev.h;
2308     select   = '^static';
2309
2310     sed      = "/^dev_t makedev(/s/^/static /";
2311     sed      = "/^major_t major(/s/^/static /";
2312     sed      = "/^minor_t minor(/s/^/static /";
2313 };
2314 #endif /* SVR5 */
2315
2316
2317 /*
2318  *  Fix reference to NC_NPI_RAW in <sys/netcspace.h>.
2319  *  Also fix types of array initializers.
2320  */
2321 #ifdef SVR4
2322 fix = {
2323     hackname = svr4_netcspace;
2324     files    = sys/netcspace.h;
2325     select   = 'NC_NPI_RAW';
2326     sed      = 's/NC_NPI_RAW/NC_TPI_RAW/g';
2327     sed      = 's/NC_/(unsigned long) NC_/';
2328 };
2329 #endif
2330
2331 /*
2332  *  Fix reference to NMSZ in <sys/adv.h>.
2333  */
2334 #ifdef SVR4
2335 fix = {
2336     hackname = svr4_nmsz;
2337     files    = sys/adv.h;
2338     select   = '\[NMSZ\]';
2339     sed      = 's/\[NMSZ\]/\[RFS_NMSZ\]/g';
2340 };
2341 #endif
2342
2343
2344 /*
2345  *   Fix broken decl of profil present on some svr4 systems.
2346  */
2347 fix = {
2348     hackname = svr4_profil;
2349     files    = stdlib.h;
2350     files    = unistd.h;
2351
2352     select    =
2353     'profil\(unsigned short \*, unsigned int, unsigned int, unsigned int\)';
2354     c_fix     = format;
2355     c_fix_arg = 'profil(unsigned short *, size_t, int, unsigned int)';
2356
2357     test_text =
2358     'profil(unsigned short *, unsigned int, unsigned int, unsigned int);';
2359 };
2360
2361
2362 /*
2363  *  Convert functions to prototype form, and fix arg names in <sys/stat.h>.
2364  */
2365 #ifdef SVR4
2366 fix = {
2367     hackname = svr4_proto_form;
2368     files    = sys/stat.h;
2369     select   = 'const extern';
2370
2371     sed      = "/^stat([ \t]*[^c]/ {\nN\nN\n"
2372                    "s/(.*)\\n/( /\n"
2373                    "s/;\\n/, /\n"
2374                    "s/;$/)/\n"  "}";
2375
2376     sed      = "/^lstat([ \t]*[^c]/ {\nN\nN\n"
2377                    "s/(.*)\\n/( /\n"
2378                    "s/;\\n/, /\n"
2379                    "s/;$/)/\n"  "}";
2380
2381     sed      = "/^fstat([ \t]*[^i]/ {\nN\nN\n"
2382                    "s/(.*)\\n/( /\n"
2383                    "s/;\\n/, /\n"
2384                    "s/;$/)/\n"  "}";
2385
2386     sed      = "/^mknod([ \t]*[^c]/{\nN\nN\nN\n"
2387                    "s/(.*)\\n/( /\n"
2388                    "s/;\\n/, /g\n"
2389                    "s/;$/)/\n"  "}";
2390
2391     sed      = "1,$s/\\([^A-Za-z]\\)path\\([^A-Za-z]\\)/\\1__path\\2/g";
2392     sed      = "1,$s/\\([^A-Za-z]\\)buf\\([^A-Za-z]\\)/\\1__buf\\2/g";
2393     sed      = "1,$s/\\([^A-Za-z]\\)fd\\([^A-Za-z]\\)/\\1__fd\\2/g";
2394     sed      = "1,$s/ret\\([^u]\\)/__ret\\1/g";
2395     sed      = "1,$s/\\([^_]\\)mode\\([^_]\\)/\\1__mode\\2/g";
2396     sed      = "1,$s/\\([^_r]\\)dev\\([^_]\\)/\\1__dev\\2/g";
2397 };
2398 #endif
2399
2400 /*
2401  *  Add a prototyped declaration of mmap to <sys/mman.h>.
2402  */
2403 #ifdef SVR4
2404 fix = {
2405     hackname = svr4_proto_mmap;
2406     files    = sys/mman.h;
2407     select   = '^extern caddr_t mmap();$';
2408     sed = '/^extern caddr_t mmap();$/c' "\\\n"
2409           "#ifdef __STDC__\\\n"
2410           "extern caddr_t mmap (caddr_t, size_t, int, int, int, off_t);\\\n"
2411           "#else /* !defined(__STDC__) */\\\n"
2412           "extern caddr_t mmap ();\\\n"
2413           "#endif /* !defined(__STDC__) */\\\n";
2414 };
2415 #endif
2416
2417 /*
2418  *  Add a #define of _SIGACTION_ into <sys/signal.h>.
2419  */
2420 #ifdef SVR4
2421 fix = {
2422     hackname = svr4_sigaction;
2423     files    = sys/signal.h;
2424     sed      = "/^struct sigaction {/i\\\n"
2425                "#define _SIGACTION_";
2426     sed      = 's/(void *(\*)())/(void (*)(int))/';
2427 };
2428 #endif
2429
2430 /*
2431  *  Put storage class at start of decl, to avoid warning.
2432  */
2433 #ifdef SVR4
2434 fix = {
2435     hackname = svr4_storage_class;
2436     files    = rpc/types.h;
2437     select   = 'const extern';
2438     sed      = 's/const extern/extern const/g';
2439 };
2440 #endif
2441
2442
2443 /* 
2444  *  Like svr4_mach_defines, but with newfangled syntax.
2445  *  Source lines are of #define __i386 #machine(i386).   Delete them.
2446  */
2447 #ifdef SVR5
2448 fix = {
2449     hackname = svr5_mach_defines;
2450     files    = ieeefp.h;
2451     select   = "#define[ \t]*__i386.*\(i386\)";
2452     sed      = "/#define[ \t]*__i386.*/d";
2453 };
2454 #endif /*  SVR5 */
2455
2456
2457 /*
2458  * Fix these files to use the same types that we think they should.
2459  * XXX - extremely dubious changes here.
2460  */
2461 fix = {
2462     hackname = systypes;
2463     files  = "sys/types.h";
2464     files  = "stdlib.h";
2465     files  = "sys/stdtypes.h";
2466     files  = "stddef.h";
2467     files  = "memory.h";
2468     files  = "unistd.h";
2469     select = "typedef[ \t]+[a-z_][ \ta-z_]*[ \t]"
2470              "(size|ptrdiff|wchar)_t";
2471
2472       sed  = "/^[ \t]*\\*[ \t]*typedef unsigned int size_t;/N";
2473
2474       sed  = "s/^\\([ \t]*\\*[ \t]*typedef unsigned int size_t;\\n"
2475                "[ \t]*\\*\\/\\)/\\1\\\n"
2476              "#ifndef __SIZE_TYPE__\\\n"
2477              "#define __SIZE_TYPE__ long unsigned int\\\n"
2478              "#endif\\\n"
2479              "typedef __SIZE_TYPE__ size_t;\\\n/";
2480
2481       sed  = "/typedef[ \t][ \t]*[a-z_][ \ta-z_]*[ \t]size_t/i\\\n"
2482                    "#ifndef __SIZE_TYPE__\\\n"
2483                    "#define __SIZE_TYPE__ long unsigned int\\\n"
2484                    "#endif\n";
2485
2486       sed  = "s/typedef[ \t][ \t]*[a-z_][ \ta-z_]*[ \t]size_t/"
2487                "typedef __SIZE_TYPE__ size_t/";
2488
2489       sed  = "/typedef[ \t][ \t]*[a-z_][ \ta-z_]*[ \t]ptrdiff_t/i\\\n"
2490                    "#ifndef __PTRDIFF_TYPE__\\\n"
2491                    "#define __PTRDIFF_TYPE__ long int\\\n"
2492                    "#endif\n";
2493
2494       sed  = "s/typedef[ \t][ \t]*[a-z_][ \ta-z_]*[ \t]ptrdiff_t/"
2495                "typedef __PTRDIFF_TYPE__ ptrdiff_t/";
2496
2497       sed  = "/typedef[ \t][ \t]*[a-z_][ \ta-z_]*[ \t]wchar_t/i\\\n"
2498                    "#ifndef __WCHAR_TYPE__\\\n"
2499                    "#define __WCHAR_TYPE__ int\\\n"
2500                    "#endif\\\n"
2501                    "#ifndef __cplusplus\n";
2502
2503       sed  = "/typedef[ \t][ \t]*[a-z_][ \ta-z_]*[ \t]wchar_t/a\\\n"
2504                    "#endif\n";
2505
2506       sed  = "s/typedef[ \t][ \t]*[a-z_][ \ta-z_]*[ \t]wchar_t/"
2507                "typedef __WCHAR_TYPE__ wchar_t/";
2508 };
2509
2510
2511 /*
2512  * Fix files that may contain a stray definition of size_t.  Take care
2513  * not to match ssize_t or mere uses of size_t.
2514  */
2515 fix = {
2516     hackname = systypes_stdlib_size_t;
2517     files    = sys/types.h;
2518     files    = stdlib.h;
2519     select   = "typedef[ \t]+[A-Za-z_][ \tA-Za-z_]*[ \t]size_t.*";
2520     bypass   = "_(GCC|BSD)_SIZE_T";
2521
2522     c_fix     = format;
2523     c_fix_arg =
2524     "#ifndef _GCC_SIZE_T\n"
2525     "#define _GCC_SIZE_T\n%0\n#endif";
2526
2527     test_text = "typedef unsigned int size_t; /* size of something */";
2528 };
2529
2530
2531 /*
2532  *  Fix return value of mem{ccpy,chr,cpy,set} and str{len,spn,cspn}
2533  *  in string.h on sysV68
2534  *  Correct the return type for strlen in string.h on Lynx.
2535  *  Correct the argument type for ffs in string.h on Alpha OSF/1 V2.0.
2536  *  Add missing const for strdup on OSF/1 V3.0.
2537  *  On sysV88 layout is slightly different.
2538  */
2539 fix = {
2540     hackname = sysv68_string;
2541     files    = string.h;
2542
2543     sed = "s/extern[ \t]*int[ \t]*strlen();/extern unsigned int strlen();/";
2544     sed = "s/extern[ \t]*int[ \t]*ffs[ \t]*(long);/extern int ffs(int);/";
2545     sed = "s/strdup(char \\*s1);/strdup(const char *s1);/";
2546     sed = "/^extern char$/N";
2547     sed = "s/^extern char\\(\\n\t\\*memccpy(),\\)$/extern void\\1/";
2548     sed = "/^\tstrncmp(),$/N";
2549     sed = "s/^\\(\tstrncmp()\\),\\n\\(\tstrlen(),\\)$/\\1;\\\n"
2550           "extern unsigned int\\\n\\2/";
2551     sed = "/^extern int$/N";
2552     sed = "s/^extern int\\(\\n\tstrlen(),\\)/extern size_t\\1/";
2553 };
2554
2555
2556 /*
2557  *  Fix return type of calloc, malloc, realloc, bsearch and exit
2558  */
2559 fix = {
2560     hackname = sysz_stdlib_for_sun;
2561     files    = stdlib.h;
2562
2563     select    = "char[ \t]*\\*[ \t]*(calloc|malloc|realloc|bsearch)[ \t]*\\(";
2564     c_fix     = format;
2565     c_fix_arg = "void *\t%1(";
2566
2567     test_text =
2568     "extern char*\tcalloc(size_t);\n"
2569     "extern char*\tmalloc(size_t);\n"
2570     "extern char*\trealloc(void*,size_t);\n"
2571     "extern char*\tbsearch(void*,size_t,size_t);\n";
2572 };
2573
2574
2575 /*
2576  *  Fix this Sun file to avoid interfering with stddef.h.
2577  *  We use a funny name to ensure it follows 'systypes' fix.
2578  */
2579 fix = {
2580     hackname = sysz_stdtypes_for_sun;
2581     files = sys/stdtypes.h;
2582     sed   = "/[\t ]size_t.*;/i\\\n"
2583               "#ifndef _GCC_SIZE_T\\\n"
2584               "#define _GCC_SIZE_T\n";
2585
2586     sed   = "/[\t ]size_t.*;/a\\\n"
2587               "#endif\n";
2588
2589     sed   = "/[\t ]ptrdiff_t.*;/i\\\n"
2590               "#ifndef _GCC_PTRDIFF_T\\\n"
2591               "#define _GCC_PTRDIFF_T\n";
2592
2593     sed   = "/[\t ]ptrdiff_t.*;/a\\\n"
2594               "#endif\n";
2595
2596     sed   = "/[\t ]wchar_t.*;/i\\\n"
2597               "#ifndef _GCC_WCHAR_T\\\n"
2598               "#define _GCC_WCHAR_T\n";
2599
2600     sed   = "/[\t ]wchar_t.*;/a\\\n"
2601               "#endif\n";
2602
2603     test_text = "typedef int size_t; /* ??? */\n"
2604      "typedef int ptrdiff_t; /* result of subtracting two pointers */\n"
2605      "typedef unsigned short wchar_t; /* big enough for biggest char set */\n";
2606 };
2607
2608
2609 /*
2610  *  if the #if says _cplusplus, not the double underscore __cplusplus
2611  *  that it should be
2612  */
2613 fix = {
2614     hackname = tinfo_cplusplus;
2615     files    = tinfo.h;
2616     select   = "[ \t]_cplusplus";
2617     sed      = "s/[ \t]_cplusplus/ __cplusplus/";
2618 };
2619
2620
2621 /*
2622  *  parameter to atof not const on DECstation Ultrix V4.0 and NEWS-OS 4.2R.
2623  */
2624 fix = {
2625     hackname = ultrix_atof_param;
2626     files    = math.h;
2627     select   = "atof\\([ \t]*char";
2628
2629     sed = "s@atof(\\([ \t]*char[ \t]*\\*[^)]*\\))@atof(const \\1)@";
2630 };
2631
2632
2633 /*
2634  *  parameters not const on DECstation Ultrix V4.0 and OSF/1.
2635  */
2636 fix = {
2637     hackname = ultrix_const;
2638     files    = stdio.h;
2639
2640     sed   = 's@perror( char \*__s );@perror( const char *__s );@';
2641     sed   = 's@fputs( char \*__s,@fputs( const char *__s,@';
2642     sed   = 's@fopen( char \*__filename, char \*__type );@'
2643               'fopen( const char *__filename, const char *__type );@';
2644     sed   = 's@fwrite( void \*__ptr,@fwrite( const void *__ptr,@';
2645     sed   = 's@fscanf( FILE \*__stream, char \*__format,@'
2646               'fscanf( FILE *__stream, const char *__format,@';
2647     sed   = 's@scanf( char \*__format,@scanf( const char *__format,@';
2648     sed   = 's@sscanf( char \*__s, char \*__format,@'
2649               'sscanf( const char *__s, const char *__format,@';
2650     sed   = 's@popen(char \*, char \*);@popen(const char *, const char *);@';
2651     sed   = 's@tempnam(char\*,char\*);@tempnam(const char*,const char*);@';
2652 };
2653
2654
2655 /*
2656  * Ultrix V4.[35] puts the declaration of uname before the definition
2657  * of struct utsname, so the prototype (added by fixproto) causes havoc.
2658  */
2659 fix = {
2660     hackname = ultrix_fix_fixproto;
2661     files    = sys/utsname.h;
2662     select   = ULTRIX;
2663     sed      = "/^[ \t]*extern[ \t]*int[ \t]*uname();$/i\\\n"
2664                "struct utsname;\n";
2665 };
2666
2667
2668 /*
2669  *  Check for bad #ifdef line (in Ultrix 4.1)
2670  */
2671 fix = {
2672     hackname = ultrix_ifdef;
2673     select   = "#ifdef KERNEL[ \t]*[^ \t]";
2674     files    = sys/file.h;
2675     sed      = "s/#ifdef KERNEL/#if defined(KERNEL)/";
2676 };
2677
2678
2679 /*
2680  *  Check for superfluous `static' (in Ultrix 4.2)
2681  *  On Ultrix 4.3, includes of other files (r3_cpu.h,r4_cpu.h) is broken.
2682  */
2683 fix = {
2684     hackname = ultrix_static;
2685     files  = machine/cpu.h;
2686     select = '#include "r[34]_cpu';
2687     sed    = "s/^static struct tlb_pid_state/struct tlb_pid_state/";
2688     sed    = 's/^#include "r3_cpu\.h"$/#include <machine\/r3_cpu\.h>/';
2689     sed    = 's/^#include "r4_cpu\.h"$/#include <machine\/r4_cpu\.h>/';
2690 };
2691
2692
2693 /*
2694  *  Fix multiple defines for NULL.  Sometimes, we stumble into \r\n
2695  *  terminated lines, so accommodate these.  Test both ways.
2696  */
2697 fix = {
2698     hackname  = undefine_null;
2699     select    = "^#[ \t]*define[ \t]+NULL[ \t]";
2700     bypass    = "#[ \t]*(ifn|un)def[ \t]+NULL($|[ \t\r])";
2701
2702     c_fix     = format;
2703     c_fix_arg = "#ifndef NULL%2\n#define NULL%1%2\n#endif%2\n";
2704     c_fix_arg = "^#[ \t]*define[ \t]*[ \t]NULL([^\r\n]+)([\r]*)\n";
2705
2706     test_text = "#define NULL 0UL\r\n#define NULL\t((void*)0)\n";
2707 };
2708
2709
2710 /*
2711  * If arpa/inet.h prototypes are incompatible with the ones we just
2712  * installed in <sys/byteorder.h>, just remove the protos.
2713  * Because of this close association, this patch must be applied only
2714  * on those systems where the replacement byteorder header is installed.
2715  */
2716 fix = {
2717     hackname = unixware7_byteorder_fix;
2718     files    = arpa/inet.h;
2719     select   = "in_port_t";
2720 #ifndef SVR5
2721         mach = "*-*-sysv4*";
2722         mach = "i[34567]86-*-sysv5*";
2723         mach = "i[34567]86-*-udk*";
2724         mach = "i[34567]86-*-solaris2.[0-4]";
2725         mach = "powerpcle-*-solaris2.[0-4]";
2726         mach = "sparc-*-solaris2.[0-4]";
2727 #endif /* SVR5 */
2728     sed      =  '/^extern.*htons.*(in_port_t)/d';
2729     sed      =  '/^extern.*ntohs.*(in_port_t)/d';
2730 };
2731
2732
2733 /*
2734  *  Fix definitions of macros used by va-i960.h in VxWorks header file.
2735  */
2736 fix = {
2737     hackname = va_i960_macro;
2738     files    = arch/i960/archI960.h;
2739     select   = "__(vsiz|vali|vpad|alignof__)";
2740     sed = "s/__vsiz/__vxvsiz/";
2741     sed = "s/__vali/__vxvali/";
2742     sed = "s/__vpad/__vxvpad/";
2743     sed = "s/__alignof__/__vxalignof__/";
2744 };
2745
2746
2747 /*
2748  *  AIX headers define NULL to be cast to a void pointer,
2749  *  which is illegal in ANSI C++.
2750  */
2751 fix = {
2752     hackname = void_null;
2753     files    = curses.h;
2754     files    = dbm.h;
2755     files    = locale.h;
2756     files    = stdio.h;
2757     files    = stdlib.h;
2758     files    = string.h;
2759     files    = time.h;
2760     files    = unistd.h;
2761     files    = sys/dir.h;
2762     files    = sys/param.h;
2763     files    = sys/types.h;
2764     select   = "#[ \t]*define[ \t][ \t]*NULL[ \t].*void";
2765     sed      = "s/^#[ \t]*define[ \t]*NULL[ \t]*((void[ \t]*\\*)0)"
2766                 "/#define NULL 0/";
2767 };
2768
2769
2770 /*
2771  *  Make VxWorks header which is almost gcc ready fully gcc ready.
2772  */
2773 fix = {
2774     hackname = vxworks_gcc_problem;
2775     files    = types/vxTypesBase.h;
2776     select   = "__GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__";
2777
2778     sed = "s/#ifdef __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__/"
2779           "#if 1/";
2780
2781     sed = "/[ \t]size_t/i\\\n"
2782         "#ifndef _GCC_SIZE_T\\\n"
2783         "#define _GCC_SIZE_T\n";
2784
2785     sed = "/[ \t]size_t/a\\\n"
2786         "#endif\n";
2787
2788     sed = "/[ \t]ptrdiff_t/i\\\n"
2789         "#ifndef _GCC_PTRDIFF_T\\\n"
2790         "#define _GCC_PTRDIFF_T\n";
2791
2792     sed = "/[ \t]ptrdiff_t/a\\\n"
2793         "#endif\n";
2794
2795     sed = "/[ \t]wchar_t/i\\\n"
2796         "#ifndef _GCC_WCHAR_T\\\n"
2797         "#define _GCC_WCHAR_T\n";
2798
2799     sed = "/[ \t]wchar_t/a\\\n"
2800         "#endif\n";
2801 };
2802
2803
2804 /*
2805  *  Fix VxWorks <time.h> to not require including <vxTypes.h>.
2806  */
2807 fix = {
2808     hackname = vxworks_needs_vxtypes;
2809     files    = time.h;
2810     select   = "uint_t[ \t][ \t]*_clocks_per_sec";
2811     sed      = "s/uint_t/unsigned int/";
2812     test_text = "uint_t\t_clocks_per_sec;";
2813 };
2814
2815
2816 /*
2817  *  Fix VxWorks <sys/stat.h> to not require including <vxWorks.h>.
2818  */
2819 fix = {
2820     hackname = vxworks_needs_vxworks;
2821     files    = sys/stat.h;
2822     test     = " -r types/vxTypesOld.h";
2823     test     = " -n \"`egrep '#include' $file`\"";
2824     test     = " -n \"`egrep ULONG $file`\"";
2825     select   = "#[ \t]define[ \t][ \t]*__INCstath";
2826
2827     sed = "/#[ \t]define[ \t][ \t]*__INCstath/a\\\n"
2828           "#include <types/vxTypesOld.h>\n";
2829 };
2830
2831
2832 /*
2833  *  Another bad dependency in VxWorks 5.2 <time.h>.
2834  */
2835 fix = {
2836     hackname = vxworks_time;
2837     files    = time.h;
2838     select   = "VOIDFUNCPTR";
2839     test     = " -r vxWorks.h";
2840     sed      = "/VOIDFUNCPTR/i\\\n"
2841                "#ifndef __gcc_VOIDFUNCPTR_defined\\\n"
2842                "#ifdef __cplusplus\\\n"
2843                "typedef void (*__gcc_VOIDFUNCPTR) (...);\\\n"
2844                "#else\\\n"
2845                "typedef void (*__gcc_VOIDFUNCPTR) ();\\\n"
2846                "#endif\\\n"
2847                "#define __gcc_VOIDFUNCPTR_defined\\\n"
2848                "#endif\n";
2849
2850     sed      = "s/VOIDFUNCPTR/__gcc_VOIDFUNCPTR/g";
2851 };
2852
2853
2854 /*
2855  *  There are several name conflicts with C++ reserved words in X11 header
2856  *  files.  These are fixed in some versions, so don't do the fixes if
2857  *  we find __cplusplus in the file.  These were found on the RS/6000.
2858  */
2859 fix = {
2860     hackname = x11_class;
2861     files    = X11/ShellP.h;
2862     bypass   = __cplusplus;
2863     sed      = "/char \\*class;/i\\\n"
2864                    "#ifdef __cplusplus\\\n"
2865                    "\tchar *c_class;\\\n"
2866                    "#else\n";
2867     sed      = "/char \\*class;/a\\\n"
2868                    "#endif\n";
2869     test_text =
2870     "struct {\n"
2871     "   char *class;\n"
2872     "} mumble;\n";
2873 };
2874
2875
2876 /*
2877  *  class in Xm/BaseClassI.h
2878  */
2879 fix = {
2880     hackname = x11_class_usage;
2881     files    = Xm/BaseClassI.h;
2882     bypass   = "__cplusplus";
2883     sed      = "s/ class[)]/ c_class)/g";
2884     test_text = "extern mumble (int  class);\n";
2885 };
2886
2887
2888 /*
2889  *  new in Xm/Traversal.h
2890  */
2891 fix = {
2892     hackname = x11_new;
2893     files    = Xm/Traversal.h;
2894     bypass   = __cplusplus;
2895
2896     sed      = "/Widget\told, new;/i\\\n"
2897                    "#ifdef __cplusplus\\\n"
2898                    "\tWidget\told, c_new;\\\n"
2899                    "#else\n";
2900
2901     sed      = "/Widget\told, new;/a\\\n"
2902                    "#endif\n";
2903
2904     sed      = "s/Widget new,/Widget c_new,/g";
2905     test_text =
2906     "struct wedge {\n"
2907     "   Widget\told, new; /* fix the new */\n"
2908     "};\nextern Wedged( Widget new, Widget old );";
2909 };
2910
2911
2912 /*
2913  *  Incorrect sprintf declaration in X11/Xmu.h
2914  */
2915 fix = {
2916     hackname = x11_sprintf;
2917     files    = X11/Xmu.h;
2918     files    = X11/Xmu/Xmu.h;
2919     select   = 'sprintf\(\)';
2920
2921     sed      = "s,^extern char \\*\tsprintf();$,#ifndef __STDC__\\\n"
2922                "extern char *\tsprintf();\\\n"
2923                "#endif /* !defined __STDC__ */,";
2924     test_text = "extern char *\tsprintf();";
2925 };
2926
2927 /*EOF*/