OSDN Git Service

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