OSDN Git Service

yet more applications of c_fix=format + tests
[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  *  On Interactive Unix 2.2, certain traditional Unix definitions
1027  *  (notably getc and putc in stdio.h) are omitted if __STDC__ is
1028  *  defined, not just if _POSIX_SOURCE is defined.  This makes it
1029  *  impossible to compile any nontrivial program except with -posix.
1030  */
1031 fix = {
1032     hackname = isc_omits_with_stdc;
1033
1034     files     = "stdio.h";
1035     files     = "math.h";
1036     files     = "ctype.h";
1037     files     = "sys/limits.h";
1038     files     = "sys/fcntl.h";
1039     files     = "sys/dirent.h";
1040
1041     select    = '!defined\(__STDC__\) && !defined\(_POSIX_SOURCE\)';
1042     c_fix     = format;
1043     c_fix_arg = '!defined(_POSIX_SOURCE)';
1044     test_text = "#if !defined(__STDC__) && !defined(_POSIX_SOURCE) /* ? ! */"
1045                 "\nint foo;\n#endif";
1046 };
1047
1048
1049 /*
1050  *  Fix various macros used to define ioctl numbers.
1051  *  The traditional syntax was:
1052  *
1053  *    #define _IO(n, x) (('n'<<8)+x)
1054  *    #define TIOCFOO _IO(T, 1)
1055  *
1056  *  but this does not work with the C standard, which disallows macro
1057  *  expansion inside strings.  We have to rewrite it thus:
1058  *
1059  *    #define _IO(n, x) ((n<<8)+x)
1060  *    #define TIOCFOO  _IO('T', 1)
1061  *
1062  *  The select expressions match too much, but the c_fix code is cautious.
1063  *
1064  *  _IO might be: _IO DESIO BSD43__IO with W, R, WR, C, ... suffixes.
1065  */
1066 fix = {
1067     hackname  = io_quotes_def;
1068     select    = "define[ \t]+[A-Z0-9_]+IO[A-Z]*\\([a-zA-Z],";
1069     c_fix     = char_macro_def;
1070     c_fix_arg = "IO";
1071     test_text =
1072     "#define BSD43__IOWR(n, x) (('n'<<8)+x)\n"
1073     "#define _IOWN(x,y,t)  (_IOC_IN|(((t)&_IOCPARM_MASK)<<16)|('x'<<8)|y)\n"
1074     "#define _IO(x,y)      ('x'<<8|y)";
1075 };
1076
1077 fix = {
1078     hackname  = io_quotes_use;
1079     select    = "define[ \t]+[A-Z0-9_]+[ \t]+[A-Z0-9_]+IO[A-Z]*[ \t]*"
1080                 "\\( *[^,']";
1081     c_fix     = char_macro_use;
1082     c_fix_arg = "IO";
1083     test_text = "#define TIOCFOO BSD43__IOWR(T, 1)";
1084 };
1085
1086
1087 /*
1088  *  HPUX 10.x sys/param.h defines MAXINT which clashes with values.h
1089  */
1090 fix = {
1091     hackname  = hpux_maxint;
1092     files     = sys/param.h;
1093     select    = "^#[ \t]*define[ \t]*MAXINT[ \t]";
1094
1095     c_fix     = format;
1096     c_fix_arg = "#ifndef MAXINT\n%0\n#endif";
1097     c_fix_arg = "^#[ \t]*define[ \t]*MAXINT[ \t].*";
1098
1099     test_text = '#define MAXINT 0x7FFFFFFF';
1100 };
1101
1102
1103 /*
1104  *  Fix hpux10.20 <sys/time.h> to avoid invalid forward decl
1105  */
1106 fix = {
1107     hackname = hpux_systime;
1108     files    = sys/time.h;
1109     select   = "^extern struct sigevent;";
1110
1111     c_fix     = format;
1112     c_fix_arg = "struct sigevent;";
1113
1114     test_text = 'extern struct sigevent;';
1115 };
1116
1117
1118 /*
1119  *  Check for missing ';' in struct
1120  */
1121 fix = {
1122     hackname = ip_missing_semi;
1123     files    = netinet/ip.h;
1124     select   = "}$";
1125     sed      = "/^struct/,/^};/s/}$/};/";
1126     test_text=
1127     "struct mumble {\n"
1128     "  union {\n"
1129     "    int x;\n"
1130     "  }\n"
1131     "}; /* mumbled struct */\n";
1132 };
1133
1134
1135 /*
1136  *  IRIX 5.2's <sys/asm.h> contains an asm comment with a contraction
1137  *  that causes the assembly preprocessor to complain about an
1138  *  unterminated character constant.
1139  */
1140 fix = {
1141     hackname  = irix_asm_apostrophe;
1142     files     = sys/asm.h;
1143
1144     select    = "^[ \t]*#.*[Ww]e're";
1145     c_fix     = format;
1146     c_fix_arg = "%1 are";
1147     c_fix_arg = "^([ \t]*#.*[Ww]e)'re";
1148     test_text = "\t# and we're on vacation";
1149 };
1150
1151
1152 /*
1153  *  Some IRIX header files contain the string "//"
1154  */
1155 fix = {
1156     hackname = irix_multiline_cmnt;
1157     files    = sys/types.h;
1158
1159     sed   = "s@type of the result@type of the result */@";
1160     sed   = "s@of the sizeof@/* of the sizeof@";
1161     test_text =
1162     "/* we check the type of the result\n"
1163     "// of the sizeof something.  This is a bad test :-( */";
1164 };
1165
1166
1167 /*
1168  * Fixing ISC fmod declaration
1169  */
1170 fix = {
1171     hackname  = isc_fmod;
1172     files     = math.h;
1173     select    = 'fmod\(double\)';
1174     c_fix     = format;
1175     c_fix_arg = "fmod(double, double)";
1176     test_text = "extern double  fmod(double);";
1177 };
1178
1179
1180 /*
1181  * These files in Sun OS 4.x and ARM/RISCiX and BSD4.3
1182  * use / * * / to concatenate tokens.
1183  */
1184 fix = {
1185     hackname = kandr_concat;
1186     files  = "sparc/asm_linkage.h";
1187     files  = "sun3/asm_linkage.h";
1188     files  = "sun3x/asm_linkage.h";
1189     files  = "sun4/asm_linkage.h";
1190     files  = "sun4c/asm_linkage.h";
1191     files  = "sun4m/asm_linkage.h";
1192     files  = "sun4c/debug/asm_linkage.h";
1193     files  = "sun4m/debug/asm_linkage.h";
1194     files  = "arm/as_support.h";
1195     files  = "arm/mc_type.h";
1196     files  = "arm/xcb.h";
1197     files  = "dev/chardefmac.h";
1198     files  = "dev/ps_irq.h";
1199     files  = "dev/screen.h";
1200     files  = "dev/scsi.h";
1201     files  = "sys/tty.h";
1202     files  = "Xm.acorn/XmP.h";
1203     files  = bsd43/bsd43_.h;
1204     select = '/\*\*/';
1205     c_fix     = format;
1206     c_fix_arg = '##';
1207     test_text = "#define __CONCAT__(a,b) a/**/b";
1208 };
1209
1210
1211 /*
1212  *  In limits.h, put #ifndefs around things that are supposed to be defined
1213  *  in float.h to avoid redefinition errors if float.h is included first.
1214  *  On HP/UX this patch does not work, because on HP/UX limits.h uses
1215  *  multi line comments and the inserted #endif winds up inside the
1216  *  comment.  Fortunately, HP/UX already uses #ifndefs in limits.h; if
1217  *  we find a #ifndef FLT_MIN we assume that all the required #ifndefs
1218  *  are there, and we do not add them ourselves.
1219  */
1220 fix = {
1221     hackname = limits_ifndefs;
1222     files  = "limits.h";
1223     files  = "sys/limits.h";
1224     bypass = "ifndef[ \t]+FLT_MIN";
1225
1226     c_fix     = format;
1227     c_fix_arg = "#ifndef %1\n%0\n#endif";
1228     c_fix_arg = "^[ \t]*#[ \t]*define[ \t]+"
1229                 "((FLT|DBL)_(MIN|MAX|DIG))[ \t].*";
1230     test_text = " #\tdefine\tDBL_DIG \t 0  /* somthin' */";
1231 };
1232
1233
1234 /*
1235  *  Delete the '#define void int' line from curses.h on Lynx
1236  */
1237 fix = {
1238     hackname  = lynx_void_int;
1239     files     = curses.h;
1240     select    = "#[ \t]*define[ \t]+void[ \t]+int[ \t]*";
1241     c_fix     = format;
1242     c_fix_arg = "";
1243     test_text = "# define\tvoid\tint \t/* curses foiled again */";
1244 };
1245
1246
1247 /*
1248  *  Fix fcntl prototype in fcntl.h on LynxOS.
1249  */
1250 fix = {
1251     hackname  = lynxos_fcntl_proto;
1252     files     = fcntl.h;
1253     select    = "fcntl[ \t]*" '\(int, int, int\)';
1254     c_fix     = format;
1255     c_fix_arg = '%1...)';
1256     c_fix_arg = "(fcntl[ \t]*" '\(int, int, )int\)';
1257     test_text = "extern int fcntl(int, int, int);";
1258 };
1259
1260
1261 /*
1262  *  libm.a on m88k-motorola-sysv3 contains a stupid optimization for
1263  *  function hypot(), which returns the second argument without even
1264  *  looking at its value, if the other is 0.0.
1265  */
1266 fix = {
1267     hackname  = m88k_bad_hypot_opt;
1268     mach      = "m88k-motorola-sysv3*";
1269     files     = "math.h";
1270     select    = "^extern double hypot\\(\\);\n";
1271     c_fix     = format;
1272     c_fix_arg = "%0"
1273           "/* Workaround a stupid Motorola optimization if one\n"
1274           "   of x or y is 0.0 and the other is negative!  */\n"
1275           "#ifdef __STDC__\n"
1276           "static __inline__ double fake_hypot (double x, double y)\n"
1277           "#else\n"
1278           "static __inline__ double fake_hypot (x, y)\n"
1279           "\tdouble x, y;\n"
1280           "#endif\n"
1281           "{\n"
1282           "\treturn fabs (hypot (x, y));\n"
1283           "}\n"
1284           "#define hypot\tfake_hypot\n";
1285     test_text = "extern double hypot();";
1286 };
1287
1288
1289 /*
1290  *  Fix incorrect S_IF* definitions on m88k-sysv3.
1291  */
1292 fix = {
1293     hackname = m88k_bad_s_if;
1294     mach     = "m88k-*-sysv3*";
1295     files    = sys/stat.h;
1296     select   = "#define[ \t]+S_IS[A-Z]+\\(m\\)[ \t]+\\(m[ \t]*&";
1297
1298     c_fix     = format;
1299     c_fix_arg = '#define %1(m) (((m) & S_IFMT) == %2)';
1300     c_fix_arg = "#define[ \t]+(S_IS[A-Z]+)\\(m\\)[ \t]+"
1301                   "\\(m[ \t]*&[ \t]*"
1302                     "(S_IF[A-Z][A-Z][A-Z]+|0[0-9]+)"
1303                   "[ \t]*\\)";
1304     test_text = '#define S_ISREG(m) (m & S_IFREG) /* is regular? */';
1305 };
1306
1307
1308 /*
1309  * Put cpp wrappers around these include files to avoid redeclaration
1310  * errors during multiple inclusion on m88k-tektronix-sysv3.
1311  */
1312 fix = {
1313     hackname = m88k_multi_incl;
1314     mach     = "m88k-tektronix-sysv3*";
1315     files    = "time.h";
1316     bypass   = "#ifndef";
1317     c_fix    = wrap;
1318     test_text = "";
1319 };
1320
1321
1322 /*
1323  * Fix BSD machine/ansi.h to use __builtin_va_list to define _BSD_VA_LIST_.
1324  */
1325 fix = {
1326     hackname = machine_ansi_h_va_list;
1327     files    = machine/ansi.h;
1328     select   = "define[ \t]+_BSD_VA_LIST_[ \t]";
1329     bypass   = '__builtin_va_list';
1330
1331     c_fix     = format;
1332     c_fix_arg = "%1__builtin_va_list";
1333     c_fix_arg = "(define[ \t]+_BSD_VA_LIST_[ \t]+).*";
1334
1335     test_text = " # define _BSD_VA_LIST_\tchar**";
1336 };
1337
1338
1339 /*
1340  *  Fix non-ansi machine name defines
1341  */
1342 fix = {
1343     hackname  = machine_name;
1344     c_test    = machine_name;
1345     c_fix     = machine_name;
1346     test_text = "/* MACH_DIFF: */\n"
1347     "#if defined( i386 )"
1348     " || defined( sparc )"
1349     "\n/* no uniform test, so be careful  :-) */";
1350 };
1351
1352
1353 /*
1354  *  Some math.h files define struct exception, which conflicts with
1355  *  the class exception defined in the C++ file std/stdexcept.h.  We
1356  *  redefine it to __math_exception.  This is not a great fix, but I
1357  *  haven't been able to think of anything better.
1358  *  Note that we have to put the #ifdef/#endif blocks at beginning
1359  *  and end of file, because fixproto runs after us and may insert
1360  *  additional references to struct exception.
1361  */
1362 fix = {
1363     hackname  = math_exception;
1364     files     = math.h;
1365     select    = "struct exception";
1366     bypass    = 'We have a problem when using C\+\+';
1367     c_fix     = wrap;
1368
1369     c_fix_arg = "#ifdef __cplusplus\n"
1370                 "#define exception __math_exception\n"
1371                 "#endif\n";
1372
1373     c_fix_arg = "#ifdef __cplusplus\n"
1374                 "#undef exception\n"
1375                 "#endif\n";
1376
1377     test_text = "typedef struct exception t_math_exception;";
1378 };
1379
1380
1381 /*
1382  *  This looks pretty broken to me.  ``dbl_max_def'' will contain
1383  *  "define DBL_MAX " at the start, when what we really want is just
1384  *  the value portion.  Can't figure out how to write a test case
1385  *  for this either  :-(
1386  */
1387 fix = {
1388     hackname = math_huge_val_from_dbl_max;
1389     files    = math.h;
1390     /*
1391      * IF HUGE_VAL is defined to be DBL_MAX *and* DBL_MAX is _not_ defined
1392      * in math.h, this fix applies.
1393      */
1394     select   = "define[ \t]*HUGE_VAL[ \t]*DBL_MAX";
1395     bypass   = "define[ \t]*DBL_MAX";
1396
1397     shell    =
1398     /*
1399      *  See if we have a definition for DBL_MAX in float.h.
1400      *  If we do, we will replace the one in math.h with that one.
1401      */
1402
1403     "\tdbl_max_def=`egrep 'define[ \t]+DBL_MAX[ \t]+.*' float.h "
1404                 "2>/dev/null`\n\n"
1405
1406     "\tif ( test -n \"${dbl_max_def}\" ) > /dev/null 2>&1\n"
1407     "\tthen sed -e '/define[ \t]*HUGE_VAL[ \t]*DBL_MAX/"
1408                         "s/DBL_MAX/'\"$dbl_max_def/\"\n"
1409     "\telse cat\n"
1410     "\tfi";
1411 };
1412
1413
1414 /*
1415  * In any case, put #ifndef .. #endif around #define HUGE_VAL in math.h.
1416  */
1417 fix = {
1418     hackname = math_huge_val_ifndef;
1419     files    = math.h;
1420     files    = math/math.h;
1421     select   = "define[ \t]+HUGE_VAL";
1422
1423     c_fix     = format;
1424     c_fix_arg = "#ifndef HUGE_VAL\n%0\n#endif";
1425     c_fix_arg = "^[ \t]*#[ \t]*define[ \t]+HUGE_VAL[ \t].*";
1426
1427     test_text = "# define\tHUGE_VAL 3.4e+40";
1428 };
1429
1430
1431 /*
1432  * Fix nested comments in Motorola's <limits.h> and <sys/limits.h>
1433  */
1434 fix = {
1435     hackname = nested_motorola;
1436     mach     = "m68k-motorola-sysv*";
1437     files    = limits.h;
1438     files    = sys/limits.h;
1439     sed = "s@^\\(#undef[ \t][ \t]*PIPE_BUF[ \t]*"
1440                    "/\\* max # bytes atomic in write to a\\)$@\\1 */@";
1441     sed = "s@\\(/\\*#define\tHUGE_VAL\t3.[0-9e+]* \\)"
1442           "\\(/\\*error value returned by Math lib\\*/\\)$@\\1*/ \\2@";
1443 };
1444
1445
1446 /*
1447  * Fixing nested comments in ISC <sys/limits.h>
1448  */
1449 fix = {
1450     hackname = nested_sys_limits;
1451     files  = sys/limits.h;
1452     select = CHILD_MAX;
1453     sed    = "/CHILD_MAX/s,/\\* Max, Max,";
1454     sed    = "/OPEN_MAX/s,/\\* Max, Max,";
1455     test_text = "/*\n#define CHILD_MAX 20 /* Max, Max, ... */ /*\n"
1456                 "#define OPEN_MAX  20 /* Max, Max, ... */\n";
1457 };
1458
1459 /*
1460  *  nested comment
1461  */
1462 fix = {
1463     hackname  = nested_auth_des;
1464     files     = rpc/rpc.h;
1465     select    = '(/\*.*rpc/auth_des\.h>.*)/\*';
1466     c_fix     = format;
1467     c_fix_arg = "%1*/ /*";
1468     test_text = "/*#include <rpc/auth_des.h> /* skip this */";
1469 };
1470
1471
1472 /*
1473  *  Avoid nested comments on Ultrix 4.3.
1474  */
1475 fix = {
1476     hackname = nested_ultrix;
1477     files    = rpc/svc.h;
1478     sed      = "s@^\\( \\*\tint protocol;  \\)/\\*@\\1*/ /*@";
1479 };
1480
1481
1482 /*
1483  *  fix bogus recursive stdlib.h in NEWS-OS 4.0C
1484  */
1485 fix = {
1486     hackname = news_os_recursion;
1487     files    = stdlib.h;
1488     select   = '#include <stdlib\.h>';
1489
1490     c_fix     = format;
1491     c_fix_arg = "#ifdef BOGUS_RECURSION\n%0\n#endif";
1492     test_text = "#include <stdlib.h>";
1493 };
1494
1495
1496 /*
1497  *  NeXT 3.2 adds const prefix to some math functions.
1498  *  These conflict with the built-in functions.
1499  */
1500 fix = {
1501     hackname  = next_math_prefix;
1502     files     = ansi/math.h;
1503     select    = "^extern[ \t]+double[ \t]+__const__[ \t]";
1504
1505     c_fix     = format;
1506     c_fix_arg = "extern double %1(";
1507     c_fix_arg = "^extern[ \t]+double[ \t]+__const__[ \t]+([a-z]+)\\(";
1508
1509     test_text = "extern\tdouble\t__const__\tmumble();";
1510 };
1511
1512
1513 /*
1514  *  NeXT 3.2 uses the word "template" as a parameter for some
1515  *  functions. GCC reports an invalid use of a reserved key word
1516  *  with the built-in functions.
1517  */
1518 fix = {
1519     hackname = next_template;
1520     files    = bsd/libc.h;
1521     select   = "[ \t]template\\)";
1522
1523     c_fix     = format;
1524     c_fix_arg = "(%1)";
1525     c_fix_arg = "\\(([^)]*)[ \t]template\\)";
1526     test_text = "extern mumble( char * template); /* fix */";
1527 };
1528
1529
1530 /*
1531  *  NeXT 3.2 includes the keyword volatile in the abort() and  exit()
1532  *  function prototypes. That conflicts with the  built-in functions.
1533  */
1534 fix = {
1535     hackname = next_volitile;
1536     files    = ansi/stdlib.h;
1537     select   = "^extern[ \t]+volatile[ \t]+void[ \t]";
1538
1539     c_fix     = format;
1540     c_fix_arg = "extern void %1(";
1541     c_fix_arg = "^extern[ \t]+volatile[ \t]+void[ \t]+(exit|abort)\\(";
1542
1543     test_text = "extern\tvolatile\tvoid\tabort();";
1544 };
1545
1546
1547 /*
1548  *  NeXT 2.0 defines 'int wait(union wait*)', which conflicts with Posix.1.
1549  *  Note that version 3 of the NeXT system has wait.h in a different directory,
1550  *  so that this code won't do anything.  But wait.h in version 3 has a
1551  *  conditional, so it doesn't need this fix.  So everything is okay.
1552  */
1553 fix = {
1554     hackname = next_wait_union;
1555     files    = sys/wait.h;
1556
1557     select = 'wait\(union wait';
1558
1559     sed = "s@wait(union wait@wait(void@";
1560 };
1561
1562
1563 /*
1564  *  a missing semi-colon at the end of the nodeent structure definition.
1565  */
1566 fix = {
1567     hackname = nodeent_syntax;
1568     files    = netdnet/dnetdb.h;
1569     sed      = "s/char.*na_addr *$/char *na_addr;/";
1570 };
1571
1572
1573 /*
1574  *  sys/lc_core.h on some versions of OSF1/4.x pollutes the namespace by
1575  *  defining regex.h related types.  This causes libg++ build and usage
1576  *  failures.  Fixing this correctly requires checking and modifying 3 files.
1577  */
1578 fix = {
1579     hackname = osf_namespace_a;
1580     files    = reg_types.h;
1581     files    = sys/lc_core.h;
1582     test     = " -r reg_types.h";
1583     test     = " -r sys/lc_core.h";
1584     test     = " -n \"`grep '} regex_t;' reg_types.h`\"";
1585     test     = " -z \"`grep __regex_t regex.h`\"";
1586
1587     sed      = "s/regex_t/__regex_t/g";
1588     sed      = "s/regoff_t/__regoff_t/g";
1589     sed      = "s/regmatch_t/__regmatch_t/g";
1590 };
1591
1592 fix = {
1593     hackname = osf_namespace_b;
1594     files    = regex.h;
1595     test     = " -r reg_types.h";
1596     test     = " -r sys/lc_core.h";
1597     test     = " -n \"`grep '} regex_t;' reg_types.h`\"";
1598     test     = " -z \"`grep __regex_t regex.h`\"";
1599
1600     sed      = "/#include <reg_types.h>/a\\\n"
1601                "typedef __regex_t\tregex_t;\\\n"
1602                "typedef __regoff_t\tregoff_t;\\\n"
1603                "typedef __regmatch_t\tregmatch_t;\n";
1604 };
1605
1606
1607 /*
1608  *  Fix __page_size* declarations in pthread.h AIX 4.1.[34].
1609  *  The original ones fail if uninitialized externs are not common.
1610  *  This is the default for all ANSI standard C++ compilers.
1611  */
1612 fix = {
1613     hackname = pthread_page_size;
1614     files    = pthread.h;
1615     select   = "^int __page_size";
1616     sed      = "s/^int __page_size/extern int __page_size/";
1617 };
1618
1619
1620 /*
1621  *  Fix return type of fread and fwrite on sysV68
1622  */
1623 fix = {
1624     hackname = read_ret_type;
1625     files    = stdio.h;
1626     select   = "extern int\t.*, fread\\(\\), fwrite\\(\\)";
1627     sed      = "s/^\\(extern int\tfclose(), fflush()\\), "
1628                  "\\(fread(), fwrite()\\)\\(.*\\)$"
1629                "/extern unsigned int\t\\2;\\\n\\1\\3/";
1630 };
1631
1632
1633 /*
1634  *  function class(double x) conflicts with C++ keyword on rs/6000 
1635  */
1636 fix = {
1637     hackname = rs6000_double;
1638     files    = math.h;
1639     select   = '[^a-zA-Z_]class\(';
1640     
1641     sed   = "/class[(]/i\\\n#ifndef __cplusplus\n";
1642     sed   = "/class[(]/a\\\n#endif\n";
1643 };
1644
1645
1646 /*
1647  *  Wrong fchmod prototype on RS/6000.
1648  */
1649 fix = {
1650     hackname = rs6000_fchmod;
1651     files    = sys/stat.h;
1652     select   = 'fchmod\(char';
1653     sed      = 's/fchmod(char \*/fchmod(int/';
1654 };
1655
1656
1657 /*
1658  *  parameters conflict with C++ new on rs/6000 
1659  */
1660 fix = {
1661     hackname = rs6000_param;
1662     files  = "stdio.h";
1663     files  = "unistd.h";
1664     select = 'const char new';
1665
1666     sed = 's@rename(const char \*old, const char \*new)@'
1667             'rename(const char *_old, const char *_new)@';
1668 };
1669
1670
1671 /*
1672  *  The static functions lstat() and fchmod() in <sys/stat.h> 
1673  *  cause G++ grief since they're not wrapped in "if __cplusplus".
1674  *
1675  *  On SCO OpenServer 5.0.0 through (at least) 5.0.5 <sys/stat.h> contains
1676  *  tiny static wrappers that aren't C++ safe.
1677  */
1678 fix = {
1679     hackname = sco_static_func;
1680     files    = sys/stat.h;
1681     mach     = "i?86-*-sco3.2*";
1682     select   = "^static int";
1683
1684     sed      = "/^static int/i\\\n"
1685                "#if __cplusplus\\\n"
1686                "extern \"C\" {\\\n"
1687                "#endif /* __cplusplus */";
1688
1689     sed      = "/^}$/a\\\n"
1690                "#if __cplusplus\\\n"
1691                " }\\\n"
1692                "#endif /* __cplusplus */";
1693 };
1694
1695
1696 /*
1697  *  "!__STDC__" is "!defined( __STRICT_ANSI__ )"
1698  */
1699 fix = {
1700     hackname = sco_strict_ansi;
1701     mach     = "i?86-*-sco3.2*";
1702     select   = "^[ \t]*#[ \t]*if.*!__STDC__";
1703     sed      = 's/!__STDC__/!defined(__STRICT_ANSI__)/g';
1704 };
1705
1706
1707 /*
1708  *  Fix prototype declaration of utime in sys/times.h.
1709  *  In 3.2v4.0 the const is missing.
1710  */
1711 fix = {
1712     hackname = sco_utime;
1713     files    = sys/times.h;
1714     mach     = "i?86-*-sco3.2v4*";
1715     select   = "\(const char \*, struct utimbuf \*\);";
1716     sed      = 's/(const char \*, struct utimbuf \*);/'
1717                  '(const char *, const struct utimbuf *);/';
1718 };
1719
1720
1721 /*
1722  *  Sony NEWSOS 5.0 does not support the complete ANSI C standard.
1723  */
1724 #ifdef SONY
1725 fix = {
1726     hackname = sony_ctype;
1727     files    = ctype.h;
1728     test     = " -x /bin/sony";
1729     test     = " ! -z \"`if /bin/sony ; then echo true ; fi`\"";
1730     sed      = "s/__ctype/_ctype/g";
1731 };
1732 #endif
1733
1734 /*
1735  *  Incorrect #include in Sony News-OS 3.2.
1736  */
1737 fix = {
1738     hackname = sony_include;
1739     files    = machine/machparam.h;
1740     select   = '"\.\./machine/endian.h"';
1741     sed      = 's@"../machine/endian.h"@<machine/endian.h>@';
1742 };
1743
1744
1745 /*
1746  *  Sony NEWSOS 5.0 does not support the complete ANSI C standard.
1747  */
1748 #ifdef SONY
1749 fix = {
1750     hackname = sony_stdio;
1751     files    = stdio.h;
1752     test     = " -x /bin/sony";
1753     test     = " ! -z \"`if /bin/sony ; then echo true ; fi`\"";
1754     sed      = "s/__filbuf/_filbuf/g\n"
1755                "s/__flsbuf/_flsbuf/g\n"
1756                "s/__iob/_iob/g";
1757 };
1758 #endif
1759
1760 /*
1761  *  Add a `static' declaration of `getrnge' into <regexp.h>.
1762  *
1763  *  Don't do this if there is already a `static void getrnge' declaration
1764  *  present, since this would cause a redeclaration error.  Solaris 2.x has
1765  *  such a declaration.
1766  */
1767 #ifdef SVR4
1768 fix = {
1769     hackname = static_getrnge;
1770     files    = regexp.h;
1771     bypass   = "static void getrnge";
1772     sed      = "/^static int[ \t]*size;/c\\\n"
1773                "static int      size ;\\\n\\\n"
1774                "static int getrnge ();";
1775 };
1776 #endif
1777
1778
1779 /*
1780  *  a missing semi-colon at the end of the statsswtch structure definition.
1781  */
1782 fix = {
1783     hackname = statsswtch;
1784     files    = rpcsvc/rstat.h;
1785     select   = "boottime$";
1786     sed      = "s/boottime$/boottime;/";
1787 };
1788
1789
1790 /*
1791  *  Arrange for stdio.h to use stdarg.h to define __gnuc_va_list.
1792  *  On 4BSD-derived systems, stdio.h defers to machine/ansi.h; that's
1793  *  OK too.
1794  */
1795 fix = {
1796     hackname = stdio_stdarg_h;
1797     files    = stdio.h;
1798     bypass   = "include.*(stdarg\.h|machine/ansi\.h)";
1799
1800     c_fix     = wrap;
1801
1802     c_fix_arg = "#define __need___va_list\n#include <stdarg.h>\n";
1803
1804     test_text = "";
1805 };
1806
1807
1808 /*
1809  *  Don't use or define the name va_list in stdio.h.
1810  *  This is for ANSI and also to interoperate properly with gcc's varargs.h.
1811  *  Note _BSD_VA_LIST_ is dealt with elsewhere.
1812  */
1813 fix = {
1814     hackname = stdio_va_list;
1815     files    = stdio.h;
1816     bypass   = '__gnuc_va_list|_BSD_VA_LIST_';
1817
1818     /*
1819      * Use __gnuc_va_list in arg types in place of va_list.
1820      * On 386BSD use __gnuc_va_list instead of _VA_LIST_.  We're hoping the
1821      * trailing parentheses and semicolon save all other systems from this.
1822      * Define __not_va_list__ (something harmless and unused)
1823      * instead of va_list.
1824      * Don't claim to have defined va_list.
1825      */
1826     sed = "s@ va_list @ __gnuc_va_list @\n"
1827           "s@ va_list)@ __gnuc_va_list)@\n"
1828           "s@ _VA_LIST_));@ __gnuc_va_list));@\n"
1829           "s@ va_list@ __not_va_list__@\n"
1830           "s@\\*va_list@*__not_va_list__@\n"
1831           "s@ __va_list)@ __gnuc_va_list)@\n"
1832           "s@typedef[ \t]\\(.*\\)[ \t]va_list[ \t]*;"
1833            "@typedef \\1 __not_va_list__;@\n"
1834           "s@GNUC_VA_LIST@GNUC_Va_LIST@\n"
1835           "s@_NEED___VA_LIST@_NEED___Va_LIST@\n"
1836           "s@VA_LIST@DUMMY_VA_LIST@\n"
1837           "s@_Va_LIST@_VA_LIST@";
1838 };
1839
1840
1841 /*
1842  *  Check for strict ansi compliance
1843  */
1844 #ifdef STRICT_ANSI
1845 fix = {
1846     hackname = strict_ansi;
1847     select   = "__STDC__[ \t]*[=!]=[ \t]*[01]";
1848     sed      = "s/__STDC__[ \t]*==[ \t]*0/!defined (__STRICT_ANSI__)/g";
1849     sed      = "s/__STDC__[ \t]*!=[ \t]*0/defined (__STRICT_ANSI__)/g";
1850     sed      = "s/__STDC__[ \t]*==[ \t]*1/defined (__STRICT_ANSI__)/g";
1851     sed      = "s/__STDC__[ \t]*!=[ \t]*1/!defined (__STRICT_ANSI__)/g";
1852 };
1853 #endif
1854
1855
1856 /*
1857  *  IRIX 4.0.5 <rpc/xdr.h> uses struct __file_s
1858  *  in prototype without previous definition.
1859  */
1860 fix = {
1861     hackname  = struct_file;
1862     files     = rpc/xdr.h;
1863     select    = '^.*xdrstdio_create.*struct __file_s';
1864     c_fix     = format;
1865     c_fix_arg = "struct __file_s;\n%0";
1866     test_text = "extern void xdrstdio_create( struct __file_s* );";
1867 };
1868
1869
1870 /*
1871  *  IRIX 4.0.5 <rpc/auth.h> uses struct sockaddr
1872  *  in prototype without previous definition.
1873  */
1874 fix = {
1875     hackname  = struct_sockaddr;
1876     files     = rpc/auth.h;
1877     select    = "^.*authdes_create.*struct sockaddr";
1878     bypass    = "<sys/socket\.h>";
1879     c_fix     = format;
1880     c_fix_arg = "struct sockaddr;\n%0";
1881     test_text = "extern AUTH* authdes_create( struct sockaddr* );";
1882 };
1883
1884
1885 /*
1886  *  Apply fix this to all OSs since this problem seems to effect
1887  *  more than just SunOS.
1888  */
1889 fix = {
1890     hackname = sun_auth_proto;
1891     files    = rpc/auth.h;
1892     files    = rpc/clnt.h;
1893     files    = rpc/svc.h;
1894     files    = rpc/xdr.h;
1895     /*
1896      *  Select those files containing '(*name)()'.
1897      */
1898     select   = '\(\*[a-z][a-z_]*\)\(\)';
1899     sed      = 's'
1900                 '/^\(.*(\*[a-z][a-z_]*)(\)'      '\();.*\)'
1901                 "/\\\n"
1902                     "#ifdef __cplusplus\\\n"
1903                     '\1...\2' "\\\n"
1904                     "#else\\\n"
1905                     '\1\2' "\\\n"
1906                     "#endif"
1907                 "/";
1908 };
1909
1910
1911 /*
1912  *  Fix bogus #ifdef on SunOS 4.1.
1913  */
1914 fix = {
1915     hackname = sun_bogus_ifdef;
1916     files  = "hsfs/hsfs_spec.h";
1917     files  = "hsfs/iso_spec.h";
1918     select = '#ifdef __i386__ || __vax__';
1919     sed    = "s/\\#ifdef __i386__ || __vax__/\\#if __i386__ || __vax__/g";
1920 };
1921
1922
1923 /*
1924  *  Fix bogus #ifdef on SunOS 4.1.
1925  */
1926 fix = {
1927     hackname = sun_bogus_ifdef_sun4c;
1928     files  = "hsfs/hsnode.h";
1929     select = '#ifdef __i386__ || __sun4c__';
1930     sed    = "s/\\#ifdef __i386__ || __sun4c__/\\#if __i386__ || __sun4c__/g";
1931 };
1932
1933
1934 /*
1935  *  Fix the CAT macro in SunOS memvar.h.
1936  */
1937 fix = {
1938     hackname = sun_catmacro;
1939     files  = pixrect/memvar.h;
1940     select = "^#define[ \t]+CAT\\(a,b\\)";
1941     sed    = "/^#define[ \t]CAT(a,b)/ i\\\n"
1942                  "#ifdef __STDC__ \\\n"
1943                  "#define CAT(a,b) a##b\\\n"
1944                  "#else\n";
1945
1946     sed    = "/^#define[ \t]CAT(a,b)/ a\\\n"
1947                  "#endif\n";
1948 };
1949
1950
1951 /*
1952  *  Fix return type of free and {c,m,re}alloc in <malloc.h> on SunOS 4.1.
1953  *  Also fix return type of {m,re}alloc in <malloc.h> on sysV68
1954  */
1955 fix = {
1956     hackname = sun_malloc;
1957     files    = malloc.h;
1958
1959     sed   = "s/typedef[ \t]char \\*\tmalloc_t/typedef void \\*\tmalloc_t/g";
1960     sed   = "s/int[ \t][ \t]*free/void\tfree/g";
1961     sed   = "s/char\\([ \t]*\\*[ \t]*malloc\\)/void\\1/g";
1962     sed   = "s/char\\([ \t]*\\*[ \t]*realloc\\)/void\\1/g";
1963 };
1964
1965
1966 /*
1967  *  Check for yet more missing ';' in struct (in SunOS 4.0.x)
1968  */
1969 fix = {
1970     hackname = sun_rusers_semi;
1971     files    = rpcsvc/rusers.h;
1972     select   = "_cnt$";
1973     sed      = "/^struct/,/^};/s/_cnt$/_cnt;/";
1974 };
1975
1976
1977 /*
1978  *  signal.h on SunOS defines signal using (),
1979  *  which causes trouble when compiling with g++ -pedantic.
1980  */
1981 fix = {
1982     hackname = sun_signal;
1983     files    = sys/signal.h;
1984     files    = signal.h;
1985     select   = "^void\t" '\(\*signal\(\)\)\(\);';
1986
1987     sed = "/^void\t" '(\*signal())();$/i'  "\\\n"
1988           "#ifdef __cplusplus"             "\\\n"
1989           "void\t(*signal(...))(...);"     "\\\n"
1990           "#else"                          "\n";
1991
1992     sed = "/^void\t" '(\*signal())();$/a'  "\\\n"
1993           '#endif'                         "\n";
1994 };
1995
1996
1997 /*
1998  *  math.h on SunOS 4 puts the declaration of matherr before the definition
1999  *  of struct exception, so the prototype (added by fixproto) causes havoc.
2000  */
2001 fix = {
2002     hackname = sunos_matherr_decl;
2003     files    = math.h;
2004     /*  If matherr has a prototype already, the header needs no fix.  */
2005     bypass   = 'matherr.*struct exception';
2006     /*
2007      *  Once a declaration for 'struct exception' is found,
2008      *  stop trying to insert a forward reference for it.
2009      */
2010     sed = "/^struct exception/,$b";
2011     sed = "/matherr/i\\\nstruct exception;\n";
2012 };
2013
2014
2015 /*
2016  *  Correct the return type for strlen in strings.h in SunOS 4.
2017  */
2018 fix = {
2019     hackname = sunos_strlen;
2020     files    = strings.h;
2021     select   = "int[ \t]*strlen";
2022     sed = "s/int[ \t]*strlen();/__SIZE_TYPE__ strlen();/";
2023 };
2024
2025
2026 /*
2027  *  Solaris math.h and floatingpoint.h define __P without protection,
2028  *  which conflicts with the fixproto definition.  The fixproto
2029  *  definition and the Solaris definition are used the same way.
2030  */
2031 #ifdef SVR4
2032 fix = {
2033     hackname = svr4__p;
2034     files    = math.h;
2035     files    = floatingpoint.h;
2036     select   = "^#define[ \t]*__P";
2037     sed      = "/^#define[ \t]*__P/i\\\n#ifndef __P\n";
2038     sed      = "/^#define[ \t]*__P/a\\\n#endif\n";
2039 };
2040 #endif
2041
2042 /*
2043  *  Disable apparent native compiler optimization cruft in SVR4.2 <string.h>
2044  *  that is visible to any ANSI compiler using this include.  Simply
2045  *  delete the lines that #define some string functions to internal forms.
2046  */
2047 #ifdef SVR4
2048 fix = {
2049     hackname = svr4_disable_opt;
2050     files    = string.h;
2051     select   = '#define.*__std_hdr_';
2052     sed      = '/#define.*__std_hdr_/d';
2053 };
2054 #endif
2055
2056
2057 /*
2058  *  Conditionalize some of <sys/endian.h> on __GNUC__ and __GNUG__.
2059  *  On some systems (UnixWare 2, UnixWare 7), the file is byteorder.h
2060  *  but we still "hijack" it and redirect it to the GNU byteorder.h..
2061  *
2062  *
2063  */
2064 #ifdef SVR5
2065 fix = {
2066     hackname = svr4_endian;
2067     files    = sys/endian.h;
2068 #ifdef LATER
2069     /*
2070      * since we emit our own sys/byteorder.h,
2071      * this fix can never be applied to that file.
2072      */
2073     files    = sys/byteorder.h;
2074 #endif
2075     bypass   = '__GNUC__';
2076
2077     sed      = "/#\tifdef\t__STDC__/i\\\n"
2078                "#   if !defined (__GNUC__) && !defined (__GNUG__)\n";
2079
2080     sed      = "/#\t\tinclude\t<sys\\/byteorder.h>/s/\t\t/   /";
2081
2082     sed      = "/#   include\t<sys\\/byteorder.h>/i\\\n"
2083                "#   endif /* !defined (__GNUC__) && !defined (__GNUG__) */\n";
2084 };
2085 #endif /* SVR5 */
2086
2087
2088 /*
2089  *  Remove useless extern keyword from struct forward declarations
2090  *  in <sys/stream.h> and <sys/strsubr.h>
2091  */
2092 #ifdef SVR4
2093 fix = {
2094     hackname = svr4_extern_struct;
2095     files    = sys/stream.h;
2096     files    = sys/strsubr.h;
2097     select   = 'extern struct [a-z_]*;';
2098     sed      = 's/extern struct \([a-z][a-z_]*\)/struct \1/';
2099 };
2100 #endif
2101
2102 /*
2103  *  Fix declarations of `ftw' and `nftw' in <ftw.h>.  On some/most SVR4
2104  *  systems the file <ftw.h> contains extern declarations of these
2105  *  functions followed by explicitly `static' definitions of these
2106  *  functions... and that's not allowed according to ANSI C.  (Note
2107  *  however that on Solaris, this header file glitch has been pre-fixed by
2108  *  Sun.  In the Solaris version of <ftw.h> there are no static
2109  *  definitions of any function so we don't need to do any of this stuff
2110  *  when on Solaris.
2111  */
2112 #ifdef SVR4
2113 #ifndef SOLARIS
2114 fix = {
2115     hackname = svr4_ftw;
2116     files    = ftw.h;
2117     select   = '^extern int ftw\(const';
2118
2119     sed = '/^extern int ftw(const/i' "\\\n"
2120             "#if !defined(_STYPES)\\\n"
2121             "static\\\n"
2122             "#else\\\n"
2123             "extern\\\n"
2124             "#endif";
2125     sed = 's/extern \(int ftw(const.*\)$/\1/';
2126     sed = "/^extern int nftw/i\\\n"
2127             "#if defined(_STYPES)\\\n"
2128             "static\\\n"
2129             "#else\\\n"
2130             "extern\\\n"
2131             "#endif";
2132     sed = 's/extern \(int nftw.*\)$/\1/';
2133     sed = "/^extern int ftw(),/c\\\n"
2134             "#if !defined(_STYPES)\\\n"
2135             "static\\\n"
2136             "#else\\\n"
2137             "extern\\\n"
2138             "#endif\\\n"
2139             "  int ftw();\\\n"
2140             "#if defined(_STYPES)\\\n"
2141             "static\\\n"
2142             "#else\\\n"
2143             "extern\\\n"
2144             "#endif\\\n"
2145             "  int nftw();";
2146 };
2147 #endif
2148 #endif
2149
2150
2151 /*
2152  *   Fix broken decl of getcwd present on some svr4 systems.
2153  */
2154 fix = {
2155     hackname = svr4_getcwd;
2156     files    = stdlib.h;
2157     files    = unistd.h;
2158     files    = prototypes.h;
2159     select   = 'getcwd\(char \*, int\)';
2160
2161     sed = 's/getcwd(char \*, int)/getcwd(char *, size_t)/';
2162 };
2163
2164
2165 /*
2166  *  set ifdef _KERNEL
2167  */
2168 #ifdef SVR4
2169 fix = {
2170     hackname = svr4_kernel;
2171     files    = fs/rfs/rf_cache.h;
2172     files    = sys/erec.h;
2173     files    = sys/err.h;
2174     files    = sys/char.h;
2175     files    = sys/getpages.h;
2176     files    = sys/map.h;
2177     files    = sys/cmn_err.h;
2178     files    = sys/kdebugger.h;
2179     bypass   = '_KERNEL';
2180     c_fix     = wrap;
2181
2182     c_fix_arg = "#ifdef _KERNEL\n";
2183     c_fix_arg = "#endif /* _KERNEL */\n";
2184     test_text = "";
2185 };
2186 #endif
2187
2188 /*
2189  *  Delete any #defines of `__i386' which may be present in <ieeefp.h>.  They
2190  *  tend to conflict with the compiler's own definition of this symbol.  (We
2191  *  will use the compiler's definition.)
2192  *  Likewise __sparc, for Solaris, and __i860, and a few others
2193  *  (guessing it is necessary for all of them).
2194  */
2195 #ifdef SVR4
2196 fix = {
2197     hackname = svr4_mach_defines;
2198     files    = ieeefp.h;
2199     select   = "#define[ \t]*__(i386|i860|mips|sparc|m88k|m68k)[ \t]";
2200     sed      = "/#define[ \t]*__\\(i386|i860|mips|sparc|m88k|m68k\\)[ \t]/d";
2201 };
2202 #endif
2203
2204
2205 /*
2206  *  Fix declarations of `makedev', `major', and `minor' in <sys/mkdev.h>.
2207  *  They are declared as non-static then immediately redeclared as static.
2208  */
2209 #ifdef SVR5
2210 fix = {
2211     hackname = svr4_mkdev;
2212     files    = sys/mkdev.h;
2213     select   = '^static';
2214
2215     sed      = "/^dev_t makedev(/s/^/static /";
2216     sed      = "/^major_t major(/s/^/static /";
2217     sed      = "/^minor_t minor(/s/^/static /";
2218 };
2219 #endif /* SVR5 */
2220
2221
2222 /*
2223  *  Fix reference to NC_NPI_RAW in <sys/netcspace.h>.
2224  *  Also fix types of array initializers.
2225  */
2226 #ifdef SVR4
2227 fix = {
2228     hackname = svr4_netcspace;
2229     files    = sys/netcspace.h;
2230     select   = 'NC_NPI_RAW';
2231     sed      = 's/NC_NPI_RAW/NC_TPI_RAW/g';
2232     sed      = 's/NC_/(unsigned long) NC_/';
2233 };
2234 #endif
2235
2236 /*
2237  *  Fix reference to NMSZ in <sys/adv.h>.
2238  */
2239 #ifdef SVR4
2240 fix = {
2241     hackname = svr4_nmsz;
2242     files    = sys/adv.h;
2243     select   = '\[NMSZ\]';
2244     sed      = 's/\[NMSZ\]/\[RFS_NMSZ\]/g';
2245 };
2246 #endif
2247
2248
2249 /*
2250  *   Fix broken decl of profil present on some svr4 systems.
2251  */
2252 fix = {
2253     hackname = svr4_profil;
2254     files    = stdlib.h;
2255     files    = unistd.h;
2256
2257     sed = 's/profil(unsigned short \*, unsigned int, '
2258                          'unsigned int, unsigned int)'
2259            '/profil(unsigned short *, size_t, int, unsigned)/';
2260 };
2261
2262
2263 /*
2264  *  Convert functions to prototype form, and fix arg names in <sys/stat.h>.
2265  */
2266 #ifdef SVR4
2267 fix = {
2268     hackname = svr4_proto_form;
2269     files    = sys/stat.h;
2270     select   = 'const extern';
2271
2272     sed      = "/^stat([ \t]*[^c]/ {\nN\nN\n"
2273                    "s/(.*)\\n/( /\n"
2274                    "s/;\\n/, /\n"
2275                    "s/;$/)/\n"  "}";
2276
2277     sed      = "/^lstat([ \t]*[^c]/ {\nN\nN\n"
2278                    "s/(.*)\\n/( /\n"
2279                    "s/;\\n/, /\n"
2280                    "s/;$/)/\n"  "}";
2281
2282     sed      = "/^fstat([ \t]*[^i]/ {\nN\nN\n"
2283                    "s/(.*)\\n/( /\n"
2284                    "s/;\\n/, /\n"
2285                    "s/;$/)/\n"  "}";
2286
2287     sed      = "/^mknod([ \t]*[^c]/{\nN\nN\nN\n"
2288                    "s/(.*)\\n/( /\n"
2289                    "s/;\\n/, /g\n"
2290                    "s/;$/)/\n"  "}";
2291
2292     sed      = "1,$s/\\([^A-Za-z]\\)path\\([^A-Za-z]\\)/\\1__path\\2/g";
2293     sed      = "1,$s/\\([^A-Za-z]\\)buf\\([^A-Za-z]\\)/\\1__buf\\2/g";
2294     sed      = "1,$s/\\([^A-Za-z]\\)fd\\([^A-Za-z]\\)/\\1__fd\\2/g";
2295     sed      = "1,$s/ret\\([^u]\\)/__ret\\1/g";
2296     sed      = "1,$s/\\([^_]\\)mode\\([^_]\\)/\\1__mode\\2/g";
2297     sed      = "1,$s/\\([^_r]\\)dev\\([^_]\\)/\\1__dev\\2/g";
2298 };
2299 #endif
2300
2301 /*
2302  *  Add a prototyped declaration of mmap to <sys/mman.h>.
2303  */
2304 #ifdef SVR4
2305 fix = {
2306     hackname = svr4_proto_mmap;
2307     files    = sys/mman.h;
2308     select   = '^extern caddr_t mmap();$';
2309     sed = '/^extern caddr_t mmap();$/c' "\\\n"
2310           "#ifdef __STDC__\\\n"
2311           "extern caddr_t mmap (caddr_t, size_t, int, int, int, off_t);\\\n"
2312           "#else /* !defined(__STDC__) */\\\n"
2313           "extern caddr_t mmap ();\\\n"
2314           "#endif /* !defined(__STDC__) */\\\n";
2315 };
2316 #endif
2317
2318 /*
2319  *  Add a #define of _SIGACTION_ into <sys/signal.h>.
2320  */
2321 #ifdef SVR4
2322 fix = {
2323     hackname = svr4_sigaction;
2324     files    = sys/signal.h;
2325     sed      = "/^struct sigaction {/i\\\n"
2326                "#define _SIGACTION_";
2327     sed      = 's/(void *(\*)())/(void (*)(int))/';
2328 };
2329 #endif
2330
2331 /*
2332  *  Put storage class at start of decl, to avoid warning.
2333  */
2334 #ifdef SVR4
2335 fix = {
2336     hackname = svr4_storage_class;
2337     files    = rpc/types.h;
2338     select   = 'const extern';
2339     sed      = 's/const extern/extern const/g';
2340 };
2341 #endif
2342
2343
2344 /* 
2345  *  Like svr4_mach_defines, but with newfangled syntax.
2346  *  Source lines are of #define __i386 #machine(i386).   Delete them.
2347  */
2348 #ifdef SVR5
2349 fix = {
2350     hackname = svr5_mach_defines;
2351     files    = ieeefp.h;
2352     select   = "#define[ \t]*__i386.*\(i386\)";
2353     sed      = "/#define[ \t]*__i386.*/d";
2354 };
2355 #endif /*  SVR5 */
2356
2357
2358 /*
2359  * Fix these files to use the same types that we think they should.
2360  * XXX - extremely dubious changes here.
2361  */
2362 fix = {
2363     hackname = systypes;
2364     files  = "sys/types.h";
2365     files  = "stdlib.h";
2366     files  = "sys/stdtypes.h";
2367     files  = "stddef.h";
2368     files  = "memory.h";
2369     files  = "unistd.h";
2370     select = "typedef[ \t]+[a-z_][ \ta-z_]*[ \t]"
2371              "(size|ptrdiff|wchar)_t";
2372
2373       sed  = "/^[ \t]*\\*[ \t]*typedef unsigned int size_t;/N";
2374
2375       sed  = "s/^\\([ \t]*\\*[ \t]*typedef unsigned int size_t;\\n"
2376                "[ \t]*\\*\\/\\)/\\1\\\n"
2377              "#ifndef __SIZE_TYPE__\\\n"
2378              "#define __SIZE_TYPE__ long unsigned int\\\n"
2379              "#endif\\\n"
2380              "typedef __SIZE_TYPE__ size_t;\\\n/";
2381
2382       sed  = "/typedef[ \t][ \t]*[a-z_][ \ta-z_]*[ \t]size_t/i\\\n"
2383                    "#ifndef __SIZE_TYPE__\\\n"
2384                    "#define __SIZE_TYPE__ long unsigned int\\\n"
2385                    "#endif\n";
2386
2387       sed  = "s/typedef[ \t][ \t]*[a-z_][ \ta-z_]*[ \t]size_t/"
2388                "typedef __SIZE_TYPE__ size_t/";
2389
2390       sed  = "/typedef[ \t][ \t]*[a-z_][ \ta-z_]*[ \t]ptrdiff_t/i\\\n"
2391                    "#ifndef __PTRDIFF_TYPE__\\\n"
2392                    "#define __PTRDIFF_TYPE__ long int\\\n"
2393                    "#endif\n";
2394
2395       sed  = "s/typedef[ \t][ \t]*[a-z_][ \ta-z_]*[ \t]ptrdiff_t/"
2396                "typedef __PTRDIFF_TYPE__ ptrdiff_t/";
2397
2398       sed  = "/typedef[ \t][ \t]*[a-z_][ \ta-z_]*[ \t]wchar_t/i\\\n"
2399                    "#ifndef __WCHAR_TYPE__\\\n"
2400                    "#define __WCHAR_TYPE__ int\\\n"
2401                    "#endif\\\n"
2402                    "#ifndef __cplusplus\n";
2403
2404       sed  = "/typedef[ \t][ \t]*[a-z_][ \ta-z_]*[ \t]wchar_t/a\\\n"
2405                    "#endif\n";
2406
2407       sed  = "s/typedef[ \t][ \t]*[a-z_][ \ta-z_]*[ \t]wchar_t/"
2408                "typedef __WCHAR_TYPE__ wchar_t/";
2409 };
2410
2411
2412 /*
2413  * Fix files that may contain a stray definition of size_t.  Take care
2414  * not to match ssize_t or mere uses of size_t.
2415  */
2416 fix = {
2417     hackname = systypes_stdlib_size_t;
2418     files    = sys/types.h;
2419     files    = stdlib.h;
2420     select   = "typedef[ \t][ \t]*[A-Za-z_][ \tA-Za-z_]*[ \t]size_t";
2421     bypass   = "_(GCC|BSD)_SIZE_T";
2422
2423     sed    = "/typedef[ \t][ \t]*[A-Za-z_][ \tA-Za-z_]*[ \t]size_t/i\\\n"
2424                  "#ifndef _GCC_SIZE_T\\\n"
2425                  "#define _GCC_SIZE_T\n";
2426
2427     sed    = "/typedef[ \t][ \t]*[A-Za-z_][ \tA-Za-z_]*[ \t]size_t/a\\\n"
2428                  "#endif\n";
2429 };
2430
2431
2432 /*
2433  *  Fix return value of mem{ccpy,chr,cpy,set} and str{len,spn,cspn}
2434  *  in string.h on sysV68
2435  *  Correct the return type for strlen in string.h on Lynx.
2436  *  Correct the argument type for ffs in string.h on Alpha OSF/1 V2.0.
2437  *  Add missing const for strdup on OSF/1 V3.0.
2438  *  On sysV88 layout is slightly different.
2439  */
2440 fix = {
2441     hackname = sysv68_string;
2442     files    = string.h;
2443
2444     sed = "s/extern[ \t]*int[ \t]*strlen();/extern unsigned int strlen();/";
2445     sed = "s/extern[ \t]*int[ \t]*ffs[ \t]*(long);/extern int ffs(int);/";
2446     sed = "s/strdup(char \\*s1);/strdup(const char *s1);/";
2447     sed = "/^extern char$/N";
2448     sed = "s/^extern char\\(\\n\t\\*memccpy(),\\)$/extern void\\1/";
2449     sed = "/^\tstrncmp(),$/N";
2450     sed = "s/^\\(\tstrncmp()\\),\\n\\(\tstrlen(),\\)$/\\1;\\\n"
2451           "extern unsigned int\\\n\\2/";
2452     sed = "/^extern int$/N";
2453     sed = "s/^extern int\\(\\n\tstrlen(),\\)/extern size_t\\1/";
2454 };
2455
2456
2457 /*
2458  *  Fix return type of exit and abort in <stdlib.h>
2459  */
2460 fix = {
2461     hackname = sysz_stdlib_for_sun;
2462     files    = stdlib.h;
2463
2464     sed   = "s/int\tabort/void\tabort/g";
2465     sed   = "s/int\tfree/void\tfree/g";
2466     sed   = "s/char[ \t]*\\*[ \t]*calloc/void \\*\tcalloc/g";
2467     sed   = "s/char[ \t]*\\*[ \t]*malloc/void \\*\tmalloc/g";
2468     sed   = "s/char[ \t]*\\*[ \t]*realloc/void \\*\trealloc/g";
2469     sed   = "s/char[ \t]*\\*[ \t]*bsearch/void \\*\tbsearch/g";
2470     sed   = "s/int[ \t][ \t]*exit/void\texit/g";
2471 };
2472
2473
2474 /*
2475  *  Fix this Sun file to avoid interfering with stddef.h.
2476  *  We use a funny name to ensure it follows 'systypes' fix.
2477  */
2478 fix = {
2479     hackname = sysz_stdtypes_for_sun;
2480     files = sys/stdtypes.h;
2481     sed   = "/[\t ]size_t.*;/i\\\n"
2482               "#ifndef _GCC_SIZE_T\\\n"
2483               "#define _GCC_SIZE_T\n";
2484
2485     sed   = "/[\t ]size_t.*;/a\\\n"
2486               "#endif\n";
2487
2488     sed   = "/[\t ]ptrdiff_t.*;/i\\\n"
2489               "#ifndef _GCC_PTRDIFF_T\\\n"
2490               "#define _GCC_PTRDIFF_T\n";
2491
2492     sed   = "/[\t ]ptrdiff_t.*;/a\\\n"
2493               "#endif\n";
2494
2495     sed   = "/[\t ]wchar_t.*;/i\\\n"
2496               "#ifndef _GCC_WCHAR_T\\\n"
2497               "#define _GCC_WCHAR_T\n";
2498
2499     sed   = "/[\t ]wchar_t.*;/a\\\n"
2500               "#endif\n";
2501 };
2502
2503
2504 /*
2505  *  if the #if says _cplusplus, not the double underscore __cplusplus
2506  *  that it should be
2507  */
2508 fix = {
2509     hackname = tinfo_cplusplus;
2510     files    = tinfo.h;
2511     select   = "[ \t]_cplusplus";
2512     sed      = "s/[ \t]_cplusplus/ __cplusplus/";
2513 };
2514
2515
2516 /*
2517  *  parameter to atof not const on DECstation Ultrix V4.0 and NEWS-OS 4.2R.
2518  */
2519 fix = {
2520     hackname = ultrix_atof_param;
2521     files    = math.h;
2522     select   = "atof\\([ \t]*char";
2523
2524     sed = "s@atof(\\([ \t]*char[ \t]*\\*[^)]*\\))@atof(const \\1)@";
2525 };
2526
2527
2528 /*
2529  *  parameters not const on DECstation Ultrix V4.0 and OSF/1.
2530  */
2531 fix = {
2532     hackname = ultrix_const;
2533     files    = stdio.h;
2534
2535     sed   = 's@perror( char \*__s );@perror( const char *__s );@';
2536     sed   = 's@fputs( char \*__s,@fputs( const char *__s,@';
2537     sed   = 's@fopen( char \*__filename, char \*__type );@'
2538               'fopen( const char *__filename, const char *__type );@';
2539     sed   = 's@fwrite( void \*__ptr,@fwrite( const void *__ptr,@';
2540     sed   = 's@fscanf( FILE \*__stream, char \*__format,@'
2541               'fscanf( FILE *__stream, const char *__format,@';
2542     sed   = 's@scanf( char \*__format,@scanf( const char *__format,@';
2543     sed   = 's@sscanf( char \*__s, char \*__format,@'
2544               'sscanf( const char *__s, const char *__format,@';
2545     sed   = 's@popen(char \*, char \*);@popen(const char *, const char *);@';
2546     sed   = 's@tempnam(char\*,char\*);@tempnam(const char*,const char*);@';
2547 };
2548
2549
2550 /*
2551  * Ultrix V4.[35] puts the declaration of uname before the definition
2552  * of struct utsname, so the prototype (added by fixproto) causes havoc.
2553  */
2554 fix = {
2555     hackname = ultrix_fix_fixproto;
2556     files    = sys/utsname.h;
2557     select   = ULTRIX;
2558     sed      = "/^[ \t]*extern[ \t]*int[ \t]*uname();$/i\\\n"
2559                "struct utsname;\n";
2560 };
2561
2562
2563 /*
2564  *  Check for bad #ifdef line (in Ultrix 4.1)
2565  */
2566 fix = {
2567     hackname = ultrix_ifdef;
2568     select   = "#ifdef KERNEL[ \t]*[^ \t]";
2569     files    = sys/file.h;
2570     sed      = "s/#ifdef KERNEL/#if defined(KERNEL)/";
2571 };
2572
2573
2574 /*
2575  *  Check for superfluous `static' (in Ultrix 4.2)
2576  *  On Ultrix 4.3, includes of other files (r3_cpu.h,r4_cpu.h) is broken.
2577  */
2578 fix = {
2579     hackname = ultrix_static;
2580     files  = machine/cpu.h;
2581     select = '#include "r[34]_cpu';
2582     sed    = "s/^static struct tlb_pid_state/struct tlb_pid_state/";
2583     sed    = 's/^#include "r3_cpu\.h"$/#include <machine\/r3_cpu\.h>/';
2584     sed    = 's/^#include "r4_cpu\.h"$/#include <machine\/r4_cpu\.h>/';
2585 };
2586
2587
2588 /*
2589  *  Fix multiple defines for NULL.  Sometimes, we stumble into \r\n
2590  *  terminated lines, so accommodate these.  Test both ways.
2591  */
2592 fix = {
2593     hackname  = undefine_null;
2594     select    = "^#[ \t]*define[ \t]+NULL[ \t]";
2595     bypass    = "#[ \t]*(ifn|un)def[ \t]+NULL($|[ \t\r])";
2596
2597     c_fix     = format;
2598     c_fix_arg = "#ifndef NULL%2\n#define NULL%1%2\n#endif%2\n";
2599     c_fix_arg = "^#[ \t]*define[ \t]*[ \t]NULL([^\r\n]+)([\r]*)\n";
2600
2601     test_text = "#define NULL 0UL\r\n#define NULL\t((void*)0)\n";
2602 };
2603
2604
2605 /*
2606  * If arpa/inet.h prototypes are incompatible with the ones we just
2607  * installed in <sys/byteorder.h>, just remove the protos.
2608  * Because of this close association, this patch must be applied only
2609  * on those systems where the replacement byteorder header is installed.
2610  */
2611 fix = {
2612     hackname = unixware7_byteorder_fix;
2613     files    = arpa/inet.h;
2614     select   = "in_port_t";
2615 #ifndef SVR5
2616         mach = "*-*-sysv4*";
2617         mach = "i[34567]86-*-sysv5*";
2618         mach = "i[34567]86-*-udk*";
2619         mach = "i[34567]86-*-solaris2.[0-4]";
2620         mach = "powerpcle-*-solaris2.[0-4]";
2621         mach = "sparc-*-solaris2.[0-4]";
2622 #endif /* SVR5 */
2623     sed      =  '/^extern.*htons.*(in_port_t)/d';
2624     sed      =  '/^extern.*ntohs.*(in_port_t)/d';
2625 };
2626
2627
2628 /*
2629  *  Fix definitions of macros used by va-i960.h in VxWorks header file.
2630  */
2631 fix = {
2632     hackname = va_i960_macro;
2633     files    = arch/i960/archI960.h;
2634     select   = "__(vsiz|vali|vpad|alignof__)";
2635     sed = "s/__vsiz/__vxvsiz/";
2636     sed = "s/__vali/__vxvali/";
2637     sed = "s/__vpad/__vxvpad/";
2638     sed = "s/__alignof__/__vxalignof__/";
2639 };
2640
2641
2642 /*
2643  *  AIX headers define NULL to be cast to a void pointer,
2644  *  which is illegal in ANSI C++.
2645  */
2646 fix = {
2647     hackname = void_null;
2648     files    = curses.h;
2649     files    = dbm.h;
2650     files    = locale.h;
2651     files    = stdio.h;
2652     files    = stdlib.h;
2653     files    = string.h;
2654     files    = time.h;
2655     files    = unistd.h;
2656     files    = sys/dir.h;
2657     files    = sys/param.h;
2658     files    = sys/types.h;
2659     select   = "#[ \t]*define[ \t][ \t]*NULL[ \t].*void";
2660     sed      = "s/^#[ \t]*define[ \t]*NULL[ \t]*((void[ \t]*\\*)0)"
2661                 "/#define NULL 0/";
2662 };
2663
2664
2665 /*
2666  *  Make VxWorks header which is almost gcc ready fully gcc ready.
2667  */
2668 fix = {
2669     hackname = vxworks_gcc_problem;
2670     files    = types/vxTypesBase.h;
2671     select   = "__GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__";
2672
2673     sed = "s/#ifdef __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__/"
2674           "#if 1/";
2675
2676     sed = "/[ \t]size_t/i\\\n"
2677         "#ifndef _GCC_SIZE_T\\\n"
2678         "#define _GCC_SIZE_T\n";
2679
2680     sed = "/[ \t]size_t/a\\\n"
2681         "#endif\n";
2682
2683     sed = "/[ \t]ptrdiff_t/i\\\n"
2684         "#ifndef _GCC_PTRDIFF_T\\\n"
2685         "#define _GCC_PTRDIFF_T\n";
2686
2687     sed = "/[ \t]ptrdiff_t/a\\\n"
2688         "#endif\n";
2689
2690     sed = "/[ \t]wchar_t/i\\\n"
2691         "#ifndef _GCC_WCHAR_T\\\n"
2692         "#define _GCC_WCHAR_T\n";
2693
2694     sed = "/[ \t]wchar_t/a\\\n"
2695         "#endif\n";
2696 };
2697
2698
2699 /*
2700  *  Fix VxWorks <time.h> to not require including <vxTypes.h>.
2701  */
2702 fix = {
2703     hackname = vxworks_needs_vxtypes;
2704     files    = time.h;
2705     select   = "uint_t[ \t][ \t]*_clocks_per_sec";
2706     sed      = "s/uint_t/unsigned int/";
2707     test_text = "uint_t\t_clocks_per_sec;";
2708 };
2709
2710
2711 /*
2712  *  Fix VxWorks <sys/stat.h> to not require including <vxWorks.h>.
2713  */
2714 fix = {
2715     hackname = vxworks_needs_vxworks;
2716     files    = sys/stat.h;
2717     test     = " -r types/vxTypesOld.h";
2718     test     = " -n \"`egrep '#include' $file`\"";
2719     test     = " -n \"`egrep ULONG $file`\"";
2720     select   = "#[ \t]define[ \t][ \t]*__INCstath";
2721
2722     sed = "/#[ \t]define[ \t][ \t]*__INCstath/a\\\n"
2723           "#include <types/vxTypesOld.h>\n";
2724 };
2725
2726
2727 /*
2728  *  Another bad dependency in VxWorks 5.2 <time.h>.
2729  */
2730 fix = {
2731     hackname = vxworks_time;
2732     files    = time.h;
2733     select   = "VOIDFUNCPTR";
2734     test     = " -r vxWorks.h";
2735     sed      = "/VOIDFUNCPTR/i\\\n"
2736                "#ifndef __gcc_VOIDFUNCPTR_defined\\\n"
2737                "#ifdef __cplusplus\\\n"
2738                "typedef void (*__gcc_VOIDFUNCPTR) (...);\\\n"
2739                "#else\\\n"
2740                "typedef void (*__gcc_VOIDFUNCPTR) ();\\\n"
2741                "#endif\\\n"
2742                "#define __gcc_VOIDFUNCPTR_defined\\\n"
2743                "#endif\n";
2744
2745     sed      = "s/VOIDFUNCPTR/__gcc_VOIDFUNCPTR/g";
2746 };
2747
2748
2749 /*
2750  *  There are several name conflicts with C++ reserved words in X11 header
2751  *  files.  These are fixed in some versions, so don't do the fixes if
2752  *  we find __cplusplus in the file.  These were found on the RS/6000.
2753  */
2754 fix = {
2755     hackname = x11_class;
2756     files    = X11/ShellP.h;
2757     bypass   = __cplusplus;
2758     sed      = "/char \\*class;/i\\\n"
2759                    "#ifdef __cplusplus\\\n"
2760                    "\tchar *c_class;\\\n"
2761                    "#else\n";
2762     sed      = "/char \\*class;/a\\\n"
2763                    "#endif\n";
2764     test_text =
2765     "struct {\n"
2766     "   char *class;\n"
2767     "} mumble;\n";
2768 };
2769
2770
2771 /*
2772  *  class in Xm/BaseClassI.h
2773  */
2774 fix = {
2775     hackname = x11_class_usage;
2776     files    = Xm/BaseClassI.h;
2777     bypass   = "__cplusplus";
2778     sed      = "s/ class[)]/ c_class)/g";
2779     test_text = "extern mumble (int  class);\n";
2780 };
2781
2782
2783 /*
2784  *  new in Xm/Traversal.h
2785  */
2786 fix = {
2787     hackname = x11_new;
2788     files    = Xm/Traversal.h;
2789     bypass   = __cplusplus;
2790
2791     sed      = "/Widget\told, new;/i\\\n"
2792                    "#ifdef __cplusplus\\\n"
2793                    "\tWidget\told, c_new;\\\n"
2794                    "#else\n";
2795
2796     sed      = "/Widget\told, new;/a\\\n"
2797                    "#endif\n";
2798
2799     sed      = "s/Widget new,/Widget c_new,/g";
2800     test_text =
2801     "struct wedge {\n"
2802     "   Widget\told, new; /* fix the new */\n"
2803     "};\nextern Wedged( Widget new, Widget old );";
2804 };
2805
2806
2807 /*
2808  *  Incorrect sprintf declaration in X11/Xmu.h
2809  */
2810 fix = {
2811     hackname = x11_sprintf;
2812     files    = X11/Xmu.h;
2813     files    = X11/Xmu/Xmu.h;
2814     select   = 'sprintf\(\)';
2815
2816     sed      = "s,^extern char \\*\tsprintf();$,#ifndef __STDC__\\\n"
2817                "extern char *\tsprintf();\\\n"
2818                "#endif /* !defined __STDC__ */,";
2819     test_text = "extern char *\tsprintf();";
2820 };
2821
2822 /*EOF*/