OSDN Git Service

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