OSDN Git Service

* fixinc/inclhack.def (solaris_widec): Include <wchar.h> in
[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  * <widec.h> until Solaris 2.5.1 defines macros for a couple of <wchar.h>
2097  * functions, breaking their prototypes if that file is included afterwards.
2098  * Include <wchar.h> early to avoid this issue, as is done on Solaris 2.6
2099  * and up.
2100  */
2101 fix = {
2102     hackname  = solaris_widec;
2103     files     = widec.h;
2104     mach      = '*-*-solaris2.[0-5]*';
2105     bypass    = "include.*wchar\\.h";
2106     select    = "#include <euc.h>";
2107     c_fix     = format;
2108     c_fix_arg = "%0\n#include <wchar.h>";
2109     test_text = "#include <euc.h>";
2110 };
2111
2112 /*
2113  *  Sony NEWSOS 5.0 does not support the complete ANSI C standard.
2114  */
2115 #ifdef SONY
2116 fix = {
2117     hackname = sony_ctype;
2118     files    = ctype.h;
2119     test     = " -x /bin/sony";
2120     test     = " ! -z \"`if /bin/sony ; then echo true ; fi`\"";
2121     sed      = "s/__ctype/_ctype/g";
2122 };
2123 #endif
2124
2125
2126 /*
2127  *  Sony NEWSOS 5.0 does not support the complete ANSI C standard.
2128  */
2129 #ifdef SONY
2130 fix = {
2131     hackname = sony_stdio;
2132     files    = stdio.h;
2133     test     = " -x /bin/sony";
2134     test     = " ! -z \"`if /bin/sony ; then echo true ; fi`\"";
2135     sed      = "s/__filbuf/_filbuf/g\n"
2136                "s/__flsbuf/_flsbuf/g\n"
2137                "s/__iob/_iob/g";
2138 };
2139 #endif
2140
2141
2142 /*
2143  *  Add a `static' declaration of `getrnge' into <regexp.h>.
2144  *
2145  *  Don't do this if there is already a `static void getrnge' declaration
2146  *  present, since this would cause a redeclaration error.  Solaris 2.x has
2147  *  such a declaration.
2148  */
2149 #ifdef SVR4
2150 fix = {
2151     hackname = static_getrnge;
2152     files    = regexp.h;
2153     bypass   = "static void getrnge";
2154     sed      = "/^static int[ \t]*size;/c\\\n"
2155                "static int      size ;\\\n\\\n"
2156                "static int getrnge ();";
2157 };
2158 #endif
2159
2160
2161 /*
2162  *  a missing semi-colon at the end of the statsswtch structure definition.
2163  */
2164 fix = {
2165     hackname  = statsswtch;
2166     files     = rpcsvc/rstat.h;
2167     select    = "boottime$";
2168     c_fix     = format;
2169     c_fix_arg = "boottime;";
2170     test_text = "struct statswtch {\n  int boottime\n};";
2171 };
2172
2173
2174 /*
2175  *  Arrange for stdio.h to use stdarg.h to define __gnuc_va_list.
2176  *  On 4BSD-derived systems, stdio.h defers to machine/ansi.h; that's
2177  *  OK too.
2178  */
2179 fix = {
2180     hackname = stdio_stdarg_h;
2181     files    = stdio.h;
2182     bypass   = "include.*(stdarg\.h|machine/ansi\.h)";
2183
2184     c_fix     = wrap;
2185
2186     c_fix_arg = "#define __need___va_list\n#include <stdarg.h>\n";
2187
2188     test_text = "";
2189 };
2190
2191
2192 /*
2193  *  Don't use or define the name va_list in stdio.h.
2194  *  This is for ANSI and also to interoperate properly with gcc's varargs.h.
2195  *  Note _BSD_VA_LIST_ is dealt with elsewhere.
2196  */
2197 fix = {
2198     hackname = stdio_va_list;
2199     files    = stdio.h;
2200     bypass   = '__gnuc_va_list|_BSD_VA_LIST_|__DJ_va_list';
2201
2202     /*
2203      * Use __gnuc_va_list in arg types in place of va_list.
2204      * On 386BSD use __gnuc_va_list instead of _VA_LIST_.  On Tru64 UNIX V5.1A
2205      * use __gnuc_va_list instead of __VA_LIST__.  We're hoping the
2206      * trailing parentheses and semicolon save all other systems from this.
2207      * Define __not_va_list__ (something harmless and unused)
2208      * instead of va_list.
2209      * Don't claim to have defined va_list.
2210      */
2211     sed = "s@ va_list @ __gnuc_va_list @\n"
2212           "s@ va_list)@ __gnuc_va_list)@\n"
2213           "s@ _VA_LIST_));@ __gnuc_va_list));@\n"
2214           "s@ __VA_LIST__));@ __gnuc_va_list));@\n"
2215           "s@ va_list@ __not_va_list__@\n"
2216           "s@\\*va_list@*__not_va_list__@\n"
2217           "s@ __va_list)@ __gnuc_va_list)@\n"
2218           "s@typedef[ \t]\\(.*\\)[ \t]va_list[ \t]*;"
2219            "@typedef \\1 __not_va_list__;@\n"
2220           "s@GNUC_VA_LIST@GNUC_Va_LIST@\n"
2221           "s@_NEED___VA_LIST@_NEED___Va_LIST@\n"
2222           "s@VA_LIST@DUMMY_VA_LIST@\n"
2223           "s@_Va_LIST@_VA_LIST@";
2224     test_text = "extern void mumble( va_list);";
2225 };
2226
2227
2228 /*
2229  *  "!__STDC__" or "__STDC__==0" or "__STDC__!=1" or "__STDC__-0==0"
2230  *  is "!defined( __STRICT_ANSI__ )"
2231  */
2232 fix = {
2233     hackname = strict_ansi_not;
2234     select   = "^([ \t]*#[ \t]*if.*)"
2235                "(!__STDC__"
2236                "|__STDC__[ \t]*==[ \t]*0"
2237                "|__STDC__[ \t]*!=[ \t]*1"
2238                "|__STDC__[ \t]*-[ \t]*0[ \t]*==[ \t]*0)";
2239     /* Tru64 UNIX V4.0F/V5.1 <standards.h> supports GCC usage of __STDC__. */
2240     bypass = 'GNU and MIPS C compilers define __STDC__ differently';
2241     c_test   = stdc_0_in_system_headers;
2242
2243     c_fix     = format;
2244     c_fix_arg = "%1 !defined(__STRICT_ANSI__)";
2245
2246     test_text = "#if !__STDC__ \n"
2247                 "#if __STDC__ == 0\n"
2248                 "#if __STDC__ != 1\n"
2249                 "#if __STDC__ - 0 == 0"
2250                "/* not std C */\nint foo;\n"
2251                "\n#end-end-end-end-if :-)";
2252 };
2253
2254 /*
2255  *  "__STDC__-0==0"
2256  *  is "!defined( __STRICT_ANSI__ )" on continued #if-s
2257  */
2258 fix = {
2259     hackname = strict_ansi_not_ctd;
2260     files    = math.h, limits.h, stdio.h, signal.h,
2261                stdlib.h, sys/signal.h, time.h;
2262     /*
2263      * Starting at the beginning of a line, skip white space and
2264      * a leading "(" or "&&" or "||".  One of those must be found.
2265      * Then, zero, one or more copies of a "defined(_FOO_BAR_) &&"
2266      * expression.  If these are nested, then they must accumulate
2267      * because we won't match any closing parentheses.  Finally,
2268      * after skipping over all that, we must then match our suspect
2269      * phrase:  "__STDC__-0==0" with or without white space.
2270      */
2271     select   = "^([ \t]*" '(\(|&&|\|\|)'
2272                "([ \t(]*!*[ \t]*defined\\([a-zA-Z_0-9]+\\)[ \t]*[|&][|&])*"
2273                "[ \t(]*)"
2274                "(__STDC__[ \t]*(|-[ \t]*0[ \t]*)==[ \t]*0)";
2275     c_test   = stdc_0_in_system_headers;
2276
2277     c_fix     = format;
2278     c_fix_arg = "%1 !defined(__STRICT_ANSI__)";
2279
2280     test_text = "#if 1 && \\\\\n"
2281                "&& defined(mumbling) |& (__STDC__ - 0 == 0) \\\\\n"
2282                "( __STDC__ == 0 && !defined(_XOPEN_SOURCE) \\\\\n"
2283                "|| __STDC__ - 0 == 0 ) /* not std C */\n"
2284                "int foo;\n#endif";
2285 };
2286
2287
2288 /*
2289  *  "__STDC__!=0" or "__STDC__==1" or "__STDC__-0==1"
2290  *  is "defined( __STRICT_ANSI__ )"
2291  */
2292 fix = {
2293     hackname = strict_ansi_only;
2294     select   = "^([ \t]*#[ \t]*if.*)"
2295                "(__STDC__[ \t]*!=[ \t]*0"
2296                "|__STDC__[ \t]*==[ \t]*1"
2297                "|__STDC__[ \t]*-[ \t]*0[ \t]*==[ \t]*1"
2298                "|__STDC__[ \t]*-[ \t]*0[ \t]*!=[ \t]*0)";
2299     c_test   = stdc_0_in_system_headers;
2300
2301     c_fix     = format;
2302     c_fix_arg = "%1 defined(__STRICT_ANSI__)";
2303
2304     test_text = "#if __STDC__ == 1 /* is std C\n */\nint foo;\n#endif";
2305 };
2306
2307
2308 /*
2309  *  IRIX 4.0.5 <rpc/xdr.h> uses struct __file_s
2310  *  in prototype without previous definition.
2311  */
2312 fix = {
2313     hackname  = struct_file;
2314     files     = rpc/xdr.h;
2315     select    = '^.*xdrstdio_create.*struct __file_s';
2316     c_fix     = format;
2317     c_fix_arg = "struct __file_s;\n%0";
2318     test_text = "extern void xdrstdio_create( struct __file_s* );";
2319 };
2320
2321
2322 /*
2323  *  IRIX 4.0.5 <rpc/auth.h> uses struct sockaddr
2324  *  in prototype without previous definition.
2325  */
2326 fix = {
2327     hackname  = struct_sockaddr;
2328     files     = rpc/auth.h;
2329     select    = "^.*authdes_create.*struct sockaddr";
2330     bypass    = "<sys/socket\.h>";
2331     c_fix     = format;
2332     c_fix_arg = "struct sockaddr;\n%0";
2333     test_text = "extern AUTH* authdes_create( struct sockaddr* );";
2334 };
2335
2336
2337 /*
2338  *  Apply fix this to all OSs since this problem seems to effect
2339  *  more than just SunOS.
2340  */
2341 fix = {
2342     hackname = sun_auth_proto;
2343     files    = rpc/auth.h;
2344     files    = rpc/clnt.h;
2345     files    = rpc/svc.h;
2346     files    = rpc/xdr.h;
2347     /*
2348      *  Select those files containing '(*name)()'.
2349      */
2350     select    = '\(\*[a-z][a-z_]*\)\(\)';
2351
2352     c_fix     = format;
2353     c_fix_arg = "#ifdef __cplusplus\n%1(...);%2\n"
2354                 "#else\n%1();%2\n#endif";
2355     c_fix_arg = '(.*\(\*[a-z][a-z_]*\))\(\);(.*)';
2356
2357     test_text =
2358     "struct auth_t {\n"
2359     "    int (*name)(); /* C++ bad */\n"
2360     "};";
2361 };
2362
2363
2364 /*
2365  *  Fix bogus #ifdef on SunOS 4.1.
2366  */
2367 fix = {
2368     hackname  = sun_bogus_ifdef;
2369     files     = "hsfs/hsfs_spec.h";
2370     files     = "hsfs/iso_spec.h";
2371     select    = '#ifdef(.*\|\|.*)';
2372     c_fix     = format;
2373     c_fix_arg = "#if%1";
2374
2375     test_text = "#ifdef  __i386__ || __vax__ || __sun4c__";
2376 };
2377
2378
2379 /*
2380  *  Fix the CAT macro in SunOS memvar.h.
2381  */
2382 fix = {
2383     hackname  = sun_catmacro;
2384     files     = pixrect/memvar.h;
2385     select    = "^#define[ \t]+CAT\\(a,b\\).*";
2386     c_fix     = format;
2387
2388     c_fix_arg =
2389     "#ifdef __STDC__\n"
2390     "#  define CAT(a,b) a##b\n"
2391     "#else\n%0\n#endif";
2392
2393     test_text =
2394     "#define CAT(a,b)\ta/**/b";
2395 };
2396
2397
2398 /*
2399  *  Fix return type of free and {c,m,re}alloc in <malloc.h> on SunOS 4.1.
2400  *  Also fix return type of {m,re}alloc in <malloc.h> on sysV68
2401  */
2402 fix = {
2403     hackname = sun_malloc;
2404     files    = malloc.h;
2405
2406     sed   = "s/typedef[ \t]char \\*\tmalloc_t/typedef void \\*\tmalloc_t/g";
2407     sed   = "s/int[ \t][ \t]*free/void\tfree/g";
2408     sed   = "s/char\\([ \t]*\\*[ \t]*malloc\\)/void\\1/g";
2409     sed   = "s/char\\([ \t]*\\*[ \t]*realloc\\)/void\\1/g";
2410     sed   = "s/char\\([ \t]*\\*[ \t]*calloc\\)/void\\1/g";
2411
2412     test_text =
2413     "typedef char *\tmalloc_t;\n"
2414     "int \tfree();\n"
2415     "char*\tmalloc();\n"
2416     "char*\tcalloc();\n"
2417     "char*\trealloc();";
2418 };
2419
2420
2421 /*
2422  *  Check for yet more missing ';' in struct (in SunOS 4.0.x)
2423  */
2424 fix = {
2425     hackname = sun_rusers_semi;
2426     files    = rpcsvc/rusers.h;
2427     select   = "_cnt$";
2428     sed      = "/^struct/,/^};/s/_cnt$/_cnt;/";
2429     test_text = "struct mumble\n  int _cnt\n};";
2430 };
2431
2432
2433 /*
2434  *  signal.h on SunOS defines signal using (),
2435  *  which causes trouble when compiling with g++ -pedantic.
2436  */
2437 fix = {
2438     hackname = sun_signal;
2439     files    = sys/signal.h;
2440     files    = signal.h;
2441     select   = "^void\t" '\(\*signal\(\)\)\(\);.*';
2442
2443     c_fix     = format;
2444     c_fix_arg =
2445           "#ifdef __cplusplus\n"
2446           "void\t(*signal(...))(...);\n"
2447           "#else\n%0\n#endif";
2448
2449     test_text = "void\t(*signal())();";
2450 };
2451
2452
2453 /*
2454  *  math.h on SunOS 4 puts the declaration of matherr before the definition
2455  *  of struct exception, so the prototype (added by fixproto) causes havoc.
2456  */
2457 fix = {
2458     hackname  = sunos_matherr_decl;
2459     files     = math.h;
2460
2461     /*  If matherr has a prototype already, the header needs no fix.  */
2462     bypass    = 'matherr.*(struct exception|__MATH_EXCEPTION)';
2463     select    = matherr;
2464
2465     c_fix     = wrap;
2466     c_fix_arg = "struct exception;\n";
2467
2468     test_text = "extern int matherr();";
2469 };
2470
2471
2472 /*
2473  *  Correct the return type for strlen in strings.h in SunOS 4.
2474  */
2475 fix = {
2476     hackname = sunos_strlen;
2477     files    = strings.h;
2478     select   = "int[ \t]*strlen\\(\\);(.*)";
2479     c_fix     = format;
2480     c_fix_arg = "__SIZE_TYPE__ strlen();%1";
2481     test_text = " int\tstrlen(); /* string length */";
2482 };
2483
2484
2485 /*
2486  *  Solaris math.h and floatingpoint.h define __P without protection,
2487  *  which conflicts with the fixproto definition.  The fixproto
2488  *  definition and the Solaris definition are used the same way.
2489  */
2490 fix = {
2491     hackname = svr4__p;
2492     files    = math.h;
2493     files    = floatingpoint.h;
2494     select   = "^#define[ \t]+__P.*";
2495     c_fix     = format;
2496     c_fix_arg = "#ifndef __P\n%0\n#endif";
2497
2498     test_text = "#define __P(a) a";
2499 };
2500
2501
2502 /*
2503  *  Disable apparent native compiler optimization cruft in SVR4.2 <string.h>
2504  *  that is visible to any ANSI compiler using this include.  Simply
2505  *  delete the lines that #define some string functions to internal forms.
2506  */
2507 #ifdef SVR4
2508 fix = {
2509     hackname = svr4_disable_opt;
2510     files    = string.h;
2511     select   = '#define.*__std_hdr_';
2512     sed      = '/#define.*__std_hdr_/d';
2513 };
2514 #endif
2515
2516
2517 /*
2518  *  Conditionalize some of <sys/endian.h> on __GNUC__ and __GNUG__.
2519  *  On some systems (UnixWare 2, UnixWare 7), the file is byteorder.h
2520  *  but we still "hijack" it and redirect it to the GNU byteorder.h..
2521  */
2522 #ifdef SVR5
2523 fix = {
2524     hackname = svr4_endian;
2525     files    = sys/endian.h;
2526 #ifdef LATER
2527     /*
2528      * since we emit our own sys/byteorder.h,
2529      * this fix can never be applied to that file.
2530      */
2531     files    = sys/byteorder.h;
2532 #endif
2533     bypass   = '__GNUC__';
2534
2535     sed      = "/#\tifdef\t__STDC__/i\\\n"
2536                "#   if !defined (__GNUC__) && !defined (__GNUG__)\n";
2537
2538     sed      = "/#\t\tinclude\t<sys\\/byteorder.h>/s/\t\t/   /";
2539
2540     sed      = "/#   include\t<sys\\/byteorder.h>/i\\\n"
2541                "#   endif /* !defined (__GNUC__) && !defined (__GNUG__) */\n";
2542 };
2543 #endif /* SVR5 */
2544
2545
2546 /*
2547  *  Remove useless extern keyword from struct forward declarations
2548  *  in <sys/stream.h> and <sys/strsubr.h>
2549  */
2550 #ifdef SVR4
2551 fix = {
2552     hackname = svr4_extern_struct;
2553     files    = sys/stream.h;
2554     files    = sys/strsubr.h;
2555     select   = 'extern struct [a-z_]*;';
2556     sed      = 's/extern struct \([a-z][a-z_]*\)/struct \1/';
2557 };
2558 #endif
2559
2560 /*
2561  *  Fix declarations of `ftw' and `nftw' in <ftw.h>.  On some/most SVR4
2562  *  systems the file <ftw.h> contains extern declarations of these
2563  *  functions followed by explicitly `static' definitions of these
2564  *  functions... and that's not allowed according to ANSI C.  (Note
2565  *  however that on Solaris, this header file glitch has been pre-fixed by
2566  *  Sun.  In the Solaris version of <ftw.h> there are no static
2567  *  definitions of any function so we don't need to do any of this stuff
2568  *  when on Solaris.
2569  */
2570 #ifdef SVR4
2571 #ifndef SOLARIS
2572 fix = {
2573     hackname = svr4_ftw;
2574     files    = ftw.h;
2575     select   = '^extern int ftw\(const';
2576
2577     sed = '/^extern int ftw(const/i' "\\\n"
2578             "#if !defined(_STYPES)\\\n"
2579             "static\\\n"
2580             "#else\\\n"
2581             "extern\\\n"
2582             "#endif";
2583     sed = 's/extern \(int ftw(const.*\)$/\1/';
2584     sed = "/^extern int nftw/i\\\n"
2585             "#if defined(_STYPES)\\\n"
2586             "static\\\n"
2587             "#else\\\n"
2588             "extern\\\n"
2589             "#endif";
2590     sed = 's/extern \(int nftw.*\)$/\1/';
2591     sed = "/^extern int ftw(),/c\\\n"
2592             "#if !defined(_STYPES)\\\n"
2593             "static\\\n"
2594             "#else\\\n"
2595             "extern\\\n"
2596             "#endif\\\n"
2597             "  int ftw();\\\n"
2598             "#if defined(_STYPES)\\\n"
2599             "static\\\n"
2600             "#else\\\n"
2601             "extern\\\n"
2602             "#endif\\\n"
2603             "  int nftw();";
2604 };
2605 #endif
2606 #endif
2607
2608
2609 /*
2610  *   Fix broken decl of getcwd present on some svr4 systems.
2611  */
2612 fix = {
2613     hackname = svr4_getcwd;
2614     files    = stdlib.h;
2615     files    = unistd.h;
2616     files    = prototypes.h;
2617     select   = 'getcwd\(char \*, int\)';
2618
2619     c_fix     = format;
2620     c_fix_arg = "getcwd(char *, size_t)";
2621
2622     test_text = "extern char* getcwd(char *, int);";
2623 };
2624
2625
2626 /*
2627  *  set ifdef _KERNEL
2628  */
2629 #ifdef SVR4
2630 fix = {
2631     hackname = svr4_kernel;
2632     files    = fs/rfs/rf_cache.h;
2633     files    = sys/erec.h;
2634     files    = sys/err.h;
2635     files    = sys/char.h;
2636     files    = sys/getpages.h;
2637     files    = sys/map.h;
2638     files    = sys/cmn_err.h;
2639     files    = sys/kdebugger.h;
2640     bypass   = '_KERNEL';
2641     c_fix     = wrap;
2642
2643     c_fix_arg = "#ifdef _KERNEL\n";
2644     c_fix_arg = "#endif /* _KERNEL */\n";
2645     test_text = "";
2646 };
2647 #endif
2648
2649 /*
2650  *  Delete any #defines of `__i386' which may be present in <ieeefp.h>.  They
2651  *  tend to conflict with the compiler's own definition of this symbol.  (We
2652  *  will use the compiler's definition.)
2653  *  Likewise __sparc, for Solaris, and __i860, and a few others
2654  *  (guessing it is necessary for all of them).
2655  */
2656 #ifdef SVR4
2657 fix = {
2658     hackname = svr4_mach_defines;
2659     files    = ieeefp.h;
2660     select   = "#define[ \t]*__(i386|i860|mips|sparc|m88k|m68k)[ \t]";
2661     sed      = "/#define[ \t]*__\\(i386|i860|mips|sparc|m88k|m68k\\)[ \t]/d";
2662 };
2663 #endif
2664
2665
2666 /*
2667  *  Fix declarations of `makedev', `major', and `minor' in <sys/mkdev.h>.
2668  *  They are declared as non-static then immediately redeclared as static.
2669  */
2670 #ifdef SVR5
2671 fix = {
2672     hackname = svr4_mkdev;
2673     files    = sys/mkdev.h;
2674     select   = '^static';
2675
2676     sed      = "/^dev_t makedev(/s/^/static /";
2677     sed      = "/^major_t major(/s/^/static /";
2678     sed      = "/^minor_t minor(/s/^/static /";
2679 };
2680 #endif /* SVR5 */
2681
2682
2683 /*
2684  *  Fix reference to NC_NPI_RAW in <sys/netcspace.h>.
2685  *  Also fix types of array initializers.
2686  */
2687 #ifdef SVR4
2688 fix = {
2689     hackname = svr4_netcspace;
2690     files    = sys/netcspace.h;
2691     select   = 'NC_NPI_RAW';
2692     sed      = 's/NC_NPI_RAW/NC_TPI_RAW/g';
2693     sed      = 's/NC_/(unsigned long) NC_/';
2694 };
2695 #endif
2696
2697 /*
2698  *  Fix reference to NMSZ in <sys/adv.h>.
2699  */
2700 #ifdef SVR4
2701 fix = {
2702     hackname = svr4_nmsz;
2703     files    = sys/adv.h;
2704     select   = '\[NMSZ\]';
2705     sed      = 's/\[NMSZ\]/\[RFS_NMSZ\]/g';
2706 };
2707 #endif
2708
2709
2710 /*
2711  *   Fix broken decl of profil present on some svr4 systems.
2712  */
2713 fix = {
2714     hackname = svr4_profil;
2715     files    = stdlib.h;
2716     files    = unistd.h;
2717
2718     select    =
2719     'profil\(unsigned short \*, unsigned int, unsigned int, unsigned int\)';
2720     c_fix     = format;
2721     c_fix_arg = 'profil(unsigned short *, size_t, int, unsigned int)';
2722
2723     test_text =
2724     'profil(unsigned short *, unsigned int, unsigned int, unsigned int);';
2725 };
2726
2727
2728 /*
2729  *  Convert functions to prototype form, and fix arg names in <sys/stat.h>.
2730  */
2731 #ifdef SVR4
2732 fix = {
2733     hackname = svr4_proto_form;
2734     files    = sys/stat.h;
2735     select   = 'const extern';
2736
2737     sed      = "/^stat([ \t]*[^c]/ {\nN\nN\n"
2738                    "s/(.*)\\n/( /\n"
2739                    "s/;\\n/, /\n"
2740                    "s/;$/)/\n"  "}";
2741
2742     sed      = "/^lstat([ \t]*[^c]/ {\nN\nN\n"
2743                    "s/(.*)\\n/( /\n"
2744                    "s/;\\n/, /\n"
2745                    "s/;$/)/\n"  "}";
2746
2747     sed      = "/^fstat([ \t]*[^i]/ {\nN\nN\n"
2748                    "s/(.*)\\n/( /\n"
2749                    "s/;\\n/, /\n"
2750                    "s/;$/)/\n"  "}";
2751
2752     sed      = "/^mknod([ \t]*[^c]/{\nN\nN\nN\n"
2753                    "s/(.*)\\n/( /\n"
2754                    "s/;\\n/, /g\n"
2755                    "s/;$/)/\n"  "}";
2756
2757     sed      = "1,$s/\\([^A-Za-z]\\)path\\([^A-Za-z]\\)/\\1__path\\2/g";
2758     sed      = "1,$s/\\([^A-Za-z]\\)buf\\([^A-Za-z]\\)/\\1__buf\\2/g";
2759     sed      = "1,$s/\\([^A-Za-z]\\)fd\\([^A-Za-z]\\)/\\1__fd\\2/g";
2760     sed      = "1,$s/ret\\([^u]\\)/__ret\\1/g";
2761     sed      = "1,$s/\\([^_]\\)mode\\([^_]\\)/\\1__mode\\2/g";
2762     sed      = "1,$s/\\([^_r]\\)dev\\([^_]\\)/\\1__dev\\2/g";
2763 };
2764 #endif
2765
2766 /*
2767  *  Add a prototyped declaration of mmap to <sys/mman.h>.
2768  */
2769 #ifdef SVR4
2770 fix = {
2771     hackname = svr4_proto_mmap;
2772     files    = sys/mman.h;
2773     select   = '^extern caddr_t mmap();$';
2774     sed = '/^extern caddr_t mmap();$/c' "\\\n"
2775           "#ifdef __STDC__\\\n"
2776           "extern caddr_t mmap (caddr_t, size_t, int, int, int, off_t);\\\n"
2777           "#else /* !defined(__STDC__) */\\\n"
2778           "extern caddr_t mmap ();\\\n"
2779           "#endif /* !defined(__STDC__) */\\\n";
2780 };
2781 #endif
2782
2783 /*
2784  *  Add a #define of _SIGACTION_ into <sys/signal.h>.
2785  */
2786 #ifdef SVR4
2787 fix = {
2788     hackname = svr4_sigaction;
2789     files    = sys/signal.h;
2790     sed      = "/^struct sigaction {/i\\\n"
2791                "#define _SIGACTION_";
2792     sed      = 's/(void *(\*)())/(void (*)(int))/';
2793 };
2794 #endif
2795
2796 /*
2797  *  Put storage class at start of decl, to avoid warning.
2798  */
2799 #ifdef SVR4
2800 fix = {
2801     hackname = svr4_storage_class;
2802     files    = rpc/types.h;
2803     select   = 'const extern';
2804     sed      = 's/const extern/extern const/g';
2805 };
2806 #endif
2807
2808
2809 /*
2810  *  Like svr4_mach_defines, but with newfangled syntax.
2811  *  Source lines are of #define __i386 #machine(i386).   Delete them.
2812  */
2813 #ifdef SVR5
2814 fix = {
2815     hackname = svr5_mach_defines;
2816     files    = ieeefp.h;
2817     select   = "#define[ \t]*__i386.*\(i386\)";
2818     sed      = "/#define[ \t]*__i386.*/d";
2819 };
2820 #endif /*  SVR5 */
2821
2822
2823 /*
2824  *  Fix return value of mem{ccpy,chr,cpy,set} and str{len,spn,cspn}
2825  *  in string.h on sysV68
2826  *  Correct the return type for strlen in string.h on Lynx.
2827  *  Correct the argument type for ffs in string.h on Alpha OSF/1 V2.0.
2828  *  Add missing const for strdup on OSF/1 V3.0.
2829  *  On sysV88 layout is slightly different.
2830  */
2831 fix = {
2832     hackname = sysv68_string;
2833     files    = testing.h;
2834     files    = string.h;
2835
2836     sed = "s/extern[ \t]*int[ \t]*strlen();/extern unsigned int strlen();/";
2837     sed = "s/extern[ \t]*int[ \t]*ffs[ \t]*(long);/extern int ffs(int);/";
2838     sed = "s/strdup(char \\*s1);/strdup(const char *s1);/";
2839
2840     sed = "/^extern char$/N";
2841     sed = "s/^extern char\\(\\n\t\\*memccpy(),\\)$/extern void\\1/";
2842
2843     sed = "/^extern int$/N";
2844     sed = "s/^extern int\\(\\n\tstrlen(),\\)/extern size_t\\1/";
2845
2846     sed = "/^\tstrncmp(),$/N";
2847     sed = 's/^\(' "\t" 'strncmp()\),\n\(' "\t" 'strlen(),\)$/'
2848             '\1;' "\\\nextern unsigned int\\\n\\2/";
2849
2850     test_text =
2851     "extern int strlen();\n"
2852
2853     "extern int ffs(long);\n"
2854
2855     "extern char\n"
2856     "\t*memccpy(),\n"
2857     "\tmemcpy();\n"
2858
2859     "extern int\n"
2860     "\tstrcmp(),\n"
2861     "\tstrncmp(),\n"
2862     "\tstrlen(),\n"
2863     "\tstrspn();\n"
2864
2865     "extern int\n"
2866     "\tstrlen(), strspn();";
2867 };
2868
2869
2870 /*
2871  *  Fix return type of calloc, malloc, realloc, bsearch and exit
2872  */
2873 fix = {
2874     hackname = sysz_stdlib_for_sun;
2875     files    = stdlib.h;
2876
2877     select    = "char[ \t]*\\*[ \t]*(calloc|malloc|realloc|bsearch)[ \t]*\\(";
2878     c_fix     = format;
2879     c_fix_arg = "void *\t%1(";
2880
2881     test_text =
2882     "extern char*\tcalloc(size_t);\n"
2883     "extern char*\tmalloc(size_t);\n"
2884     "extern char*\trealloc(void*,size_t);\n"
2885     "extern char*\tbsearch(void*,size_t,size_t);\n";
2886 };
2887
2888
2889 /*
2890  *  if the #if says _cplusplus, not the double underscore __cplusplus
2891  *  that it should be
2892  */
2893 fix = {
2894     hackname = tinfo_cplusplus;
2895     files    = tinfo.h;
2896     select   = "[ \t]_cplusplus";
2897
2898     c_fix     = format;
2899     c_fix_arg = " __cplusplus";
2900     test_text = "#ifdef _cplusplus\nint bogus;\n#endif";
2901 };
2902
2903
2904 /*
2905  *  function parameter to atexit is missing "void" on VAX Ultrix 4.3.
2906  */
2907 fix = {
2908     hackname = ultrix_atexit_param;
2909     files    = stdlib.h;
2910     select   = 'atexit\(.*\(\)';
2911
2912     c_fix     = format;
2913     c_fix_arg = "atexit( void (*__func)( void )";
2914
2915     test_text = "int atexit( void (*__func)() );\n";
2916 };
2917
2918
2919 /*
2920  *  parameter to atof not const on DECstation Ultrix V4.0 and NEWS-OS 4.2R.
2921  */
2922 fix = {
2923     hackname = ultrix_atof_param;
2924     files    = math.h;
2925     select   = "atof\\([ \t]*char";
2926
2927     c_fix     = format;
2928     c_fix_arg = "atof(const char";
2929
2930     test_text = "extern double atof( char *__nptr);\n";
2931 };
2932
2933
2934 /*
2935  *  parameters not const on DECstation Ultrix V4.0 and OSF/1.
2936  */
2937 fix = {
2938     hackname  = ultrix_const;
2939     files     = stdio.h;
2940     select    = 'perror\( char \*';
2941
2942     c_fix     = format;
2943     c_fix_arg = "%1 const %3 *__";
2944     c_fix_arg = "([ \t*](perror|fputs|fwrite|scanf|fscanf)\\(.*)"
2945                 "[ \t]+(char|void) \\*__";
2946
2947     test_text =
2948     "extern void perror( char *__s );\n"
2949     "extern int fputs( char *__s, FILE *);\n"
2950     "extern size_t fwrite( void *__ptr, size_t, size_t, FILE *);\n"
2951     "extern int fscanf( FILE *__stream, char *__format, ...);\n"
2952     "extern int scanf( char *__format, ...);\n";
2953 };
2954
2955
2956 /*
2957  *  parameters not const on DECstation Ultrix V4.0 and OSF/1.
2958  */
2959 fix = {
2960     hackname  = ultrix_const2;
2961     files     = stdio.h;
2962
2963     select    = '\*fopen\( char \*';
2964     c_fix     = format;
2965     c_fix_arg = "%1( const char *%3, const char *";
2966     c_fix_arg = "([ \t*](fopen|sscanf|popen|tempnam))\\("
2967                "[ \t]*char[ \t]*\\*([^,]*),"
2968                "[ \t]*char[ \t]*\\*[ \t]*";
2969
2970     test_text =
2971     "extern FILE *fopen( char *__filename, char *__type );\n"
2972     "extern int sscanf( char *__s, char *__format, ...);\n"
2973     "extern FILE *popen(char *, char *);\n"
2974     "extern char *tempnam(char*,char*);\n";
2975 };
2976
2977
2978 /*
2979  * Ultrix V4.[35] puts the declaration of uname before the definition
2980  * of struct utsname, so the prototype (added by fixproto) causes havoc.
2981  */
2982 fix = {
2983     hackname = ultrix_fix_fixproto;
2984     files    = sys/utsname.h;
2985     select   = ULTRIX;
2986
2987     c_fix     = format;
2988     c_fix_arg = "struct utsname;\n%0";
2989     c_fix_arg = "^[ \t]*extern[ \t]*int[ \t]*uname\\(\\);";
2990
2991     test_text =
2992     "/* ULTRIX's uname */\nextern\tint\tuname();";
2993 };
2994
2995
2996 /*
2997  *  Check for bad #ifdef line (in Ultrix 4.1)
2998  */
2999 fix = {
3000     hackname = ultrix_ifdef;
3001     select   = "^#ifdef KERNEL[ \t]+&&";
3002     files    = sys/file.h;
3003
3004     c_fix     = format;
3005     c_fix_arg = "#if defined(KERNEL) &&";
3006
3007     test_text =
3008     "#ifdef KERNEL\t&& defined( mumbojumbo )\nint oops;\n#endif";
3009 };
3010
3011
3012 /*
3013  * Strip "|| CC$gfloat" from Ultrix math headers.
3014  */
3015 fix = {
3016     hackname  = ultrix_math_ifdef;
3017     files     = sys/limits.h;
3018     files     = float.h;
3019     files     = math.h;
3020     select    = "^(#if.*)\\|\\|[ \t]+CC\\$[a-z]+";
3021     c_fix     = format;
3022     c_fix_arg = "%1";
3023
3024     test_text = '#if     defined(__GFLOAT) || CC\$gfloat';
3025 };
3026
3027
3028 /*
3029  *  Avoid nested comments on Ultrix 4.3.
3030  */
3031 fix = {
3032     hackname = ultrix_nested_ioctl;
3033     files    = sys/ioctl.h;
3034     select   = "^/\\* #define SIOCSCREEN";
3035     sed      = "/^\\/\\* #define SIOCSCREEN/s@/\\* screend@*//* screend@";
3036     test_text =
3037     "/* #define SIOCSCREENON _IOWR('i', 49, int)"
3038     "/* screend, net/gw_screen.h */\n";
3039 };
3040
3041
3042 fix = {
3043     hackname = ultrix_nested_svc;
3044     files    = rpc/svc.h;
3045     select   = "^ \\*[ \t]*int protocol;  */\\*";
3046     sed      = "s@^\\( \\*\tint protocol;  \\)/\\*@\\1*/ /*@";
3047     test_text =
3048     " *\tint protocol;  /* like TCP or UDP\n";
3049 };
3050
3051
3052 /*
3053  *  Add missing prototype for lstat and define for S_ISLNK
3054  *  in Ultrix V4.3 sys/stat.h.
3055  */
3056 fix = {
3057     hackname = ultrix_stat;
3058     files  = sys/stat.h;
3059     select = "@\\(#\\)stat\\.h.*6\\.1.*\\(ULTRIX\\)";
3060     sed    = "/^#define[ \t]S_IFPORT[ \t]*S_IFIFO$/a\\\n"
3061                 "\\\n"
3062                 "/* macro to test for symbolic link */\\\n"
3063                 "#define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)\\\n"
3064                 "\n";
3065     sed    = "/^[ \t]*fstat(),$/a\\\n"
3066                 "\tlstat(),\n";
3067     test_text =
3068     "@(#)stat.h      6.1     (ULTRIX)\n"
3069     "#define S_IFPORT S_IFIFO\n"
3070     "\tfstat(),\n";
3071 };
3072
3073
3074 /*
3075  *  Check for superfluous `static' (in Ultrix 4.2)
3076  *  On Ultrix 4.3, includes of other files (r3_cpu.h,r4_cpu.h) is broken.
3077  */
3078 fix = {
3079     hackname = ultrix_static;
3080     files  = machine/cpu.h;
3081     select = '#include "r[34]_cpu';
3082     sed    = "s/^static struct tlb_pid_state/struct tlb_pid_state/";
3083     sed    = 's/^#include "r3_cpu\.h"$/#include <machine\/r3_cpu\.h>/';
3084     sed    = 's/^#include "r4_cpu\.h"$/#include <machine\/r4_cpu\.h>/';
3085     test_text =
3086     "static struct tlb_pid_state {\n"
3087     "#include \"r3_cpu.h\"\n";
3088 };
3089
3090
3091 /*
3092  *  Add once-only latch to Ultrix V4.3 strings.h.
3093  */
3094 fix = {
3095     hackname = ultrix_strings;
3096     files  = strings.h;
3097     select = "@\\(#\\)strings\\.h.*6\\.1.*\\(ULTRIX\\)";
3098     c_fix  = wrap;
3099     test_text =
3100     "@(#)strings.h   6.1     (ULTRIX)\n";
3101 };
3102
3103
3104 /*
3105  *  Fix multiple defines for NULL.  Sometimes, we stumble into \r\n
3106  *  terminated lines, so accommodate these.  Test both ways.
3107  */
3108 fix = {
3109     hackname  = undefine_null;
3110     select    = "^#[ \t]*define[ \t]+NULL[ \t]";
3111     bypass    = "#[ \t]*(ifn|un)def[ \t]+NULL($|[ \t\r])";
3112
3113     c_fix     = format;
3114     c_fix_arg = "#ifndef NULL%2\n#define NULL%1%2\n#endif%2\n";
3115     c_fix_arg = "^#[ \t]*define[ \t]*[ \t]NULL([^\r\n]+)([\r]*)\n";
3116
3117     test_text = "#define NULL 0UL\r\n#define NULL\t((void*)0)\n";
3118 };
3119
3120 /*
3121  * On Cray Unicos/Mk some standard headers use the C99 keyword "restrict"
3122  * which must be replaced by __restrict__ for GCC.
3123  */
3124 fix = {
3125     hackname = unicosmk_restrict;
3126     files    = stdio.h;
3127     files    = stdlib.h;
3128     files    = wchar.h;
3129     mach     = "*-*-unicosmk*";
3130     select   = "(\\*[ \t]*)restrict([ \t]+)";
3131
3132     c_fix     = format;
3133     c_fix_arg = "%1__restrict__%2";
3134
3135     test_text = "void f (char * restrict x);";
3136 };
3137
3138 /*
3139  * If arpa/inet.h prototypes are incompatible with the ones we just
3140  * installed in <sys/byteorder.h>, just remove the protos.
3141  * Because of this close association, this patch must be applied only
3142  * on those systems where the replacement byteorder header is installed.
3143  */
3144 fix = {
3145     hackname = uw7_byteorder_fix;
3146     files    = arpa/inet.h;
3147     select   = "in_port_t";
3148     test     = "-f sys/byteorder.h";
3149 #ifndef SVR5
3150         mach = "*-*-sysv4*";
3151         mach = "i?86-*-sysv5*";
3152         mach = "i?86-*-udk*";
3153         mach = "i?86-*-solaris2.[0-4]";
3154         mach = "powerpcle-*-solaris2.[0-4]";
3155         mach = "sparc-*-solaris2.[0-4]";
3156 #endif /* SVR5 */
3157
3158     c_fix     = format;
3159     c_fix_arg = "";
3160     c_fix_arg = "^extern.*[ \t](htons|ntohs).*\\(in_port_t\\).*;";
3161
3162     test_text = "extern in_port_t\thtons __P((in_port_t));\n"
3163                 "extern in_port_t\tntohs __P((in_port_t));"
3164                 "`[ ! -d $DESTDIR/sys ] && mkdir $DESTDIR/sys\n"
3165                 "echo '/* DUMMY */' >> sys/byteorder.h`";
3166 };
3167
3168
3169 /*
3170  *  Fix definitions of macros used by va-i960.h in VxWorks header file.
3171  */
3172 fix = {
3173     hackname  = va_i960_macro;
3174     files     = arch/i960/archI960.h;
3175     select    = "__(vsiz|vali|vpad|alignof__)";
3176
3177     c_fix     = format;
3178     c_fix_arg = "__vx%1";
3179
3180     test_text =
3181     "extern int __vsiz vsiz;\n"
3182     "extern int __vali vali;\n"
3183     "extern int __vpad vpad;\n"
3184     "#define __alignof__(x) ...";
3185 };
3186
3187
3188 /*
3189  *  AIX headers define NULL to be cast to a void pointer,
3190  *  which is illegal in ANSI C++.
3191  */
3192 fix = {
3193     hackname  = void_null;
3194     files     = curses.h;
3195     files     = dbm.h;
3196     files     = locale.h;
3197     files     = stdio.h;
3198     files     = stdlib.h;
3199     files     = string.h;
3200     files     = time.h;
3201     files     = unistd.h;
3202     files     = sys/dir.h;
3203     files     = sys/param.h;
3204     files     = sys/types.h;
3205     select    = "^#[ \t]*define[ \t]+NULL[ \t]+\\(\\(void[ \t]*\\*\\)0\\)";
3206     c_fix     = format;
3207     c_fix_arg = "#define NULL 0";
3208     test_text = "# define\tNULL \t((void *)0)  /* typed NULL */";
3209 };
3210
3211
3212 /*
3213  *  Make VxWorks header which is almost gcc ready fully gcc ready.
3214  */
3215 fix = {
3216     hackname = vxworks_gcc_problem;
3217     files    = types/vxTypesBase.h;
3218     select   = "__GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__";
3219
3220     sed = "s/#ifdef __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__/"
3221           "#if 1/";
3222
3223     sed = "/[ \t]size_t/i\\\n"
3224         "#ifndef _GCC_SIZE_T\\\n"
3225         "#define _GCC_SIZE_T\n";
3226
3227     sed = "/[ \t]size_t/a\\\n"
3228         "#endif\n";
3229
3230     sed = "/[ \t]ptrdiff_t/i\\\n"
3231         "#ifndef _GCC_PTRDIFF_T\\\n"
3232         "#define _GCC_PTRDIFF_T\n";
3233
3234     sed = "/[ \t]ptrdiff_t/a\\\n"
3235         "#endif\n";
3236
3237     sed = "/[ \t]wchar_t/i\\\n"
3238         "#ifndef _GCC_WCHAR_T\\\n"
3239         "#define _GCC_WCHAR_T\n";
3240
3241     sed = "/[ \t]wchar_t/a\\\n"
3242         "#endif\n";
3243
3244     test_text =
3245     "#ifdef __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__\n"
3246     "typedef unsigned int size_t;\n"
3247     "typedef long ptrdiff_t;\n"
3248     "typedef unsigned short wchar_t;\n"
3249     "#endif /* __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__ */\n";
3250 };
3251
3252
3253 /*
3254  *  Fix VxWorks <time.h> to not require including <vxTypes.h>.
3255  */
3256 fix = {
3257     hackname  = vxworks_needs_vxtypes;
3258     files     = time.h;
3259     select    = "uint_t([ \t]+_clocks_per_sec)";
3260     c_fix     = format;
3261     c_fix_arg = "unsigned int%1";
3262     test_text = "uint_t\t_clocks_per_sec;";
3263 };
3264
3265
3266 /*
3267  *  Fix VxWorks <sys/stat.h> to not require including <vxWorks.h>.
3268  */
3269 fix = {
3270     hackname = vxworks_needs_vxworks;
3271     files    = sys/stat.h;
3272     test     = " -r types/vxTypesOld.h";
3273     test     = " -n \"`egrep '#include' $file`\"";
3274     test     = " -n \"`egrep ULONG $file`\"";
3275     select   = "#[ \t]define[ \t]+__INCstath";
3276
3277     sed = "/#[ \t]define[ \t][ \t]*__INCstath/a\\\n"
3278           "#include <types/vxTypesOld.h>\n";
3279
3280     test_text = "`touch types/vxTypesOld.h`"
3281     "#include </dev/null> /* ULONG */\n"
3282     "# define\t__INCstath <sys/stat.h>";
3283 };
3284
3285
3286 /*
3287  *  Another bad dependency in VxWorks 5.2 <time.h>.
3288  */
3289 fix = {
3290     hackname = vxworks_time;
3291     files    = time.h;
3292     test     = " -r vxWorks.h";
3293
3294     select    = "#[ \t]*define[ \t]+VOIDFUNCPTR[ \t].*";
3295     c_fix     = format;
3296
3297     c_fix_arg =
3298     "#ifndef __gcc_VOIDFUNCPTR_defined\n"
3299     "#ifdef __cplusplus\n"
3300     "typedef void (*__gcc_VOIDFUNCPTR) (...);\n"
3301     "#else\n"
3302     "typedef void (*__gcc_VOIDFUNCPTR) ();\n"
3303     "#endif\n"
3304     "#define __gcc_VOIDFUNCPTR_defined\n"
3305     "#endif\n"
3306     "#define VOIDFUNCPTR __gcc_VOIDFUNCPTR";
3307
3308     test_text = "`touch vxWorks.h`"
3309                 "#define VOIDFUNCPTR (void(*)())";
3310 };
3311
3312
3313 /*
3314  *  There are several name conflicts with C++ reserved words in X11 header
3315  *  files.  These are fixed in some versions, so don't do the fixes if
3316  *  we find __cplusplus in the file.  These were found on the RS/6000.
3317  */
3318 fix = {
3319     hackname  = x11_class;
3320     files     = X11/ShellP.h;
3321     bypass    = __cplusplus;
3322     select    = "^([ \t]*char \\*)class;(.*)";
3323     c_fix     = format;
3324     c_fix_arg = "#ifdef __cplusplus\n%1c_class;%2\n"
3325                 "#else\n%1class;%2\n#endif";
3326     test_text =
3327     "struct {\n"
3328     "   char *class;\n"
3329     "} mumble;\n";
3330 };
3331
3332
3333 /*
3334  *  class in Xm/BaseClassI.h
3335  */
3336 fix = {
3337     hackname = x11_class_usage;
3338     files    = Xm/BaseClassI.h;
3339     bypass   = "__cplusplus";
3340
3341     select    = " class\\)";
3342     c_fix     = format;
3343     c_fix_arg = " c_class)";
3344
3345     test_text = "extern mumble (int  class);\n";
3346 };
3347
3348
3349 /*
3350  *  new in Xm/Traversal.h
3351  */
3352 fix = {
3353     hackname = x11_new;
3354     files    = Xm/Traversal.h;
3355     bypass   = __cplusplus;
3356
3357     sed      = "/Widget\told, new;/i\\\n"
3358                    "#ifdef __cplusplus\\\n"
3359                    "\tWidget\told, c_new;\\\n"
3360                    "#else\n";
3361
3362     sed      = "/Widget\told, new;/a\\\n"
3363                    "#endif\n";
3364
3365     sed      = "s/Widget new,/Widget c_new,/g";
3366     test_text =
3367     "struct wedge {\n"
3368     "   Widget\told, new; /* fix the new */\n"
3369     "};\nextern Wedged( Widget new, Widget old );";
3370 };
3371
3372
3373 /*
3374  *  Incorrect sprintf declaration in X11/Xmu.h
3375  */
3376 fix = {
3377     hackname = x11_sprintf;
3378     files    = X11/Xmu.h;
3379     files    = X11/Xmu/Xmu.h;
3380     select   = "^extern char \\*\tsprintf\\(\\);$";
3381
3382     c_fix     = format;
3383     c_fix_arg = "#ifndef __STDC__\n%0\n#endif /* !defined __STDC__ */";
3384
3385     test_text = "extern char *\tsprintf();";
3386 };
3387
3388 /*EOF*/