OSDN Git Service

New include hacks for ultrix
[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  *  The Ultrix 4.3 file limits.h is a symbolic link to sys/limits.h.
521  *  Replace limits.h with a file that includes sys/limits.h.
522  */
523 fix = {
524     hackname = AAB_ultrix_limits;
525     files    = limits.h;
526     mach     = "*-*-ultrix4.3";
527     replace  =
528 '/*     @(#)limits.h                            */
529 /* This file was generated by fixincludes       */
530 \#ifndef _LIMITS_INCLUDED
531 \#define _LIMITS_INCLUDED
532 \#include <sys/limits.h>
533 \#endif /* _LIMITS_INCLUDED */
534 ';
535 };
536
537
538 /*
539  *  The ULTRIX 4.3 version of memory.h duplicates definitions
540  *  present in strings.h.  Replace memory.h with a file that includes
541  *  strings.h to prevent problems from multiple inclusion.
542  */
543 fix = {
544     hackname = AAB_ultrix_memory;
545     files    = memory.h;
546     mach     = "*-*-ultrix4.3";
547     replace  =
548 '/*     @(#)memory.h                            */
549 /* This file was generated by fixincludes       */
550 \#ifndef _MEMORY_INCLUDED
551 \#define _MEMORY_INCLUDED
552 \#include <strings.h>
553 \#endif /* _MEMORY_INCLUDED */
554 ';
555 };
556
557
558 /*
559  *  The Ultrix 4.3 file string.h is a symbolic link to strings.h.
560  *  Replace string.h link with a file that includes strings.h to prevent
561  *  problems from multiple inclusion.
562  */
563 fix = {
564     hackname = AAB_ultrix_string;
565     files    = string.h;
566     mach     = "*-*-ultrix4.3";
567     replace  =
568 '/*     @(#)string.h                            */
569 /* This file was generated by fixincludes       */
570 \#ifndef _STRING_INCLUDED
571 \#define _STRING_INCLUDED
572 \#include <strings.h>
573 \#endif /* _STRING_INCLUDED */
574 ';
575 };
576
577
578 /*
579  *  sys/wait.h on AIX 3.2.5 puts the declaration of wait3 before the
580  *  definition of struct rusage, so the prototype added by fixproto fails.
581  */
582 fix = {
583     hackname  = aix_syswait;
584     files     = sys/wait.h;
585     select    = "^extern pid_t wait3\\(\\);\n";
586     select    = "bos325,";
587     c_fix     = format;
588     c_fix_arg = "struct rusage;\n%0";
589     test_text = "/* bos325, */\n"
590     "extern pid_t wait3();\n"
591     "\t/* pid_t wait3(int *, int, struct rusage *); */";
592 };
593
594
595 /*
596  *  sys/signal.h on some versions of AIX uses volatile in the typedef of
597  *  sig_atomic_t, which causes gcc to generate a warning about duplicate
598  *  volatile when a sig_atomic_t variable is declared volatile, as
599  *  required by ANSI C.
600  */
601 fix = {
602     hackname  = aix_volatile;
603     files     = sys/signal.h;
604     select    = "typedef volatile int sig_atomic_t";
605     c_fix     = format;
606     c_fix_arg = "typedef int sig_atomic_t";
607     test_text = "typedef volatile int sig_atomic_t;";
608 };
609
610
611 /*
612  *  Fix getopt declarations in stdio.h and stdlib.h on Alpha OSF/1 and AIX.
613  */
614 fix = {
615     hackname  = alpha_getopt;
616     files     = "stdio.h";
617     files     = "stdlib.h";
618     select    = 'getopt\(int, char \*\[\], *char \*\)';
619     c_fix     = format;
620     c_fix_arg = "getopt(int, char *const[], const char *)";
621     test_text = 'extern int getopt(int, char *[], char *);';
622 };
623
624
625 /* 
626  * Remove erroneous parentheses in sym.h on Alpha OSF/1.
627  */
628 fix = {
629     hackname  = alpha_parens;
630     files     = sym.h;
631     select    = '#ifndef\(__mips64\)';
632     c_fix     = format;
633     c_fix_arg = "#ifndef __mips64";
634     test_text = "#ifndef(__mips64) /* bogus */\nextern int foo;\n#endif";
635 };
636
637
638 /*
639  *  Fix return value of sbrk in unistd.h on Alpha OSF/1 V2.0
640  */
641 fix = {
642     hackname = alpha_sbrk;
643     files    = unistd.h;
644     select   = "char[ \t]*\\*[\t ]*sbrk[ \t]*\\(";
645     c_fix     = format;
646     c_fix_arg = "void *sbrk(";
647     test_text = "extern char* sbrk(ptrdiff_t increment);";
648 };
649
650
651 /*
652  *  Fix this ARM/RISCiX file where ___type is a Compiler
653  *  hint that is specific to the Norcroft compiler.
654  */
655 fix = {
656     hackname  = arm_norcroft_hint;
657     select    = "___type p_type";
658     files     = "X11/Intrinsic.h";
659     c_fix     = format;
660     c_fix_arg = "p_type";
661     test_text = "___type p_type mumble;";
662 };
663
664
665 /*
666  *  Fix this ARM/RISCiX file to avoid interfering
667  *  with the use of __wchar_t in cc1plus.
668  */
669 fix = {
670     hackname = arm_wchar;
671     files  = stdlib.h;
672     select = "#[ \t]*define[ \t]*__wchar_t";
673
674     c_fix     = format;
675     c_fix_arg = "%1_GCC_WCHAR_T";
676     c_fix_arg = "(#[ \t]*(ifndef|define)[ \t]+)__wchar_t";
677
678     test_text =
679     "# ifndef \t __wchar_t /* we don't have wchar_t yet, ... */\n"
680     "#  define  __wchar_t  short\n"
681     "# endif /* __wchar_t */";
682 };
683
684
685 /*
686  *  This file in A/UX 3.0.x/3.1.x contains an __asm directive for c89;
687  *  gcc doesn't understand it.
688  */
689 fix = {
690     hackname = aux_asm;
691     files    = sys/param.h;
692     select   = "#ifndef NOINLINE";
693
694     c_fix     = format;
695     c_fix_arg = "#if !defined(NOINLINE) && !defined(__GNUC__)";
696
697     test_text =
698     "#ifndef NOINLINE /* ain't got no inline, so we got it */\n"
699     "#endif /* NOINLINE */";
700 };
701
702
703 /*
704  *  For C++, avoid any typedef or macro definition of bool,
705  *  and use the built in type instead.
706  *  HP/UX 10.20 also has it in curses_colr/curses.h.
707  */
708 fix = {
709     hackname  = avoid_bool_define;
710     files     = curses.h;
711     files     = curses_colr/curses.h;
712     files     = term.h;
713     files     = tinfo.h;
714
715     select    = "#[ \t]*define[ \t]+bool[ \t]";
716     bypass    = "we must use the C\\+\\+ compiler's type";
717
718     c_fix     = format;
719     c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
720     c_fix_arg = "^[ \t]*#[ \t]*define[ \t]+bool[ \t].*";
721
722     test_text = "# define bool\t char \n";
723 };
724
725 fix = {
726     hackname = avoid_bool_type;
727     files    = curses.h;
728     files    = curses_colr/curses.h;
729     files    = term.h;
730     files    = tinfo.h;
731
732     select    = "^[ \t]*typedef[ \t].*[ \t]bool[ \t]*;";
733     bypass    = "we must use the C\\+\\+ compiler's type";
734
735     c_fix     = format;
736     c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
737     c_fix_arg = "^[ \t]*typedef[ \t].*[ \t]bool[ \t]*;.*";
738
739     test_text = "typedef unsigned int\tbool \t; /* bool type */";
740 };
741
742
743 /*
744  *  Fix #defines under Alpha OSF/1:
745  *  The following files contain '#pragma extern_prefix "_FOO"' followed by
746  *  a '#define something(x,y,z) _FOOsomething(x,y,z)'.  The intent of these
747  *  statements is to reduce namespace pollution.  While these macros work
748  *  properly in most cases, they don't allow you to take a pointer to the
749  *  "something" being modified.  To get around this limitation, change these
750  *  statements to be of the form '#define something _FOOsomething'.
751  *
752  *  sed ain't egrep, lesson 2463:  sed can use self-referential
753  *  regular expressions.  In the substitute expression below,
754  *  "\\1" and "\\2" refer to subexpressions found earlier in the
755  *  same match.  So, we continue to use sed.  "extern_prefix" will
756  *  be a rare match anyway...
757  */
758 fix = {
759     hackname = bad_lval;
760
761     select   = "^[ \t]*#[ \t]*pragma[ \t]+extern_prefix";
762
763     files    = libgen.h;
764     files    = dirent.h;
765     files    = ftw.h;
766     files    = grp.h;
767     files    = ndbm.h;
768     files    = pthread.h;
769     files    = pwd.h;
770     files    = signal.h;
771     files    = standards.h;
772     files    = stdlib.h;
773     files    = string.h;
774     files    = stropts.h;
775     files    = time.h;
776     files    = unistd.h;
777
778     sed      =
779         "s/^[ \t]*#[ \t]*define[ \t][ \t]*\\([^(]*\\)\\(([^)]*)\\)[ \t]*"
780                "\\(_.*\\)\\1\\2[ \t]*$/#define \\1 \\3\\1/";
781
782     test_text = '#pragma extern_prefix "_FOO"'"\n"
783                 "#define something(x,y,z) _FOOsomething(x,y,z)\n"
784                 "#define mumble _FOOmumble";
785 };
786
787
788 /*
789  *  Fix `typedef struct term;' on hppa1.1-hp-hpux9.
790  */
791 fix = {
792     hackname  = bad_struct_term;
793     files     = curses.h;
794     select    = "^[ \t]*typedef[ \t]+struct[ \t]+term[ \t]*;";
795     c_fix     = format;
796     c_fix_arg = "struct term;";
797
798     test_text = 'typedef struct term;';
799 };
800
801
802 /*
803  *  Fix one other error in this file:
804  *  a mismatched quote not inside a C comment.
805  */
806 fix = {
807     hackname  = badquote;
808     files     = sundev/vuid_event.h;
809     select    = "doesn't";
810     c_fix     = format;
811     c_fix_arg = "does not";
812
813     test_text = "/* doesn't have matched single quotes */";
814 };
815
816
817 /*
818  *  check for broken assert.h that needs stdio.h
819  */
820 fix = {
821     hackname  = broken_assert_stdio;
822     files     = assert.h;
823     select    = stderr;
824     bypass    = "include.*stdio\\.h";
825     c_fix     = wrap;
826     c_fix_arg = "#include <stdio.h>\n";
827     test_text = "extern FILE* stderr;";
828 };
829
830
831 /*
832  *  check for broken assert.h that needs stdlib.h
833  */
834 fix = {
835     hackname  = broken_assert_stdlib;
836     files     = assert.h;
837     select    = 'exit *\(|abort *\(';
838     bypass    = "include.*stdlib\\.h";
839     c_fix     = wrap;
840     c_fix_arg = "#ifdef __cplusplus\n"
841                 "#include <stdlib.h>\n"
842                 "#endif\n";
843     test_text = "extern void exit ( int );";
844 };
845
846
847 /*
848  *  Remove `extern double cabs' declarations from math.h.
849  *  This conflicts with C9x.  Discovered on AIX.
850  *  SunOS4 has its cabs() declaration followed by a comment which
851  *  terminates on the following line.
852  */
853 fix = {
854     hackname = broken_cabs;
855     files  = "math.h";
856     select = '^extern double cabs';
857
858     c_fix     = format;
859     c_fix_arg = "";
860     c_fix_arg = "^extern double cabs\\((struct dbl_hypot|)\\);";
861
862     test_text = "#ifdef __STDC__\n"
863                 "extern double cabs(struct dbl_hypot);\n"
864                 "#else\n"
865                 "extern double cabs();\n"
866                 "#endif\n"
867                 "extern double cabs(); /* This is a comment\n"
868                 "                         and it ends here. */";
869 };
870
871
872 /*
873  *  Fix various macros used to define ioctl numbers.
874  *  The traditional syntax was:
875  *
876  *    #define _CTRL(n, x) (('n'<<8)+x)
877  *    #define TCTRLCFOO _CTRL(T, 1)
878  *
879  *  but this does not work with the C standard, which disallows macro
880  *  expansion inside strings.  We have to rewrite it thus:
881  *
882  *    #define _CTRL(n, x) ((n<<8)+x)
883  *    #define TCTRLCFOO  _CTRL('T', 1)
884  *
885  *  The select expressions match too much, but the c_fix code is cautious.
886  *
887  *  CTRL might be: CTRL _CTRL ISCTRL BSD43_CTRL ...
888  */
889 fix = {
890     hackname  = ctrl_quotes_def;
891     select    = "define[ \t]+[A-Z0-9_]+CTRL\\([a-zA-Z],";
892     c_fix     = char_macro_def;
893     c_fix_arg = "CTRL";
894     test_text = "#define BSD43_CTRL(n, x) (('n'<<8)+x)\n"
895                 "#define _CTRL(c) ('c'&037)";
896 };
897
898 fix = {
899     hackname  = ctrl_quotes_use;
900     select    = "define[ \t]+[A-Z0-9_]+[ \t]+[A-Z0-9_]+CTRL[ \t]*\\( *[^,']";
901     c_fix     = char_macro_use;
902     c_fix_arg = "CTRL";
903     test_text = "#define TCTRLFOO BSD43_CTRL(T, 1)";
904 };
905
906
907 /*
908  *  sys/mman.h on HP/UX is not C++ ready,
909  *  even though NO_IMPLICIT_EXTERN_C is defined on HP/UX.
910  *
911  *  rpc/types.h on OSF1/2.0 is not C++ ready,
912  *  even though NO_IMPLICIT_EXTERN_C is defined for the alpha.
913  *
914  *  The problem is the declaration of malloc.
915  */
916 fix = {
917     hackname = cxx_unready;
918     files    = sys/mman.h;
919     files    = rpc/types.h;
920     select   = '[^#]+malloc.*;';  /* Catch any form of declaration
921                                      not within a macro.  */
922     bypass   = '"C"|__BEGIN_DECLS';
923
924     c_fix     = wrap;
925     c_fix_arg = "#ifdef __cplusplus\n"
926                 "extern \"C\" {\n"
927                 "#endif\n";
928     c_fix_arg = "#ifdef __cplusplus\n"
929                 "}\n"
930                 "#endif\n";
931     test_text = "extern void* malloc( size_t );";
932 };
933
934
935 /*
936  *  Fix <c_asm.h> on Digital UNIX V4.0:
937  *  It contains a prototype for a DEC C internal asm() function,
938  *  clashing with gcc's asm keyword.  So protect this with __DECC.
939  */
940 fix = {
941     hackname = dec_intern_asm;
942     files    = c_asm.h;
943     sed = "/^[ \t]*float[ \t]*fasm/i\\\n#ifdef __DECC\n";
944     sed = "/^[ \t]*#[ \t]*pragma[ \t]*intrinsic([ \t]*dasm/a\\\n"
945           "#endif\n";
946     test_text =
947     "float fasm {\n"
948     "    ... asm stuff ...\n"
949     "};\n#pragma intrinsic( dasm )\n/* END ASM TEST*/";
950 };
951
952
953 /*
954  * Fix these Sun OS files to avoid an invalid identifier in an #ifdef.
955  */
956 fix = {
957     hackname  = ecd_cursor;
958     files     = "sunwindow/win_lock.h";
959     files     = "sunwindow/win_cursor.h";
960     select    = 'ecd\.cursor';
961     c_fix     = format;
962     c_fix_arg = 'ecd_cursor';
963
964     test_text = "#ifdef ecd.cursor\n#error bogus\n#endif /* ecd+cursor */";
965 };
966
967
968 /*
969  *  fix-header doesn't fix fabs' prototype, and I have no idea why.
970  */
971 fix = {
972     hackname  = fix_header_breakage;
973     mach      = "m88k-motorola-sysv3*";
974     files     = "math.h";
975
976     select    = 'extern double floor\(\), ceil\(\), fmod\(\), fabs\(\);';
977     c_fix     = format;
978     c_fix_arg =
979     'extern double floor(), ceil(), fmod(), fabs _PARAMS((double));';
980     test_text = 'extern double floor(), ceil(), fmod(), fabs();';
981 };
982
983
984 /*
985  *  Fix HP's use of ../machine/inline.h to refer to
986  *    /usr/include/machine/inline.h
987  */
988 fix = {
989     hackname  = hp_inline;
990     files     = sys/spinlock.h;
991     files     = machine/machparam.h;
992     select    = "[ \t]*#[ \t]*include[ \t]+"  '"\.\./machine/';
993
994     c_fix     = format;
995     c_fix_arg = "%1<machine/%2.h>";
996
997     c_fix_arg = "([ \t]*#[ \t]*include[ \t]+)"  '"\.\./machine/'
998                 '([a-z]+)\.h"';
999
1000     test_text = ' # include "../machine/mumble.h"';
1001 };
1002
1003
1004 /*
1005  *  Check for (...) in C++ code in HP/UX sys/file.h.
1006  */
1007 fix = {
1008     hackname  = hp_sysfile;
1009     files     = sys/file.h;
1010     select    = "HPUX_SOURCE";
1011
1012     c_fix     = format;
1013     c_fix_arg = "(struct file *, ...)";
1014     c_fix_arg = '\(\.\.\.\)';
1015
1016     test_text = "extern void foo(...); /* HPUX_SOURCE - bad varargs */";
1017 };
1018
1019
1020 /*
1021  *  Keep HP-UX 11 from stomping on C++ math namespace
1022  *  with defines for fabsf.
1023  */
1024 fix = {
1025     hackname  = hpux11_fabsf;
1026     files     = math.h;
1027     select    = "^[ \t]*#[ \t]*define[ \t]+fabsf\\(.*";
1028     bypass    = "__cplusplus";
1029
1030     c_fix     = format;
1031     c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
1032
1033     test_text =
1034     "#ifdef _PA_RISC\n"
1035     "#  define fabsf(x) ((float)fabs((double)(float)(x)))\n"
1036     "#endif";
1037 };
1038
1039
1040 /*
1041  * In inttypes.h on HPUX 11, the use of __CONCAT__ in the definition 
1042  * of UINT32_C has undefined behavior according to ISO/ANSI:
1043  * the arguments to __CONCAT__ are not macro expanded before the
1044  * concatination happens so the trailing ')' in the first argument
1045  * is concatinated with the 'l' in the second argument creating an
1046  * invalid pp token.  The behavior of invalid pp tokens is undefined.
1047  * GCC does not handle these invalid tokens the way the HP compiler does.
1048  * This problem will potentially occur anytime macros are used in the
1049  * arguments to __CONCAT__.  A general solution to this problem would be to 
1050  * insert another layer of macro between __CONCAT__ and its use
1051  * in UINT32_C.  An example of this solution can be found in the C standard.
1052  * A more specific solution, the one used here, is to change the UINT32_C
1053  * macro to not used macros in the arguments to __CONCAT__.
1054  */
1055 fix = {
1056     hackname = hpux11_uint32_c;
1057     files    = inttypes.h;
1058     select   = "^#define UINT32_C\\(__c\\)[ \t]*"
1059                          "__CONCAT__\\(__CONCAT_U__\\(__c\\),l\\)";
1060     c_fix    = format;
1061     c_fix_arg = '#define UINT32_C(__c) __CONCAT__(__c,ul)';
1062     test_text =
1063     "#define CONCAT_U__(__c)\t__CONCAT__(__c,u)\n"
1064     "#define UINT32_C(__c)\t__CONCAT__(__CONCAT_U__(__c),l)";
1065 };
1066
1067
1068 /*
1069  *  get rid of bogus inline definitions in HP-UX 8.0
1070  */
1071 fix = {
1072     hackname = hpux8_bogus_inlines;
1073     files    = math.h;
1074     select   = inline;
1075     sed = "s@inline int abs(int [a-z][a-z]*) {.*}"
1076            "@extern \"C\" int abs(int);@";
1077     sed = "s@inline double abs(double [a-z][a-z]*) {.*}@@";
1078     sed = "s@inline int sqr(int [a-z][a-z]*) {.*}@@";
1079     sed = "s@inline double sqr(double [a-z][a-z]*) {.*}@@";
1080     test_text = "inline int abs(int v) { return (v>=0)?v:-v; }\n"
1081                 "inline double sqr(double v) { return v**0.5; }";
1082 };
1083
1084
1085 /*
1086  *  Fix return type of abort and free
1087  */
1088 fix = {
1089     hackname  = int_abort_free_and_exit;
1090     files     = stdlib.h;
1091     select    = "int[ \t]+(abort|free|exit)[ \t]*\\(";
1092
1093     c_fix     = format;
1094     c_fix_arg = "void\t%1(";
1095
1096     test_text = "extern int abort(int);\n"
1097                 "extern int free(void*);\n"
1098                 "extern int exit(void*);";
1099 };
1100
1101
1102 /*
1103  *  On Interactive Unix 2.2, certain traditional Unix definitions
1104  *  (notably getc and putc in stdio.h) are omitted if __STDC__ is
1105  *  defined, not just if _POSIX_SOURCE is defined.  This makes it
1106  *  impossible to compile any nontrivial program except with -posix.
1107  */
1108 fix = {
1109     hackname = isc_omits_with_stdc;
1110
1111     files     = "stdio.h";
1112     files     = "math.h";
1113     files     = "ctype.h";
1114     files     = "sys/limits.h";
1115     files     = "sys/fcntl.h";
1116     files     = "sys/dirent.h";
1117
1118     select    = '!defined\(__STDC__\) && !defined\(_POSIX_SOURCE\)';
1119     c_fix     = format;
1120     c_fix_arg = '!defined(_POSIX_SOURCE)';
1121     test_text = "#if !defined(__STDC__) && !defined(_POSIX_SOURCE) /* ? ! */"
1122                 "\nint foo;\n#endif";
1123 };
1124
1125
1126 /*
1127  *  Fix various macros used to define ioctl numbers.
1128  *  The traditional syntax was:
1129  *
1130  *    #define _IO(n, x) (('n'<<8)+x)
1131  *    #define TIOCFOO _IO(T, 1)
1132  *
1133  *  but this does not work with the C standard, which disallows macro
1134  *  expansion inside strings.  We have to rewrite it thus:
1135  *
1136  *    #define _IO(n, x) ((n<<8)+x)
1137  *    #define TIOCFOO  _IO('T', 1)
1138  *
1139  *  The select expressions match too much, but the c_fix code is cautious.
1140  *
1141  *  _IO might be: _IO DESIO BSD43__IO with W, R, WR, C, ... suffixes.
1142  */
1143 fix = {
1144     hackname  = io_quotes_def;
1145     select    = "define[ \t]+[A-Z0-9_]+IO[A-Z]*\\([a-zA-Z],";
1146     c_fix     = char_macro_def;
1147     c_fix_arg = "IO";
1148     test_text =
1149     "#define BSD43__IOWR(n, x) (('n'<<8)+x)\n"
1150     "#define _IOWN(x,y,t)  (_IOC_IN|(((t)&_IOCPARM_MASK)<<16)|('x'<<8)|y)\n"
1151     "#define _IO(x,y)      ('x'<<8|y)";
1152 };
1153
1154 fix = {
1155     hackname  = io_quotes_use;
1156     select    = "define[ \t]+[A-Z0-9_]+[ \t]+[A-Z0-9_]+IO[A-Z]*[ \t]*"
1157                 "\\( *[^,']";
1158     c_fix     = char_macro_use;
1159     c_fix_arg = "IO";
1160     test_text = "#define TIOCFOO BSD43__IOWR(T, 1)\n"
1161                 "#define TIOCFOO \\\\\n"
1162                 "BSD43__IOWR(T, 1) /* Some are multi-line */";
1163 };
1164
1165
1166 /*
1167  *  HPUX 10.x sys/param.h defines MAXINT which clashes with values.h
1168  */
1169 fix = {
1170     hackname  = hpux_maxint;
1171     files     = sys/param.h;
1172     select    = "^#[ \t]*define[ \t]*MAXINT[ \t]";
1173
1174     c_fix     = format;
1175     c_fix_arg = "#ifndef MAXINT\n%0\n#endif";
1176     c_fix_arg = "^#[ \t]*define[ \t]*MAXINT[ \t].*";
1177
1178     test_text = '#define MAXINT 0x7FFFFFFF';
1179 };
1180
1181
1182 /*
1183  *  Fix hpux10.20 <sys/time.h> to avoid invalid forward decl
1184  */
1185 fix = {
1186     hackname = hpux_systime;
1187     files    = sys/time.h;
1188     select   = "^extern struct sigevent;";
1189
1190     c_fix     = format;
1191     c_fix_arg = "struct sigevent;";
1192
1193     test_text = 'extern struct sigevent;';
1194 };
1195
1196
1197 /*
1198  *  Check for missing ';' in struct
1199  */
1200 fix = {
1201     hackname = ip_missing_semi;
1202     files    = netinet/ip.h;
1203     select   = "}$";
1204     sed      = "/^struct/,/^};/s/}$/};/";
1205     test_text=
1206     "struct mumble {\n"
1207     "  union {\n"
1208     "    int x;\n"
1209     "  }\n"
1210     "}; /* mumbled struct */\n";
1211 };
1212
1213
1214 /*
1215  *  IRIX 5.2's <sys/asm.h> contains an asm comment with a contraction
1216  *  that causes the assembly preprocessor to complain about an
1217  *  unterminated character constant.
1218  */
1219 fix = {
1220     hackname  = irix_asm_apostrophe;
1221     files     = sys/asm.h;
1222
1223     select    = "^[ \t]*#.*[Ww]e're";
1224     c_fix     = format;
1225     c_fix_arg = "%1 are";
1226     c_fix_arg = "^([ \t]*#.*[Ww]e)'re";
1227     test_text = "\t# and we're on vacation";
1228 };
1229
1230
1231 /*
1232  *  Some IRIX header files contain the string "//"
1233  */
1234 fix = {
1235     hackname = irix_multiline_cmnt;
1236     files    = sys/types.h;
1237
1238     sed   = "s@type of the result@type of the result */@";
1239     sed   = "s@of the sizeof@/* of the sizeof@";
1240     test_text =
1241     "/* we check the type of the result\n"
1242     "// of the sizeof something.  This is a bad test :-( */";
1243 };
1244
1245
1246 /*
1247  * Fixing ISC fmod declaration
1248  */
1249 fix = {
1250     hackname  = isc_fmod;
1251     files     = math.h;
1252     select    = 'fmod\(double\)';
1253     c_fix     = format;
1254     c_fix_arg = "fmod(double, double)";
1255     test_text = "extern double  fmod(double);";
1256 };
1257
1258
1259 /*
1260  * These files in Sun OS 4.x and ARM/RISCiX and BSD4.3
1261  * use / * * / to concatenate tokens.
1262  */
1263 fix = {
1264     hackname = kandr_concat;
1265     files  = "sparc/asm_linkage.h";
1266     files  = "sun3/asm_linkage.h";
1267     files  = "sun3x/asm_linkage.h";
1268     files  = "sun4/asm_linkage.h";
1269     files  = "sun4c/asm_linkage.h";
1270     files  = "sun4m/asm_linkage.h";
1271     files  = "sun4c/debug/asm_linkage.h";
1272     files  = "sun4m/debug/asm_linkage.h";
1273     files  = "arm/as_support.h";
1274     files  = "arm/mc_type.h";
1275     files  = "arm/xcb.h";
1276     files  = "dev/chardefmac.h";
1277     files  = "dev/ps_irq.h";
1278     files  = "dev/screen.h";
1279     files  = "dev/scsi.h";
1280     files  = "sys/tty.h";
1281     files  = "Xm.acorn/XmP.h";
1282     files  = bsd43/bsd43_.h;
1283     select = '/\*\*/';
1284     c_fix     = format;
1285     c_fix_arg = '##';
1286     test_text = "#define __CONCAT__(a,b) a/**/b";
1287 };
1288
1289
1290 /*
1291  *  In limits.h, put #ifndefs around things that are supposed to be defined
1292  *  in float.h to avoid redefinition errors if float.h is included first.
1293  *  On HP/UX this patch does not work, because on HP/UX limits.h uses
1294  *  multi line comments and the inserted #endif winds up inside the
1295  *  comment.  Fortunately, HP/UX already uses #ifndefs in limits.h; if
1296  *  we find a #ifndef FLT_MIN we assume that all the required #ifndefs
1297  *  are there, and we do not add them ourselves.
1298  */
1299 fix = {
1300     hackname = limits_ifndefs;
1301     files  = "limits.h";
1302     files  = "sys/limits.h";
1303     bypass = "ifndef[ \t]+FLT_MIN";
1304
1305     c_fix     = format;
1306     c_fix_arg = "#ifndef %1\n%0\n#endif";
1307     c_fix_arg = "^[ \t]*#[ \t]*define[ \t]+"
1308                 "((FLT|DBL)_(MIN|MAX|DIG))[ \t].*";
1309     test_text = " #\tdefine\tDBL_DIG \t 0  /* somthin' */";
1310 };
1311
1312
1313 /*
1314  *  Delete the '#define void int' line from curses.h on Lynx
1315  */
1316 fix = {
1317     hackname  = lynx_void_int;
1318     files     = curses.h;
1319     select    = "#[ \t]*define[ \t]+void[ \t]+int[ \t]*";
1320     c_fix     = format;
1321     c_fix_arg = "";
1322     test_text = "# define\tvoid\tint \t/* curses foiled again */";
1323 };
1324
1325
1326 /*
1327  *  Fix fcntl prototype in fcntl.h on LynxOS.
1328  */
1329 fix = {
1330     hackname  = lynxos_fcntl_proto;
1331     files     = fcntl.h;
1332     select    = "fcntl[ \t]*" '\(int, int, int\)';
1333     c_fix     = format;
1334     c_fix_arg = '%1...)';
1335     c_fix_arg = "(fcntl[ \t]*" '\(int, int, )int\)';
1336     test_text = "extern int fcntl(int, int, int);";
1337 };
1338
1339
1340 /*
1341  *  libm.a on m88k-motorola-sysv3 contains a stupid optimization for
1342  *  function hypot(), which returns the second argument without even
1343  *  looking at its value, if the other is 0.0.
1344  */
1345 fix = {
1346     hackname  = m88k_bad_hypot_opt;
1347     mach      = "m88k-motorola-sysv3*";
1348     files     = "math.h";
1349     select    = "^extern double hypot\\(\\);\n";
1350     c_fix     = format;
1351     c_fix_arg = "%0"
1352           "/* Workaround a stupid Motorola optimization if one\n"
1353           "   of x or y is 0.0 and the other is negative!  */\n"
1354           "#ifdef __STDC__\n"
1355           "static __inline__ double fake_hypot (double x, double y)\n"
1356           "#else\n"
1357           "static __inline__ double fake_hypot (x, y)\n"
1358           "\tdouble x, y;\n"
1359           "#endif\n"
1360           "{\n"
1361           "\treturn fabs (hypot (x, y));\n"
1362           "}\n"
1363           "#define hypot\tfake_hypot\n";
1364     test_text = "extern double hypot();";
1365 };
1366
1367
1368 /*
1369  *  Fix incorrect S_IF* definitions on m88k-sysv3.
1370  */
1371 fix = {
1372     hackname = m88k_bad_s_if;
1373     mach     = "m88k-*-sysv3*";
1374     files    = sys/stat.h;
1375     select   = "#define[ \t]+S_IS[A-Z]+\\(m\\)[ \t]+\\(m[ \t]*&";
1376
1377     c_fix     = format;
1378     c_fix_arg = '#define %1(m) (((m) & S_IFMT) == %2)';
1379     c_fix_arg = "#define[ \t]+(S_IS[A-Z]+)\\(m\\)[ \t]+"
1380                   "\\(m[ \t]*&[ \t]*"
1381                     "(S_IF[A-Z][A-Z][A-Z]+|0[0-9]+)"
1382                   "[ \t]*\\)";
1383     test_text = '#define S_ISREG(m) (m & S_IFREG) /* is regular? */';
1384 };
1385
1386
1387 /*
1388  * Put cpp wrappers around these include files to avoid redeclaration
1389  * errors during multiple inclusion on m88k-tektronix-sysv3.
1390  */
1391 fix = {
1392     hackname = m88k_multi_incl;
1393     mach     = "m88k-tektronix-sysv3*";
1394     files    = "time.h";
1395     bypass   = "#ifndef";
1396     c_fix    = wrap;
1397     test_text = "";
1398 };
1399
1400
1401 /*
1402  * Fix BSD machine/ansi.h to use __builtin_va_list to define _BSD_VA_LIST_.
1403  */
1404 fix = {
1405     hackname = machine_ansi_h_va_list;
1406     files    = machine/ansi.h;
1407     select   = "define[ \t]+_BSD_VA_LIST_[ \t]";
1408     bypass   = '__builtin_va_list';
1409
1410     c_fix     = format;
1411     c_fix_arg = "%1__builtin_va_list";
1412     c_fix_arg = "(define[ \t]+_BSD_VA_LIST_[ \t]+).*";
1413
1414     test_text = " # define _BSD_VA_LIST_\tchar**";
1415 };
1416
1417
1418 /*
1419  *  Fix non-ansi machine name defines
1420  */
1421 fix = {
1422     hackname  = machine_name;
1423     c_test    = machine_name;
1424     c_fix     = machine_name;
1425
1426     test_text = "/* MACH_DIFF: */\n"
1427     "#if defined( i386 ) || defined( sparc ) || defined( vax )"
1428     "\n/* no uniform test, so be careful  :-) */";
1429 };
1430
1431
1432 /*
1433  *  Some math.h files define struct exception, which conflicts with
1434  *  the class exception defined in the C++ file std/stdexcept.h.  We
1435  *  redefine it to __math_exception.  This is not a great fix, but I
1436  *  haven't been able to think of anything better.
1437  *  Note that we have to put the #ifdef/#endif blocks at beginning
1438  *  and end of file, because fixproto runs after us and may insert
1439  *  additional references to struct exception.
1440  */
1441 fix = {
1442     hackname  = math_exception;
1443     files     = math.h;
1444     select    = "struct exception";
1445     bypass    = 'We have a problem when using C\+\+';
1446     c_fix     = wrap;
1447
1448     c_fix_arg = "#ifdef __cplusplus\n"
1449                 "#define exception __math_exception\n"
1450                 "#endif\n";
1451
1452     c_fix_arg = "#ifdef __cplusplus\n"
1453                 "#undef exception\n"
1454                 "#endif\n";
1455
1456     test_text = "typedef struct exception t_math_exception;";
1457 };
1458
1459
1460 /*
1461  *  This looks pretty broken to me.  ``dbl_max_def'' will contain
1462  *  "define DBL_MAX " at the start, when what we really want is just
1463  *  the value portion.  Can't figure out how to write a test case
1464  *  for this either  :-(
1465  */
1466 fix = {
1467     hackname = math_huge_val_from_dbl_max;
1468     files    = math.h;
1469     /*
1470      * IF HUGE_VAL is defined to be DBL_MAX *and* DBL_MAX is _not_ defined
1471      * in math.h, this fix applies.
1472      */
1473     select   = "define[ \t]*HUGE_VAL[ \t]*DBL_MAX";
1474     bypass   = "define[ \t]*DBL_MAX";
1475
1476     shell    =
1477     /*
1478      *  See if we have a definition for DBL_MAX in float.h.
1479      *  If we do, we will replace the one in math.h with that one.
1480      */
1481
1482     "\tdbl_max_def=`egrep 'define[ \t]+DBL_MAX[ \t]+.*' float.h "
1483                 "2>/dev/null`\n\n"
1484
1485     "\tif ( test -n \"${dbl_max_def}\" ) > /dev/null 2>&1\n"
1486     "\tthen sed -e '/define[ \t]*HUGE_VAL[ \t]*DBL_MAX/"
1487                         "s/DBL_MAX/'\"$dbl_max_def/\"\n"
1488     "\telse cat\n"
1489     "\tfi";
1490 };
1491
1492
1493 /*
1494  * In any case, put #ifndef .. #endif around #define HUGE_VAL in math.h.
1495  */
1496 fix = {
1497     hackname = math_huge_val_ifndef;
1498     files    = math.h;
1499     files    = math/math.h;
1500     select   = "define[ \t]+HUGE_VAL";
1501
1502     c_fix     = format;
1503     c_fix_arg = "#ifndef HUGE_VAL\n%0\n#endif";
1504     c_fix_arg = "^[ \t]*#[ \t]*define[ \t]+HUGE_VAL[ \t].*";
1505
1506     test_text = "# define\tHUGE_VAL 3.4e+40";
1507 };
1508
1509
1510 /*
1511  * Fix nested comments in Motorola's <limits.h> and <sys/limits.h>
1512  */
1513 fix = {
1514     hackname = nested_motorola;
1515     mach     = "m68k-motorola-sysv*";
1516     files    = limits.h;
1517     files    = sys/limits.h;
1518     sed = "s@^\\(#undef[ \t][ \t]*PIPE_BUF[ \t]*"
1519                    "/\\* max # bytes atomic in write to a\\)$@\\1 */@";
1520     sed = "s@\\(/\\*#define\tHUGE_VAL\t3.[0-9e+]* \\)"
1521           "\\(/\\*error value returned by Math lib\\*/\\)$@\\1*/ \\2@";
1522 };
1523
1524
1525 /*
1526  * Fixing nested comments in ISC <sys/limits.h>
1527  */
1528 fix = {
1529     hackname = nested_sys_limits;
1530     files  = sys/limits.h;
1531     select = CHILD_MAX;
1532     sed    = "/CHILD_MAX/s,/\\* Max, Max,";
1533     sed    = "/OPEN_MAX/s,/\\* Max, Max,";
1534     test_text = "/*\n#define CHILD_MAX 20 /* Max, Max, ... */ /*\n"
1535                 "#define OPEN_MAX  20 /* Max, Max, ... */\n";
1536 };
1537
1538 /*
1539  *  nested comment
1540  */
1541 fix = {
1542     hackname  = nested_auth_des;
1543     files     = rpc/rpc.h;
1544     select    = '(/\*.*rpc/auth_des\.h>.*)/\*';
1545     c_fix     = format;
1546     c_fix_arg = "%1*/ /*";
1547     test_text = "/*#include <rpc/auth_des.h> /* skip this */";
1548 };
1549
1550
1551 /*
1552  *  fix bogus recursive stdlib.h in NEWS-OS 4.0C
1553  */
1554 fix = {
1555     hackname = news_os_recursion;
1556     files    = stdlib.h;
1557     select   = "[ \t]*#include <stdlib\\.h>.*";
1558
1559     c_fix     = format;
1560     c_fix_arg = "#ifdef BOGUS_RECURSION\n%0\n#endif";
1561     test_text = "#include <stdlib.h>";
1562 };
1563
1564
1565 /*
1566  *  NeXT 3.2 adds const prefix to some math functions.
1567  *  These conflict with the built-in functions.
1568  */
1569 fix = {
1570     hackname  = next_math_prefix;
1571     files     = ansi/math.h;
1572     select    = "^extern[ \t]+double[ \t]+__const__[ \t]";
1573
1574     c_fix     = format;
1575     c_fix_arg = "extern double %1(";
1576     c_fix_arg = "^extern[ \t]+double[ \t]+__const__[ \t]+([a-z]+)\\(";
1577
1578     test_text = "extern\tdouble\t__const__\tmumble();";
1579 };
1580
1581
1582 /*
1583  *  NeXT 3.2 uses the word "template" as a parameter for some
1584  *  functions. GCC reports an invalid use of a reserved key word
1585  *  with the built-in functions.
1586  */
1587 fix = {
1588     hackname = next_template;
1589     files    = bsd/libc.h;
1590     select   = "[ \t]template\\)";
1591
1592     c_fix     = format;
1593     c_fix_arg = "(%1)";
1594     c_fix_arg = "\\(([^)]*)[ \t]template\\)";
1595     test_text = "extern mumble( char * template); /* fix */";
1596 };
1597
1598
1599 /*
1600  *  NeXT 3.2 includes the keyword volatile in the abort() and  exit()
1601  *  function prototypes. That conflicts with the  built-in functions.
1602  */
1603 fix = {
1604     hackname = next_volitile;
1605     files    = ansi/stdlib.h;
1606     select   = "^extern[ \t]+volatile[ \t]+void[ \t]";
1607
1608     c_fix     = format;
1609     c_fix_arg = "extern void %1(";
1610     c_fix_arg = "^extern[ \t]+volatile[ \t]+void[ \t]+(exit|abort)\\(";
1611
1612     test_text = "extern\tvolatile\tvoid\tabort();";
1613 };
1614
1615
1616 /*
1617  *  NeXT 2.0 defines 'int wait(union wait*)', which conflicts with Posix.1.
1618  *  Note that version 3 of the NeXT system has wait.h in a different directory,
1619  *  so that this code won't do anything.  But wait.h in version 3 has a
1620  *  conditional, so it doesn't need this fix.  So everything is okay.
1621  */
1622 fix = {
1623     hackname  = next_wait_union;
1624     files     = sys/wait.h;
1625
1626     select    = 'wait\(union wait';
1627     c_fix     = format;
1628     c_fix_arg = "wait(void";
1629     test_text = "extern pid_d wait(union wait*);";
1630 };
1631
1632
1633 /*
1634  *  a missing semi-colon at the end of the nodeent structure definition.
1635  */
1636 fix = {
1637     hackname  = nodeent_syntax;
1638     files     = netdnet/dnetdb.h;
1639     select    = "char[ \t]*\\*na_addr[ \t]*$";
1640     c_fix     = format;
1641     c_fix_arg = "%0;";
1642     test_text = "char *na_addr\t";
1643 };
1644
1645
1646 /*
1647  *  sys/lc_core.h on some versions of OSF1/4.x pollutes the namespace by
1648  *  defining regex.h related types.  This causes libg++ build and usage
1649  *  failures.  Fixing this correctly requires checking and modifying 3 files.
1650  */
1651 fix = {
1652     hackname = osf_namespace_a;
1653     files    = reg_types.h;
1654     files    = sys/lc_core.h;
1655     test     = " -r reg_types.h";
1656     test     = " -r sys/lc_core.h";
1657     test     = " -n \"`grep '} regex_t;' reg_types.h`\"";
1658     test     = " -z \"`grep __regex_t regex.h`\"";
1659
1660     c_fix     = format;
1661     c_fix_arg = "__%0";
1662     c_fix_arg = "reg(ex|off|match)_t";
1663
1664     test_text = "`touch sys/lc_core.h`"
1665     "typedef struct {\n  int stuff, mo_suff;\n} regex_t;\n"
1666     "extern regex_t    re;\n"
1667     "extern regoff_t   ro;\n"
1668     "extern regmatch_t rm;\n";
1669 };
1670
1671 fix = {
1672     hackname = osf_namespace_c;
1673     files    = regex.h;
1674     test     = " -r reg_types.h";
1675     test     = " -r sys/lc_core.h";
1676     test     = " -n \"`grep '} regex_t;' reg_types.h`\"";
1677     test     = " -z \"`grep __regex_t regex.h`\"";
1678
1679     select    = "#include <reg_types\.h>.*";
1680     c_fix     = format;
1681     c_fix_arg = "%0\n"
1682                 "typedef __regex_t\tregex_t;\n"
1683                 "typedef __regoff_t\tregoff_t;\n"
1684                 "typedef __regmatch_t\tregmatch_t;";
1685
1686     test_text = "#include <reg_types.h>";
1687 };
1688
1689
1690 /*
1691  *  Fix __page_size* declarations in pthread.h AIX 4.1.[34].
1692  *  The original ones fail if uninitialized externs are not common.
1693  *  This is the default for all ANSI standard C++ compilers.
1694  */
1695 fix = {
1696     hackname  = pthread_page_size;
1697     files     = pthread.h;
1698     select    = "^int __page_size";
1699     c_fix     = format;
1700     c_fix_arg = "extern %0";
1701     test_text = "int __page_size;";
1702 };
1703
1704
1705 /*
1706  *  Fix return type of fread and fwrite on sysV68
1707  */
1708 fix = {
1709     hackname = read_ret_type;
1710     files    = stdio.h;
1711     select   = "extern int\t.*, fread\\(\\), fwrite\\(\\)";
1712     c_fix     = format;
1713     c_fix_arg = "extern unsigned int fread(), fwrite();\n%1%2";
1714     c_fix_arg = "(extern int\t.*), fread\\(\\), fwrite\\(\\)(.*)";
1715
1716     test_text = "extern int\tfclose(), fflush(), fread(), fwrite(), foo();";
1717 };
1718
1719
1720 /*
1721  *  function class(double x) conflicts with C++ keyword on rs/6000 
1722  */
1723 fix = {
1724     hackname  = rs6000_double;
1725     files     = math.h;
1726     select    = '[^a-zA-Z_]class\(';
1727
1728     c_fix     = format;
1729     c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
1730     c_fix_arg = '^.*[^a-zA-Z_]class\(.*';
1731
1732     test_text = "extern int class();";
1733 };
1734
1735
1736 /*
1737  *  Wrong fchmod prototype on RS/6000.
1738  */
1739 fix = {
1740     hackname  = rs6000_fchmod;
1741     files     = sys/stat.h;
1742     select    = 'fchmod\(char \*';
1743     c_fix     = format;
1744     c_fix_arg = "fchmod(int";
1745     test_text = "extern int fchmod(char *, mode_t);";
1746 };
1747
1748
1749 /*
1750  *  parameters conflict with C++ new on rs/6000 
1751  */
1752 fix = {
1753     hackname  = rs6000_param;
1754     files     = "stdio.h";
1755     files     = "unistd.h";
1756
1757     select    = 'rename\(const char \*old, const char \*new\)';
1758     c_fix     = format;
1759     c_fix_arg = 'rename(const char *_old, const char *_new)';
1760
1761     test_text = 'extern int rename(const char *old, const char *new);';
1762 };
1763
1764
1765 /*
1766  *  The static functions lstat() and fchmod() in <sys/stat.h> 
1767  *  cause G++ grief since they're not wrapped in "if __cplusplus".
1768  *
1769  *  On SCO OpenServer 5.0.0 through (at least) 5.0.5 <sys/stat.h> contains
1770  *  tiny static wrappers that aren't C++ safe.
1771  */
1772 fix = {
1773     hackname = sco_static_func;
1774     files    = sys/stat.h;
1775     mach     = "i?86-*-sco3.2*";
1776     select   = "^static int";
1777
1778     sed      = "/^static int/i\\\n"
1779                "#if __cplusplus\\\n"
1780                "extern \"C\" {\\\n"
1781                "#endif /* __cplusplus */";
1782
1783     sed      = "/^}$/a\\\n"
1784                "#if __cplusplus\\\n"
1785                " }\\\n"
1786                "#endif /* __cplusplus */";
1787
1788     test_text =
1789     "#ifdef __STDC__\n"
1790     "static int\tstat(const char *__f, struct stat *__p) {\n"
1791     "\treturn __stat32(__f, __p);\n"
1792     "}\n\n#  else /* !__STDC__ */\n"
1793
1794     "static int\tstat(__f, __p)\n"
1795     "\tchar *__f;\n"
1796     "\tstruct stat *__p;\n"
1797     "{\n"
1798     "\treturn __stat32(__f, __p);\n"
1799     "}\n"
1800     "#endif";
1801 };
1802
1803
1804 /*
1805  *  "!__STDC__" is "!defined( __STRICT_ANSI__ )"
1806  */
1807 fix = {
1808     hackname = sco_strict_ansi;
1809     mach     = "i?86-*-sco3.2*";
1810     select   = "^[ \t]*#[ \t]*if.*!__STDC__";
1811
1812     c_fix     = format;
1813     c_fix_arg = "%1defined(__STRICT_ANSI__)%2";
1814     c_fix_arg = "^([ \t]*#[ \t]*if[ \t].*!)__STDC__(.*)";
1815
1816     test_text = "#if !__STDC__ /* not standard C */\nint foo;\n#endif";
1817 };
1818
1819
1820 /*
1821  *  Fix prototype declaration of utime in sys/times.h.
1822  *  In 3.2v4.0 the const is missing.
1823  */
1824 fix = {
1825     hackname  = sco_utime;
1826     files     = sys/times.h;
1827     mach      = "i?86-*-sco3.2v4*";
1828
1829     select    = '\(const char \*, struct utimbuf \*\);';
1830     c_fix     = format;
1831     c_fix_arg = '(const char *, const struct utimbuf *);';
1832
1833     test_text = "extern int utime(const char *, struct utimbuf *);";
1834 };
1835
1836
1837 /*
1838  *  Sony NEWSOS 5.0 does not support the complete ANSI C standard.
1839  */
1840 #ifdef SONY
1841 fix = {
1842     hackname = sony_ctype;
1843     files    = ctype.h;
1844     test     = " -x /bin/sony";
1845     test     = " ! -z \"`if /bin/sony ; then echo true ; fi`\"";
1846     sed      = "s/__ctype/_ctype/g";
1847 };
1848 #endif
1849
1850
1851 /*
1852  *  Incorrect #include in Sony News-OS 3.2.
1853  */
1854 fix = {
1855     hackname = sony_include;
1856     files    = machine/machparam.h;
1857     select   = '"\.\./machine/endian.h"';
1858     sed      = 's@"../machine/endian.h"@<machine/endian.h>@';
1859 };
1860
1861
1862 /*
1863  *  Sony NEWSOS 5.0 does not support the complete ANSI C standard.
1864  */
1865 #ifdef SONY
1866 fix = {
1867     hackname = sony_stdio;
1868     files    = stdio.h;
1869     test     = " -x /bin/sony";
1870     test     = " ! -z \"`if /bin/sony ; then echo true ; fi`\"";
1871     sed      = "s/__filbuf/_filbuf/g\n"
1872                "s/__flsbuf/_flsbuf/g\n"
1873                "s/__iob/_iob/g";
1874 };
1875 #endif
1876
1877
1878 /*
1879  *  Add a `static' declaration of `getrnge' into <regexp.h>.
1880  *
1881  *  Don't do this if there is already a `static void getrnge' declaration
1882  *  present, since this would cause a redeclaration error.  Solaris 2.x has
1883  *  such a declaration.
1884  */
1885 #ifdef SVR4
1886 fix = {
1887     hackname = static_getrnge;
1888     files    = regexp.h;
1889     bypass   = "static void getrnge";
1890     sed      = "/^static int[ \t]*size;/c\\\n"
1891                "static int      size ;\\\n\\\n"
1892                "static int getrnge ();";
1893 };
1894 #endif
1895
1896
1897 /*
1898  *  a missing semi-colon at the end of the statsswtch structure definition.
1899  */
1900 fix = {
1901     hackname  = statsswtch;
1902     files     = rpcsvc/rstat.h;
1903     select    = "boottime$";
1904     c_fix     = format;
1905     c_fix_arg = "boottime;";
1906     test_text = "struct statswtch {\n  int boottime\n};";
1907 };
1908
1909
1910 /*
1911  *  Arrange for stdio.h to use stdarg.h to define __gnuc_va_list.
1912  *  On 4BSD-derived systems, stdio.h defers to machine/ansi.h; that's
1913  *  OK too.
1914  */
1915 fix = {
1916     hackname = stdio_stdarg_h;
1917     files    = stdio.h;
1918     bypass   = "include.*(stdarg\.h|machine/ansi\.h)";
1919
1920     c_fix     = wrap;
1921
1922     c_fix_arg = "#define __need___va_list\n#include <stdarg.h>\n";
1923
1924     test_text = "";
1925 };
1926
1927
1928 /*
1929  *  Don't use or define the name va_list in stdio.h.
1930  *  This is for ANSI and also to interoperate properly with gcc's varargs.h.
1931  *  Note _BSD_VA_LIST_ is dealt with elsewhere.
1932  */
1933 fix = {
1934     hackname = stdio_va_list;
1935     files    = stdio.h;
1936     bypass   = '__gnuc_va_list|_BSD_VA_LIST_';
1937
1938     /*
1939      * Use __gnuc_va_list in arg types in place of va_list.
1940      * On 386BSD use __gnuc_va_list instead of _VA_LIST_.  We're hoping the
1941      * trailing parentheses and semicolon save all other systems from this.
1942      * Define __not_va_list__ (something harmless and unused)
1943      * instead of va_list.
1944      * Don't claim to have defined va_list.
1945      */
1946     sed = "s@ va_list @ __gnuc_va_list @\n"
1947           "s@ va_list)@ __gnuc_va_list)@\n"
1948           "s@ _VA_LIST_));@ __gnuc_va_list));@\n"
1949           "s@ va_list@ __not_va_list__@\n"
1950           "s@\\*va_list@*__not_va_list__@\n"
1951           "s@ __va_list)@ __gnuc_va_list)@\n"
1952           "s@typedef[ \t]\\(.*\\)[ \t]va_list[ \t]*;"
1953            "@typedef \\1 __not_va_list__;@\n"
1954           "s@GNUC_VA_LIST@GNUC_Va_LIST@\n"
1955           "s@_NEED___VA_LIST@_NEED___Va_LIST@\n"
1956           "s@VA_LIST@DUMMY_VA_LIST@\n"
1957           "s@_Va_LIST@_VA_LIST@";
1958 };
1959
1960
1961 /*
1962  *  Check for strict ansi compliance
1963  */
1964 #ifdef STRICT_ANSI
1965 fix = {
1966     hackname = strict_ansi;
1967     select   = "__STDC__[ \t]*[=!]=[ \t]*[01]";
1968     sed      = "s/__STDC__[ \t]*==[ \t]*0/!defined (__STRICT_ANSI__)/g";
1969     sed      = "s/__STDC__[ \t]*!=[ \t]*0/defined (__STRICT_ANSI__)/g";
1970     sed      = "s/__STDC__[ \t]*==[ \t]*1/defined (__STRICT_ANSI__)/g";
1971     sed      = "s/__STDC__[ \t]*!=[ \t]*1/!defined (__STRICT_ANSI__)/g";
1972 };
1973 #endif
1974
1975
1976 /*
1977  *  IRIX 4.0.5 <rpc/xdr.h> uses struct __file_s
1978  *  in prototype without previous definition.
1979  */
1980 fix = {
1981     hackname  = struct_file;
1982     files     = rpc/xdr.h;
1983     select    = '^.*xdrstdio_create.*struct __file_s';
1984     c_fix     = format;
1985     c_fix_arg = "struct __file_s;\n%0";
1986     test_text = "extern void xdrstdio_create( struct __file_s* );";
1987 };
1988
1989
1990 /*
1991  *  IRIX 4.0.5 <rpc/auth.h> uses struct sockaddr
1992  *  in prototype without previous definition.
1993  */
1994 fix = {
1995     hackname  = struct_sockaddr;
1996     files     = rpc/auth.h;
1997     select    = "^.*authdes_create.*struct sockaddr";
1998     bypass    = "<sys/socket\.h>";
1999     c_fix     = format;
2000     c_fix_arg = "struct sockaddr;\n%0";
2001     test_text = "extern AUTH* authdes_create( struct sockaddr* );";
2002 };
2003
2004
2005 /*
2006  *  Apply fix this to all OSs since this problem seems to effect
2007  *  more than just SunOS.
2008  */
2009 fix = {
2010     hackname = sun_auth_proto;
2011     files    = rpc/auth.h;
2012     files    = rpc/clnt.h;
2013     files    = rpc/svc.h;
2014     files    = rpc/xdr.h;
2015     /*
2016      *  Select those files containing '(*name)()'.
2017      */
2018     select    = '\(\*[a-z][a-z_]*\)\(\)';
2019
2020     c_fix     = format;
2021     c_fix_arg = "#ifdef __cplusplus\n%1(...);%2\n"
2022                 "#else\n%1();%2\n#endif";
2023     c_fix_arg = '(.*\(\*[a-z][a-z_]*\))\(\);(.*)';
2024
2025     test_text =
2026     "struct auth_t {\n"
2027     "    int (*name)(); /* C++ bad */\n"
2028     "};";
2029 };
2030
2031
2032 /*
2033  *  Fix bogus #ifdef on SunOS 4.1.
2034  */
2035 fix = {
2036     hackname  = sun_bogus_ifdef;
2037     files     = "hsfs/hsfs_spec.h";
2038     files     = "hsfs/iso_spec.h";
2039     select    = '#ifdef(.*\|\|.*)';
2040     c_fix     = format;
2041     c_fix_arg = "#if%1";
2042
2043     test_text = "#ifdef  __i386__ || __vax__ || __sun4c__";
2044 };
2045
2046
2047 /*
2048  *  Fix the CAT macro in SunOS memvar.h.
2049  */
2050 fix = {
2051     hackname  = sun_catmacro;
2052     files     = pixrect/memvar.h;
2053     select    = "^#define[ \t]+CAT\\(a,b\\).*";
2054     c_fix     = format;
2055
2056     c_fix_arg =
2057     "#ifdef __STDC__\n"
2058     "#  define CAT(a,b) a##b\n"
2059     "#else\n%0\n#endif";
2060
2061     test_text =
2062     "#define CAT(a,b)\ta/**/b";
2063 };
2064
2065
2066 /*
2067  *  Fix return type of free and {c,m,re}alloc in <malloc.h> on SunOS 4.1.
2068  *  Also fix return type of {m,re}alloc in <malloc.h> on sysV68
2069  */
2070 fix = {
2071     hackname = sun_malloc;
2072     files    = malloc.h;
2073
2074     sed   = "s/typedef[ \t]char \\*\tmalloc_t/typedef void \\*\tmalloc_t/g";
2075     sed   = "s/int[ \t][ \t]*free/void\tfree/g";
2076     sed   = "s/char\\([ \t]*\\*[ \t]*malloc\\)/void\\1/g";
2077     sed   = "s/char\\([ \t]*\\*[ \t]*realloc\\)/void\\1/g";
2078     sed   = "s/char\\([ \t]*\\*[ \t]*calloc\\)/void\\1/g";
2079
2080     test_text =
2081     "typedef char *\tmalloc_t;\n"
2082     "int \tfree();\n"
2083     "char*\tmalloc();\n"
2084     "char*\tcalloc();\n"
2085     "char*\trealloc();";
2086 };
2087
2088
2089 /*
2090  *  Check for yet more missing ';' in struct (in SunOS 4.0.x)
2091  */
2092 fix = {
2093     hackname = sun_rusers_semi;
2094     files    = rpcsvc/rusers.h;
2095     select   = "_cnt$";
2096     sed      = "/^struct/,/^};/s/_cnt$/_cnt;/";
2097     test_text = "struct mumble\n  int _cnt\n};";
2098 };
2099
2100
2101 /*
2102  *  signal.h on SunOS defines signal using (),
2103  *  which causes trouble when compiling with g++ -pedantic.
2104  */
2105 fix = {
2106     hackname = sun_signal;
2107     files    = sys/signal.h;
2108     files    = signal.h;
2109     select   = "^void\t" '\(\*signal\(\)\)\(\);.*';
2110
2111     c_fix     = format;
2112     c_fix_arg =
2113           "#ifdef __cplusplus\n"
2114           "void\t(*signal(...))(...);\n"
2115           "#else\n%0\n#endif";
2116
2117     test_text = "void\t(*signal())();";
2118 };
2119
2120
2121 /*
2122  *  math.h on SunOS 4 puts the declaration of matherr before the definition
2123  *  of struct exception, so the prototype (added by fixproto) causes havoc.
2124  */
2125 fix = {
2126     hackname  = sunos_matherr_decl;
2127     files     = math.h;
2128
2129     /*  If matherr has a prototype already, the header needs no fix.  */
2130     bypass    = 'matherr.*struct exception';
2131     select    = matherr;
2132
2133     c_fix     = wrap;
2134     c_fix_arg = "struct exception;\n";
2135
2136     test_text = "extern int matherr();";
2137 };
2138
2139
2140 /*
2141  *  Correct the return type for strlen in strings.h in SunOS 4.
2142  */
2143 fix = {
2144     hackname = sunos_strlen;
2145     files    = strings.h;
2146     select   = "int[ \t]*strlen\\(\\);(.*)";
2147     c_fix     = format;
2148     c_fix_arg = "__SIZE_TYPE__ strlen();%1";
2149     test_text = " int\tstrlen(); /* string length */";
2150 };
2151
2152
2153 /*
2154  *  Solaris math.h and floatingpoint.h define __P without protection,
2155  *  which conflicts with the fixproto definition.  The fixproto
2156  *  definition and the Solaris definition are used the same way.
2157  */
2158 fix = {
2159     hackname = svr4__p;
2160     files    = math.h;
2161     files    = floatingpoint.h;
2162     select   = "^#define[ \t]+__P.*";
2163     c_fix     = format;
2164     c_fix_arg = "#ifndef __P\n%0\n#endif";
2165
2166     test_text = "#define __P(a) a";
2167 };
2168
2169
2170 /*
2171  *  Disable apparent native compiler optimization cruft in SVR4.2 <string.h>
2172  *  that is visible to any ANSI compiler using this include.  Simply
2173  *  delete the lines that #define some string functions to internal forms.
2174  */
2175 #ifdef SVR4
2176 fix = {
2177     hackname = svr4_disable_opt;
2178     files    = string.h;
2179     select   = '#define.*__std_hdr_';
2180     sed      = '/#define.*__std_hdr_/d';
2181 };
2182 #endif
2183
2184
2185 /*
2186  *  Conditionalize some of <sys/endian.h> on __GNUC__ and __GNUG__.
2187  *  On some systems (UnixWare 2, UnixWare 7), the file is byteorder.h
2188  *  but we still "hijack" it and redirect it to the GNU byteorder.h..
2189  *
2190  *
2191  */
2192 #ifdef SVR5
2193 fix = {
2194     hackname = svr4_endian;
2195     files    = sys/endian.h;
2196 #ifdef LATER
2197     /*
2198      * since we emit our own sys/byteorder.h,
2199      * this fix can never be applied to that file.
2200      */
2201     files    = sys/byteorder.h;
2202 #endif
2203     bypass   = '__GNUC__';
2204
2205     sed      = "/#\tifdef\t__STDC__/i\\\n"
2206                "#   if !defined (__GNUC__) && !defined (__GNUG__)\n";
2207
2208     sed      = "/#\t\tinclude\t<sys\\/byteorder.h>/s/\t\t/   /";
2209
2210     sed      = "/#   include\t<sys\\/byteorder.h>/i\\\n"
2211                "#   endif /* !defined (__GNUC__) && !defined (__GNUG__) */\n";
2212 };
2213 #endif /* SVR5 */
2214
2215
2216 /*
2217  *  Remove useless extern keyword from struct forward declarations
2218  *  in <sys/stream.h> and <sys/strsubr.h>
2219  */
2220 #ifdef SVR4
2221 fix = {
2222     hackname = svr4_extern_struct;
2223     files    = sys/stream.h;
2224     files    = sys/strsubr.h;
2225     select   = 'extern struct [a-z_]*;';
2226     sed      = 's/extern struct \([a-z][a-z_]*\)/struct \1/';
2227 };
2228 #endif
2229
2230 /*
2231  *  Fix declarations of `ftw' and `nftw' in <ftw.h>.  On some/most SVR4
2232  *  systems the file <ftw.h> contains extern declarations of these
2233  *  functions followed by explicitly `static' definitions of these
2234  *  functions... and that's not allowed according to ANSI C.  (Note
2235  *  however that on Solaris, this header file glitch has been pre-fixed by
2236  *  Sun.  In the Solaris version of <ftw.h> there are no static
2237  *  definitions of any function so we don't need to do any of this stuff
2238  *  when on Solaris.
2239  */
2240 #ifdef SVR4
2241 #ifndef SOLARIS
2242 fix = {
2243     hackname = svr4_ftw;
2244     files    = ftw.h;
2245     select   = '^extern int ftw\(const';
2246
2247     sed = '/^extern int ftw(const/i' "\\\n"
2248             "#if !defined(_STYPES)\\\n"
2249             "static\\\n"
2250             "#else\\\n"
2251             "extern\\\n"
2252             "#endif";
2253     sed = 's/extern \(int ftw(const.*\)$/\1/';
2254     sed = "/^extern int nftw/i\\\n"
2255             "#if defined(_STYPES)\\\n"
2256             "static\\\n"
2257             "#else\\\n"
2258             "extern\\\n"
2259             "#endif";
2260     sed = 's/extern \(int nftw.*\)$/\1/';
2261     sed = "/^extern int ftw(),/c\\\n"
2262             "#if !defined(_STYPES)\\\n"
2263             "static\\\n"
2264             "#else\\\n"
2265             "extern\\\n"
2266             "#endif\\\n"
2267             "  int ftw();\\\n"
2268             "#if defined(_STYPES)\\\n"
2269             "static\\\n"
2270             "#else\\\n"
2271             "extern\\\n"
2272             "#endif\\\n"
2273             "  int nftw();";
2274 };
2275 #endif
2276 #endif
2277
2278
2279 /*
2280  *   Fix broken decl of getcwd present on some svr4 systems.
2281  */
2282 fix = {
2283     hackname = svr4_getcwd;
2284     files    = stdlib.h;
2285     files    = unistd.h;
2286     files    = prototypes.h;
2287     select   = 'getcwd\(char \*, int\)';
2288
2289     c_fix     = format;
2290     c_fix_arg = "getcwd(char *, size_t)";
2291
2292     test_text = "extern char* getcwd(char *, int);";
2293 };
2294
2295
2296 /*
2297  *  set ifdef _KERNEL
2298  */
2299 #ifdef SVR4
2300 fix = {
2301     hackname = svr4_kernel;
2302     files    = fs/rfs/rf_cache.h;
2303     files    = sys/erec.h;
2304     files    = sys/err.h;
2305     files    = sys/char.h;
2306     files    = sys/getpages.h;
2307     files    = sys/map.h;
2308     files    = sys/cmn_err.h;
2309     files    = sys/kdebugger.h;
2310     bypass   = '_KERNEL';
2311     c_fix     = wrap;
2312
2313     c_fix_arg = "#ifdef _KERNEL\n";
2314     c_fix_arg = "#endif /* _KERNEL */\n";
2315     test_text = "";
2316 };
2317 #endif
2318
2319 /*
2320  *  Delete any #defines of `__i386' which may be present in <ieeefp.h>.  They
2321  *  tend to conflict with the compiler's own definition of this symbol.  (We
2322  *  will use the compiler's definition.)
2323  *  Likewise __sparc, for Solaris, and __i860, and a few others
2324  *  (guessing it is necessary for all of them).
2325  */
2326 #ifdef SVR4
2327 fix = {
2328     hackname = svr4_mach_defines;
2329     files    = ieeefp.h;
2330     select   = "#define[ \t]*__(i386|i860|mips|sparc|m88k|m68k)[ \t]";
2331     sed      = "/#define[ \t]*__\\(i386|i860|mips|sparc|m88k|m68k\\)[ \t]/d";
2332 };
2333 #endif
2334
2335
2336 /*
2337  *  Fix declarations of `makedev', `major', and `minor' in <sys/mkdev.h>.
2338  *  They are declared as non-static then immediately redeclared as static.
2339  */
2340 #ifdef SVR5
2341 fix = {
2342     hackname = svr4_mkdev;
2343     files    = sys/mkdev.h;
2344     select   = '^static';
2345
2346     sed      = "/^dev_t makedev(/s/^/static /";
2347     sed      = "/^major_t major(/s/^/static /";
2348     sed      = "/^minor_t minor(/s/^/static /";
2349 };
2350 #endif /* SVR5 */
2351
2352
2353 /*
2354  *  Fix reference to NC_NPI_RAW in <sys/netcspace.h>.
2355  *  Also fix types of array initializers.
2356  */
2357 #ifdef SVR4
2358 fix = {
2359     hackname = svr4_netcspace;
2360     files    = sys/netcspace.h;
2361     select   = 'NC_NPI_RAW';
2362     sed      = 's/NC_NPI_RAW/NC_TPI_RAW/g';
2363     sed      = 's/NC_/(unsigned long) NC_/';
2364 };
2365 #endif
2366
2367 /*
2368  *  Fix reference to NMSZ in <sys/adv.h>.
2369  */
2370 #ifdef SVR4
2371 fix = {
2372     hackname = svr4_nmsz;
2373     files    = sys/adv.h;
2374     select   = '\[NMSZ\]';
2375     sed      = 's/\[NMSZ\]/\[RFS_NMSZ\]/g';
2376 };
2377 #endif
2378
2379
2380 /*
2381  *   Fix broken decl of profil present on some svr4 systems.
2382  */
2383 fix = {
2384     hackname = svr4_profil;
2385     files    = stdlib.h;
2386     files    = unistd.h;
2387
2388     select    =
2389     'profil\(unsigned short \*, unsigned int, unsigned int, unsigned int\)';
2390     c_fix     = format;
2391     c_fix_arg = 'profil(unsigned short *, size_t, int, unsigned int)';
2392
2393     test_text =
2394     'profil(unsigned short *, unsigned int, unsigned int, unsigned int);';
2395 };
2396
2397
2398 /*
2399  *  Convert functions to prototype form, and fix arg names in <sys/stat.h>.
2400  */
2401 #ifdef SVR4
2402 fix = {
2403     hackname = svr4_proto_form;
2404     files    = sys/stat.h;
2405     select   = 'const extern';
2406
2407     sed      = "/^stat([ \t]*[^c]/ {\nN\nN\n"
2408                    "s/(.*)\\n/( /\n"
2409                    "s/;\\n/, /\n"
2410                    "s/;$/)/\n"  "}";
2411
2412     sed      = "/^lstat([ \t]*[^c]/ {\nN\nN\n"
2413                    "s/(.*)\\n/( /\n"
2414                    "s/;\\n/, /\n"
2415                    "s/;$/)/\n"  "}";
2416
2417     sed      = "/^fstat([ \t]*[^i]/ {\nN\nN\n"
2418                    "s/(.*)\\n/( /\n"
2419                    "s/;\\n/, /\n"
2420                    "s/;$/)/\n"  "}";
2421
2422     sed      = "/^mknod([ \t]*[^c]/{\nN\nN\nN\n"
2423                    "s/(.*)\\n/( /\n"
2424                    "s/;\\n/, /g\n"
2425                    "s/;$/)/\n"  "}";
2426
2427     sed      = "1,$s/\\([^A-Za-z]\\)path\\([^A-Za-z]\\)/\\1__path\\2/g";
2428     sed      = "1,$s/\\([^A-Za-z]\\)buf\\([^A-Za-z]\\)/\\1__buf\\2/g";
2429     sed      = "1,$s/\\([^A-Za-z]\\)fd\\([^A-Za-z]\\)/\\1__fd\\2/g";
2430     sed      = "1,$s/ret\\([^u]\\)/__ret\\1/g";
2431     sed      = "1,$s/\\([^_]\\)mode\\([^_]\\)/\\1__mode\\2/g";
2432     sed      = "1,$s/\\([^_r]\\)dev\\([^_]\\)/\\1__dev\\2/g";
2433 };
2434 #endif
2435
2436 /*
2437  *  Add a prototyped declaration of mmap to <sys/mman.h>.
2438  */
2439 #ifdef SVR4
2440 fix = {
2441     hackname = svr4_proto_mmap;
2442     files    = sys/mman.h;
2443     select   = '^extern caddr_t mmap();$';
2444     sed = '/^extern caddr_t mmap();$/c' "\\\n"
2445           "#ifdef __STDC__\\\n"
2446           "extern caddr_t mmap (caddr_t, size_t, int, int, int, off_t);\\\n"
2447           "#else /* !defined(__STDC__) */\\\n"
2448           "extern caddr_t mmap ();\\\n"
2449           "#endif /* !defined(__STDC__) */\\\n";
2450 };
2451 #endif
2452
2453 /*
2454  *  Add a #define of _SIGACTION_ into <sys/signal.h>.
2455  */
2456 #ifdef SVR4
2457 fix = {
2458     hackname = svr4_sigaction;
2459     files    = sys/signal.h;
2460     sed      = "/^struct sigaction {/i\\\n"
2461                "#define _SIGACTION_";
2462     sed      = 's/(void *(\*)())/(void (*)(int))/';
2463 };
2464 #endif
2465
2466 /*
2467  *  Put storage class at start of decl, to avoid warning.
2468  */
2469 #ifdef SVR4
2470 fix = {
2471     hackname = svr4_storage_class;
2472     files    = rpc/types.h;
2473     select   = 'const extern';
2474     sed      = 's/const extern/extern const/g';
2475 };
2476 #endif
2477
2478
2479 /* 
2480  *  Like svr4_mach_defines, but with newfangled syntax.
2481  *  Source lines are of #define __i386 #machine(i386).   Delete them.
2482  */
2483 #ifdef SVR5
2484 fix = {
2485     hackname = svr5_mach_defines;
2486     files    = ieeefp.h;
2487     select   = "#define[ \t]*__i386.*\(i386\)";
2488     sed      = "/#define[ \t]*__i386.*/d";
2489 };
2490 #endif /*  SVR5 */
2491
2492
2493 /*
2494  * Fix these files to use the same types that we think they should.
2495  * XXX - extremely dubious changes here.
2496  */
2497 fix = {
2498     hackname = systypes;
2499     files  = "sys/types.h";
2500     files  = "stdlib.h";
2501     files  = "sys/stdtypes.h";
2502     files  = "stddef.h";
2503     files  = "memory.h";
2504     files  = "unistd.h";
2505     select = "typedef[ \t]+[a-z_][ \ta-z_]*[ \t]"
2506              "(size|ptrdiff|wchar)_t";
2507
2508       sed  = "/^[ \t]*\\*[ \t]*typedef unsigned int size_t;/N";
2509
2510       sed  = "s/^\\([ \t]*\\*[ \t]*typedef unsigned int size_t;\\n"
2511                "[ \t]*\\*\\/\\)/\\1\\\n"
2512              "#ifndef __SIZE_TYPE__\\\n"
2513              "#define __SIZE_TYPE__ long unsigned int\\\n"
2514              "#endif\\\n"
2515              "typedef __SIZE_TYPE__ size_t;\\\n/";
2516
2517       sed  = "/typedef[ \t][ \t]*[a-z_][ \ta-z_]*[ \t]size_t/i\\\n"
2518                    "#ifndef __SIZE_TYPE__\\\n"
2519                    "#define __SIZE_TYPE__ long unsigned int\\\n"
2520                    "#endif\n";
2521
2522       sed  = "s/typedef[ \t][ \t]*[a-z_][ \ta-z_]*[ \t]size_t/"
2523                "typedef __SIZE_TYPE__ size_t/";
2524
2525       sed  = "/typedef[ \t][ \t]*[a-z_][ \ta-z_]*[ \t]ptrdiff_t/i\\\n"
2526                    "#ifndef __PTRDIFF_TYPE__\\\n"
2527                    "#define __PTRDIFF_TYPE__ long int\\\n"
2528                    "#endif\n";
2529
2530       sed  = "s/typedef[ \t][ \t]*[a-z_][ \ta-z_]*[ \t]ptrdiff_t/"
2531                "typedef __PTRDIFF_TYPE__ ptrdiff_t/";
2532
2533       sed  = "/typedef[ \t][ \t]*[a-z_][ \ta-z_]*[ \t]wchar_t/i\\\n"
2534                    "#ifndef __WCHAR_TYPE__\\\n"
2535                    "#define __WCHAR_TYPE__ int\\\n"
2536                    "#endif\\\n"
2537                    "#ifndef __cplusplus\n";
2538
2539       sed  = "/typedef[ \t][ \t]*[a-z_][ \ta-z_]*[ \t]wchar_t/a\\\n"
2540                    "#endif\n";
2541
2542       sed  = "s/typedef[ \t][ \t]*[a-z_][ \ta-z_]*[ \t]wchar_t/"
2543                "typedef __WCHAR_TYPE__ wchar_t/";
2544 };
2545
2546
2547 /*
2548  * Fix files that may contain a stray definition of size_t.  Take care
2549  * not to match ssize_t or mere uses of size_t.
2550  */
2551 fix = {
2552     hackname = systypes_stdlib_size_t;
2553     files    = sys/types.h;
2554     files    = stdlib.h;
2555     select   = "typedef[ \t]+[A-Za-z_][ \tA-Za-z_]*[ \t]size_t.*";
2556     bypass   = "_(GCC|BSD)_SIZE_T";
2557
2558     c_fix     = format;
2559     c_fix_arg =
2560     "#ifndef _GCC_SIZE_T\n"
2561     "#define _GCC_SIZE_T\n%0\n#endif";
2562
2563     test_text = "typedef unsigned int size_t; /* size of something */";
2564 };
2565
2566
2567 /*
2568  *  Fix return value of mem{ccpy,chr,cpy,set} and str{len,spn,cspn}
2569  *  in string.h on sysV68
2570  *  Correct the return type for strlen in string.h on Lynx.
2571  *  Correct the argument type for ffs in string.h on Alpha OSF/1 V2.0.
2572  *  Add missing const for strdup on OSF/1 V3.0.
2573  *  On sysV88 layout is slightly different.
2574  */
2575 fix = {
2576     hackname = sysv68_string;
2577     files    = string.h;
2578
2579     sed = "s/extern[ \t]*int[ \t]*strlen();/extern unsigned int strlen();/";
2580     sed = "s/extern[ \t]*int[ \t]*ffs[ \t]*(long);/extern int ffs(int);/";
2581     sed = "s/strdup(char \\*s1);/strdup(const char *s1);/";
2582     sed = "/^extern char$/N";
2583     sed = "s/^extern char\\(\\n\t\\*memccpy(),\\)$/extern void\\1/";
2584     sed = "/^\tstrncmp(),$/N";
2585     sed = "s/^\\(\tstrncmp()\\),\\n\\(\tstrlen(),\\)$/\\1;\\\n"
2586           "extern unsigned int\\\n\\2/";
2587     sed = "/^extern int$/N";
2588     sed = "s/^extern int\\(\\n\tstrlen(),\\)/extern size_t\\1/";
2589 };
2590
2591
2592 /*
2593  *  Fix return type of calloc, malloc, realloc, bsearch and exit
2594  */
2595 fix = {
2596     hackname = sysz_stdlib_for_sun;
2597     files    = stdlib.h;
2598
2599     select    = "char[ \t]*\\*[ \t]*(calloc|malloc|realloc|bsearch)[ \t]*\\(";
2600     c_fix     = format;
2601     c_fix_arg = "void *\t%1(";
2602
2603     test_text =
2604     "extern char*\tcalloc(size_t);\n"
2605     "extern char*\tmalloc(size_t);\n"
2606     "extern char*\trealloc(void*,size_t);\n"
2607     "extern char*\tbsearch(void*,size_t,size_t);\n";
2608 };
2609
2610
2611 /*
2612  *  Fix this Sun file to avoid interfering with stddef.h.
2613  *  We use a funny name to ensure it follows 'systypes' fix.
2614  */
2615 fix = {
2616     hackname = sysz_stdtypes_for_sun;
2617     files = sys/stdtypes.h;
2618     sed   = "/[\t ]size_t.*;/i\\\n"
2619               "#ifndef _GCC_SIZE_T\\\n"
2620               "#define _GCC_SIZE_T\n";
2621
2622     sed   = "/[\t ]size_t.*;/a\\\n"
2623               "#endif\n";
2624
2625     sed   = "/[\t ]ptrdiff_t.*;/i\\\n"
2626               "#ifndef _GCC_PTRDIFF_T\\\n"
2627               "#define _GCC_PTRDIFF_T\n";
2628
2629     sed   = "/[\t ]ptrdiff_t.*;/a\\\n"
2630               "#endif\n";
2631
2632     sed   = "/[\t ]wchar_t.*;/i\\\n"
2633               "#ifndef _GCC_WCHAR_T\\\n"
2634               "#define _GCC_WCHAR_T\n";
2635
2636     sed   = "/[\t ]wchar_t.*;/a\\\n"
2637               "#endif\n";
2638
2639     test_text = "typedef int size_t; /* ??? */\n"
2640      "typedef int ptrdiff_t; /* result of subtracting two pointers */\n"
2641      "typedef unsigned short wchar_t; /* big enough for biggest char set */\n";
2642 };
2643
2644
2645 /*
2646  *  if the #if says _cplusplus, not the double underscore __cplusplus
2647  *  that it should be
2648  */
2649 fix = {
2650     hackname = tinfo_cplusplus;
2651     files    = tinfo.h;
2652     select   = "[ \t]_cplusplus";
2653
2654     c_fix     = format;
2655     c_fix_arg = " __cplusplus";
2656     test_text = "#ifdef _cplusplus\nint bogus;\n#endif";
2657 };
2658
2659
2660 /*
2661  *  parameter to atof not const on DECstation Ultrix V4.0 and NEWS-OS 4.2R.
2662  */
2663 fix = {
2664     hackname = ultrix_atof_param;
2665     files    = math.h;
2666     select   = "atof\\([ \t]*char";
2667
2668     c_fix     = format;
2669     c_fix_arg = "atof(const char";
2670
2671     test_text = "extern double atof( char *__nptr);\n";
2672 };
2673
2674
2675 /*
2676  *  parameters not const on DECstation Ultrix V4.0 and OSF/1.
2677  */
2678 fix = {
2679     hackname  = ultrix_const;
2680     files     = stdio.h;
2681     select    = 'perror\( char \*';
2682
2683     c_fix     = format;
2684     c_fix_arg = "%1 const %3 *__";
2685     c_fix_arg = "([ \t*](perror|fputs|fwrite|scanf|fscanf)\\(.*)"
2686                 "[ \t]+(char|void) \\*__";
2687
2688     test_text =
2689     "extern void perror( char *__s );\n"
2690     "extern int fputs( char *__s, FILE *);\n"
2691     "extern size_t fwrite( void *__ptr, size_t, size_t, FILE *);\n"
2692     "extern int fscanf( FILE *__stream, char *__format, ...);\n"
2693     "extern int scanf( char *__format, ...);\n";
2694 };
2695
2696
2697 /*
2698  *  parameters not const on DECstation Ultrix V4.0 and OSF/1.
2699  */
2700 fix = {
2701     hackname  = ultrix_const2;
2702     files     = stdio.h;
2703
2704     select    = '\*fopen\( char \*';
2705     c_fix     = format;
2706     c_fix_arg = "%1( const char *%3, const char *";
2707     c_fix_arg = "([ \t*](fopen|sscanf|popen|tempnam))\\("
2708                "[ \t]*char[ \t]*\\*([^,]*),"
2709                "[ \t]*char[ \t]*\\*[ \t]*";
2710
2711     test_text =
2712     "extern FILE *fopen( char *__filename, char *__type );\n"
2713     "extern int sscanf( char *__s, char *__format, ...);\n"
2714     "extern FILE *popen(char *, char *);\n"
2715     "extern char *tempnam(char*,char*);\n";
2716 };
2717
2718
2719 /*
2720  * Ultrix V4.[35] puts the declaration of uname before the definition
2721  * of struct utsname, so the prototype (added by fixproto) causes havoc.
2722  */
2723 fix = {
2724     hackname = ultrix_fix_fixproto;
2725     files    = sys/utsname.h;
2726     select   = ULTRIX;
2727
2728     c_fix     = format;
2729     c_fix_arg = "struct utsname;\n%0";
2730     c_fix_arg = "^[ \t]*extern[ \t]*int[ \t]*uname\\(\\);"
2731
2732     test_text =
2733     "/* ULTRIX's uname */\nextern\tint\tuname();";
2734 };
2735
2736
2737 /*
2738  *  Check for bad #ifdef line (in Ultrix 4.1)
2739  */
2740 fix = {
2741     hackname = ultrix_ifdef;
2742     select   = "^#ifdef KERNEL[ \t]+&&";
2743     files    = sys/file.h;
2744
2745     c_fix     = format;
2746     c_fix_arg = "#if defined(KERNEL) &&";
2747
2748     test_text =
2749     "#ifdef KERNEL\t&& defined( mumbojumbo )\nint oops;\n#endif";
2750 };
2751
2752
2753 /*
2754  * Strip "|| CC$gfloat" from Ultrix math headers.
2755  */
2756 fix = {
2757     hackname = ultrix_math_ifdef;
2758     files = float.h;
2759     files = math.h;
2760     files = sys/limits.h;
2761     select = "^#if.*\\|\\|[ \t]+CC\\$[a-z]+";
2762     sed = "/^#if/s/||[ \t][ \t]*CC$[a-z][a-z]*//";
2763     test_text = '#if     defined(__GFLOAT) || CC\$gfloat';
2764 };
2765
2766
2767 /*
2768  *  Avoid nested comments on Ultrix 4.3.
2769  */
2770 fix = {
2771     hackname = ultrix_nested_ioctl;
2772     files    = sys/ioctl.h;
2773     select   = "^/\\* #define SIOCSCREEN";
2774     sed      = "/^\\/\\* #define SIOCSCREEN/s@/\\* screend@*//* screend@";
2775     test_text =
2776     "/* #define SIOCSCREENON _IOWR('i', 49, int)"
2777     "/* screend, net/gw_screen.h */\n";
2778 };
2779
2780
2781 fix = {
2782     hackname = ultrix_nested_svc;
2783     files    = rpc/svc.h;
2784     select   = "^ \\*[ \t]*int protocol;  */\\*";
2785     sed      = "s@^\\( \\*\tint protocol;  \\)/\\*@\\1*/ /*@";
2786     test_text =
2787     " *\tint protocol;  /* like TCP or UDP\n";
2788 };
2789
2790
2791 /*
2792  *  Add missing prototype for lstat and define for S_ISLNK
2793  *  in Ultrix V4.3 sys/stat.h.
2794  */
2795 fix = {
2796     hackname = ultrix_stat;
2797     files  = sys/stat.h;
2798     select = "@\\(#\\)stat\\.h.*6\\.1.*\\(ULTRIX\\)";
2799     sed    = "/^#define[ \t]S_IFPORT[ \t]*S_IFIFO$/a\\\n"
2800                 "\\\n"
2801                 "/* macro to test for symbolic link */\\\n"
2802                 "#define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)\\\n"
2803                 "\n";
2804     sed    = "/^[ \t]*fstat(),$/a\\\n"
2805                 "\tlstat(),\n";
2806     test_text =
2807     "@(#)stat.h      6.1     (ULTRIX)\n"
2808     "#define S_IFPORT S_IFIFO\n"
2809     "\tfstat(),\n";
2810 };
2811
2812
2813 /*
2814  *  Check for superfluous `static' (in Ultrix 4.2)
2815  *  On Ultrix 4.3, includes of other files (r3_cpu.h,r4_cpu.h) is broken.
2816  */
2817 fix = {
2818     hackname = ultrix_static;
2819     files  = machine/cpu.h;
2820     select = '#include "r[34]_cpu';
2821     sed    = "s/^static struct tlb_pid_state/struct tlb_pid_state/";
2822     sed    = 's/^#include "r3_cpu\.h"$/#include <machine\/r3_cpu\.h>/';
2823     sed    = 's/^#include "r4_cpu\.h"$/#include <machine\/r4_cpu\.h>/';
2824     test_text =
2825     "static struct tlb_pid_state {\n"
2826     "#include \"r3_cpu.h\"\n";
2827 };
2828
2829
2830 /*
2831  *  Add once-only latch to Ultrix V4.3 strings.h.
2832  */
2833 fix = {
2834     hackname = ultrix_strings;
2835     files  = strings.h;
2836     select = "@\\(#\\)strings\\.h.*6\\.1.*\\(ULTRIX\\)";
2837     c_fix  = wrap;
2838     test_text =
2839     "@(#)strings.h   6.1     (ULTRIX)\n";
2840 };
2841
2842
2843 /*
2844  *  Fix multiple defines for NULL.  Sometimes, we stumble into \r\n
2845  *  terminated lines, so accommodate these.  Test both ways.
2846  */
2847 fix = {
2848     hackname  = undefine_null;
2849     select    = "^#[ \t]*define[ \t]+NULL[ \t]";
2850     bypass    = "#[ \t]*(ifn|un)def[ \t]+NULL($|[ \t\r])";
2851
2852     c_fix     = format;
2853     c_fix_arg = "#ifndef NULL%2\n#define NULL%1%2\n#endif%2\n";
2854     c_fix_arg = "^#[ \t]*define[ \t]*[ \t]NULL([^\r\n]+)([\r]*)\n";
2855
2856     test_text = "#define NULL 0UL\r\n#define NULL\t((void*)0)\n";
2857 };
2858
2859
2860 /*
2861  * If arpa/inet.h prototypes are incompatible with the ones we just
2862  * installed in <sys/byteorder.h>, just remove the protos.
2863  * Because of this close association, this patch must be applied only
2864  * on those systems where the replacement byteorder header is installed.
2865  */
2866 fix = {
2867     hackname = unixware7_byteorder_fix;
2868     files    = arpa/inet.h;
2869     select   = "in_port_t";
2870 #ifndef SVR5
2871         mach = "*-*-sysv4*";
2872         mach = "i?86-*-sysv5*";
2873         mach = "i?86-*-udk*";
2874         mach = "i?86-*-solaris2.[0-4]";
2875         mach = "powerpcle-*-solaris2.[0-4]";
2876         mach = "sparc-*-solaris2.[0-4]";
2877 #endif /* SVR5 */
2878     sed      =  '/^extern.*htons.*(in_port_t)/d';
2879     sed      =  '/^extern.*ntohs.*(in_port_t)/d';
2880 };
2881
2882
2883 /*
2884  *  Fix definitions of macros used by va-i960.h in VxWorks header file.
2885  */
2886 fix = {
2887     hackname  = va_i960_macro;
2888     files     = arch/i960/archI960.h;
2889     select    = "__(vsiz|vali|vpad|alignof__)";
2890
2891     c_fix     = format;
2892     c_fix_arg = "__vx%1";
2893
2894     test_text =
2895     "extern int __vsiz vsiz;\n"
2896     "extern int __vali vali;\n"
2897     "extern int __vpad vpad;\n"
2898     "#define __alignof__(x) ...";
2899 };
2900
2901
2902 /*
2903  *  AIX headers define NULL to be cast to a void pointer,
2904  *  which is illegal in ANSI C++.
2905  */
2906 fix = {
2907     hackname  = void_null;
2908     files     = curses.h;
2909     files     = dbm.h;
2910     files     = locale.h;
2911     files     = stdio.h;
2912     files     = stdlib.h;
2913     files     = string.h;
2914     files     = time.h;
2915     files     = unistd.h;
2916     files     = sys/dir.h;
2917     files     = sys/param.h;
2918     files     = sys/types.h;
2919     select    = "^#[ \t]*define[ \t]+NULL[ \t]+\\(\\(void[ \t]*\\*\\)0\\)";
2920     c_fix     = format;
2921     c_fix_arg = "#define NULL 0";
2922     test_text = "# define\tNULL \t((void *)0)  /* typed NULL */";
2923 };
2924
2925
2926 /*
2927  *  Make VxWorks header which is almost gcc ready fully gcc ready.
2928  */
2929 fix = {
2930     hackname = vxworks_gcc_problem;
2931     files    = types/vxTypesBase.h;
2932     select   = "__GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__";
2933
2934     sed = "s/#ifdef __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__/"
2935           "#if 1/";
2936
2937     sed = "/[ \t]size_t/i\\\n"
2938         "#ifndef _GCC_SIZE_T\\\n"
2939         "#define _GCC_SIZE_T\n";
2940
2941     sed = "/[ \t]size_t/a\\\n"
2942         "#endif\n";
2943
2944     sed = "/[ \t]ptrdiff_t/i\\\n"
2945         "#ifndef _GCC_PTRDIFF_T\\\n"
2946         "#define _GCC_PTRDIFF_T\n";
2947
2948     sed = "/[ \t]ptrdiff_t/a\\\n"
2949         "#endif\n";
2950
2951     sed = "/[ \t]wchar_t/i\\\n"
2952         "#ifndef _GCC_WCHAR_T\\\n"
2953         "#define _GCC_WCHAR_T\n";
2954
2955     sed = "/[ \t]wchar_t/a\\\n"
2956         "#endif\n";
2957
2958     test_text =
2959     "#ifdef __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__\n"
2960     "typedef unsigned int size_t;\n"
2961     "typedef long ptrdiff_t;\n"
2962     "typedef unsigned short wchar_t;\n"
2963     "#endif /* __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__ */\n";
2964 };
2965
2966
2967 /*
2968  *  Fix VxWorks <time.h> to not require including <vxTypes.h>.
2969  */
2970 fix = {
2971     hackname  = vxworks_needs_vxtypes;
2972     files     = time.h;
2973     select    = "uint_t([ \t]+_clocks_per_sec)";
2974     c_fix     = format;
2975     c_fix_arg = "unsigned int%1";
2976     test_text = "uint_t\t_clocks_per_sec;";
2977 };
2978
2979
2980 /*
2981  *  Fix VxWorks <sys/stat.h> to not require including <vxWorks.h>.
2982  */
2983 fix = {
2984     hackname = vxworks_needs_vxworks;
2985     files    = sys/stat.h;
2986     test     = " -r types/vxTypesOld.h";
2987     test     = " -n \"`egrep '#include' $file`\"";
2988     test     = " -n \"`egrep ULONG $file`\"";
2989     select   = "#[ \t]define[ \t]+__INCstath";
2990
2991     sed = "/#[ \t]define[ \t][ \t]*__INCstath/a\\\n"
2992           "#include <types/vxTypesOld.h>\n";
2993
2994     test_text = "`touch types/vxTypesOld.h`"
2995     "#include </dev/null> /* ULONG */\n"
2996     "# define\t__INCstath <sys/stat.h>";
2997 };
2998
2999
3000 /*
3001  *  Another bad dependency in VxWorks 5.2 <time.h>.
3002  */
3003 fix = {
3004     hackname = vxworks_time;
3005     files    = time.h;
3006     test     = " -r vxWorks.h";
3007
3008     select    = "#[ \t]*define[ \t]+VOIDFUNCPTR[ \t].*";
3009     c_fix     = format;
3010
3011     c_fix_arg =
3012     "#ifndef __gcc_VOIDFUNCPTR_defined\n"
3013     "#ifdef __cplusplus\n"
3014     "typedef void (*__gcc_VOIDFUNCPTR) (...);\n"
3015     "#else\n"
3016     "typedef void (*__gcc_VOIDFUNCPTR) ();\n"
3017     "#endif\n"
3018     "#define __gcc_VOIDFUNCPTR_defined\n"
3019     "#endif\n"
3020     "#define VOIDFUNCPTR __gcc_VOIDFUNCPTR";
3021
3022     test_text = "`touch vxWorks.h`"
3023                 "#define VOIDFUNCPTR (void(*)())";
3024 };
3025
3026
3027 /*
3028  *  There are several name conflicts with C++ reserved words in X11 header
3029  *  files.  These are fixed in some versions, so don't do the fixes if
3030  *  we find __cplusplus in the file.  These were found on the RS/6000.
3031  */
3032 fix = {
3033     hackname = x11_class;
3034     files    = X11/ShellP.h;
3035     bypass   = __cplusplus;
3036     sed      = "/char \\*class;/i\\\n"
3037                    "#ifdef __cplusplus\\\n"
3038                    "\tchar *c_class;\\\n"
3039                    "#else\n";
3040     sed      = "/char \\*class;/a\\\n"
3041                    "#endif\n";
3042     test_text =
3043     "struct {\n"
3044     "   char *class;\n"
3045     "} mumble;\n";
3046 };
3047
3048
3049 /*
3050  *  class in Xm/BaseClassI.h
3051  */
3052 fix = {
3053     hackname = x11_class_usage;
3054     files    = Xm/BaseClassI.h;
3055     bypass   = "__cplusplus";
3056
3057     select    = " class\\)";
3058     c_fix     = format;
3059     c_fix_arg = " c_class)";
3060
3061     test_text = "extern mumble (int  class);\n";
3062 };
3063
3064
3065 /*
3066  *  new in Xm/Traversal.h
3067  */
3068 fix = {
3069     hackname = x11_new;
3070     files    = Xm/Traversal.h;
3071     bypass   = __cplusplus;
3072
3073     sed      = "/Widget\told, new;/i\\\n"
3074                    "#ifdef __cplusplus\\\n"
3075                    "\tWidget\told, c_new;\\\n"
3076                    "#else\n";
3077
3078     sed      = "/Widget\told, new;/a\\\n"
3079                    "#endif\n";
3080
3081     sed      = "s/Widget new,/Widget c_new,/g";
3082     test_text =
3083     "struct wedge {\n"
3084     "   Widget\told, new; /* fix the new */\n"
3085     "};\nextern Wedged( Widget new, Widget old );";
3086 };
3087
3088
3089 /*
3090  *  Incorrect sprintf declaration in X11/Xmu.h
3091  */
3092 fix = {
3093     hackname = x11_sprintf;
3094     files    = X11/Xmu.h;
3095     files    = X11/Xmu/Xmu.h;
3096     select   = "^extern char \\*\tsprintf\\(\\);$";
3097
3098     c_fix     = format;
3099     c_fix_arg = "#ifndef __STDC__\n%0\n#endif /* !defined __STDC__ */";
3100
3101     test_text = "extern char *\tsprintf();";
3102 };
3103
3104 /*EOF*/