3 autogen definitions fixincl;
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.
8 This is the sort command:
10 blocksort output=XXX \
12 start='== REPLACEMENT FIXES ==' \
13 trailer='^/\*EOF\*[/]' \
15 key='hackname[ ]*=[ ]*(.*);'
17 Set up a debug test so we can make the templates emit special
18 code while debugging these fixes: */
24 /* == REPLACEMENT FIXES == */
27 * Completely replace <_int_varargs.h> with a file that includes gcc's
28 * stdarg.h or varargs.h files as appropriate on DG/UX
31 hackname = AAB_dgux_int_varargs;
32 files = _int_varargs.h;
34 #ifndef __INT_VARARGS_H
35 #define __INT_VARARGS_H
37 /********************************************************/
38 /* Define the common stuff for varargs/stdarg/stdio. */
39 /********************************************************/
42 ** This file is a DG internal header. Never include this
46 #ifndef ___int_features_h
47 #include <sys/_int_features.h>
50 #if !(defined(_VA_LIST) || defined(_VA_LIST_))
57 typedef void * va_list;
59 typedef char * va_list;
73 #else /* ! defined(__DCC__) */
76 int __va_arg; /* argument number */
77 int *__va_stk; /* start of args passed on stack */
78 int *__va_reg; /* start of args passed in regs */
81 #endif /* ! defined(__DCC__) */
85 #if defined(__GNUC__) || defined(__STDC__)
86 typedef void * va_list;
88 typedef char * va_list;
91 #endif /* _IX86_ANY */
94 #endif /* !(defined(_VA_LIST) || defined(_VA_LIST_)) */
95 #endif /* #ifndef __INT_VARARGS_H */
101 * This fixes __FD_ZERO bug for linux 2.x.y (x <= 2 && y <= some n)
104 hackname = AAB_fd_zero_asm_posix_types_h;
105 files = asm/posix_types.h;
106 mach = 'i[34567]86-*-linux*';
110 * Define _POSIX_TYPES_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 <asm/posix_types.h>.
116 /* This file fixes a bug in the __FD_ZERO macro
117 for older versions of the Linux kernel. */
118 #ifndef _POSIX_TYPES_H_WRAPPER
119 #include <features.h>
120 #include_next <asm/posix_types.h>
122 #if defined(__FD_ZERO) && !defined(__GLIBC__)
124 #define __FD_ZERO(fdsetp) \
127 __asm__ __volatile__("cld ; rep ; stosl" \
128 : "=&c" (__d0), "=&D" (__d1) \
129 : "a" (0), "0" (__FDSET_LONGS), \
130 "1" ((__kernel_fd_set *) (fdsetp)) :"memory"); \
134 #define _POSIX_TYPES_H_WRAPPER
135 #endif /* _POSIX_TYPES_H_WRAPPER */
141 * This fixes __FD_ZERO bug for glibc-1.x
144 hackname = AAB_fd_zero_gnu_types_h;
146 mach = 'i[34567]86-*-linux*';
149 * Define _TYPES_H_WRAPPER at the end of the wrapper, not
150 * the start, so that if #include_next gets another instance of
151 * the wrapper, this will follow the #include_next chain until
152 * we arrive at the real <gnu/types.h>.
156 '/* This file fixes a bug in the __FD_ZERO macro present in glibc 1.x. */
157 \#ifndef _TYPES_H_WRAPPER
158 \#include <features.h>
159 \#include_next <gnu/types.h>
161 \#if defined(__FD_ZERO) && !defined(__GLIBC__)
163 \# define __FD_ZERO(fdsetp) \\
166 __asm__ __volatile__("cld ; rep ; stosl" \\
167 : "=&c" (__d0), "=&D" (__d1) \\
168 : "a" (0), "0" (__FDSET_LONGS), \\
169 "1" ((__fd_set *) (fdsetp)) :"memory"); \\
173 \#define _TYPES_H_WRAPPER
174 \#endif /* _TYPES_H_WRAPPER */
180 * This fixes __FD_ZERO bug for glibc-2.0.x
183 hackname = AAB_fd_zero_selectbits_h;
184 files = selectbits.h;
185 mach = 'i[34567]86-*-linux*';
188 * Define _SELECTBITS_H_WRAPPER at the end of the wrapper, not
189 * the start, so that if #include_next gets another instance of
190 * the wrapper, this will follow the #include_next chain until
191 * we arrive at the real <selectbits.h>.
195 '/* This file fixes a bug in the __FD_ZERO macro present in glibc 2.0.x. */
196 \#ifndef _SELECTBITS_H_WRAPPER
197 \#include <features.h>
198 \#include_next <selectbits.h>
200 \#if defined(__FD_ZERO) && defined(__GLIBC__) \\
201 && defined(__GLIBC_MINOR__) && __GLIBC__ == 2 \\
202 && __GLIBC_MINOR__ == 0
204 \#define __FD_ZERO(fdsetp) \\
207 __asm__ __volatile__ ("cld; rep; stosl" \\
208 : "=&c" (__d0), "=&D" (__d1) \\
209 : "a" (0), "0" (sizeof (__fd_set) \\
210 / sizeof (__fd_mask)), \\
211 "1" ((__fd_mask *) (fdsetp)) \\
216 \#define _SELECTBITS_H_WRAPPER
217 \#endif /* _SELECTBITS_H_WRAPPER */
223 * Solaris <sys/varargs.h> is a DDK (aka kernel-land) header providing
224 * the same interface as <stdarg.h>. No idea why they couldn't have just
225 * used the standard header.
228 hackname = AAB_solaris_sys_varargs_h;
229 files = "sys/varargs.h";
230 mach = '*-*-solaris*';
231 replace = "#ifdef __STDC__\n"
232 "#include <stdarg.h>\n"
234 "#include <varargs.h>\n"
240 * Fix non-ANSI memcpy declaration that conflicts with gcc's builtin
241 * declaration on Sun OS 4.x. We must only fix this on Sun OS 4.x, because
242 * many other systems have similar text but correct versions of the file.
243 * To ensure only Sun's is fixed, we grep for a likely unique string.
244 * Fix also on sysV68 R3V7.1 (head/memory.h\t50.1\t )
247 hackname = AAB_sun_memcpy;
249 select = "/\\*\t@\\(#\\)"
250 "(head/memory.h\t50.1\t "
251 "|memory\\.h 1\\.[2-4] 8./../.. SMI; from S5R2 1\\.2\t)\\*/";
254 '/* This file was generated by fixincludes */
255 \#ifndef __memory_h__
256 \#define __memory_h__
259 extern void *memccpy();
260 extern void *memchr();
261 extern void *memcpy();
262 extern void *memset();
264 extern char *memccpy();
265 extern char *memchr();
266 extern char *memcpy();
267 extern char *memset();
268 \#endif /* __STDC__ */
272 \#endif /* __memory_h__ */
279 * Completely replace <sys/varargs.h> with a file that includes gcc's
280 * stdarg.h or varargs.h files as appropriate.
284 hackname = AAB_svr4_no_varargs;
285 files = sys/varargs.h;
286 replace = "/* This file was generated by fixincludes. */\n"
287 "#ifndef _SYS_VARARGS_H\n"
288 "#define _SYS_VARARGS_H\n\n"
291 "#include <stdarg.h>\n"
293 "#include <varargs.h>\n"
296 "#endif /* _SYS_VARARGS_H */\n";
302 * Completely replace <sys/byteorder.h>; with a file that implements gcc's
303 * optimized byteswapping. Restricted to "SVR4" machines until either
304 * it is shown to be safe to replace this file always, or we get bolder ;-)
307 hackname = AAB_svr4_replace_byteorder;
310 mach = "i[34567]86-*-sysv5*";
311 mach = "i[34567]86-*-udk*";
312 mach = "i[34567]86-*-solaris2.[0-4]";
313 mach = "powerpcle-*-solaris2.[0-4]";
314 mach = "sparc-*-solaris2.[0-4]";
316 files = sys/byteorder.h;
317 replace = '#ifndef _SYS_BYTEORDER_H
318 \#define _SYS_BYTEORDER_H
320 /* Functions to convert `short\' and `long\' quantities from host byte order
321 to (internet) network byte order (i.e. big-endian).
323 Written by Ron Guilmette (rfg@ncd.com).
325 This isn\'t actually used by GCC. It is installed by fixinc.svr4.
327 For big-endian machines these functions are essentially no-ops.
329 For little-endian machines, we define the functions using specialized
330 asm sequences in cases where doing so yields better code (e.g. i386). */
332 \#if !defined (__GNUC__) && !defined (__GNUG__)
333 \#error You lose! This file is only useful with GNU compilers.
336 \#ifndef __BYTE_ORDER__
337 /* Byte order defines. These are as defined on UnixWare 1.1, but with
338 double underscores added at the front and back. */
339 \#define __LITTLE_ENDIAN__ 1234
340 \#define __BIG_ENDIAN__ 4321
341 \#define __PDP_ENDIAN__ 3412
345 static __inline__ unsigned long htonl (unsigned long);
346 static __inline__ unsigned short htons (unsigned int);
347 static __inline__ unsigned long ntohl (unsigned long);
348 static __inline__ unsigned short ntohs (unsigned int);
349 \#endif /* defined (__STDC__) */
351 \#if defined (__i386__)
353 \#ifndef __BYTE_ORDER__
354 \#define __BYTE_ORDER__ __LITTLE_ENDIAN__
357 /* Convert a host long to a network long. */
359 /* We must use a new-style function definition, so that this will also
361 static __inline__ unsigned long
362 htonl (unsigned long __arg)
364 register unsigned long __result;
366 __asm__ ("xchg%B0 %b0,%h0
368 xchg%B0 %b0,%h0" : "=q" (__result) : "0" (__arg));
372 /* Convert a host short to a network short. */
374 static __inline__ unsigned short
375 htons (unsigned int __arg)
377 register unsigned short __result;
379 __asm__ ("xchg%B0 %b0,%h0" : "=q" (__result) : "0" (__arg));
383 \#elif ((defined (__i860__) && !defined (__i860_big_endian__)) \\
384 || defined (__ns32k__) || defined (__vax__) \\
385 || defined (__spur__) || defined (__arm__))
387 \#ifndef __BYTE_ORDER__
388 \#define __BYTE_ORDER__ __LITTLE_ENDIAN__
391 /* For other little-endian machines, using C code is just as efficient as
392 using assembly code. */
394 /* Convert a host long to a network long. */
396 static __inline__ unsigned long
397 htonl (unsigned long __arg)
399 register unsigned long __result;
401 __result = (__arg >> 24) & 0x000000ff;
402 __result |= (__arg >> 8) & 0x0000ff00;
403 __result |= (__arg << 8) & 0x00ff0000;
404 __result |= (__arg << 24) & 0xff000000;
408 /* Convert a host short to a network short. */
410 static __inline__ unsigned short
411 htons (unsigned int __arg)
413 register unsigned short __result;
415 __result = (__arg << 8) & 0xff00;
416 __result |= (__arg >> 8) & 0x00ff;
420 \#else /* must be a big-endian machine */
422 \#ifndef __BYTE_ORDER__
423 \#define __BYTE_ORDER__ __BIG_ENDIAN__
426 /* Convert a host long to a network long. */
428 static __inline__ unsigned long
429 htonl (unsigned long __arg)
434 /* Convert a host short to a network short. */
436 static __inline__ unsigned short
437 htons (unsigned int __arg)
442 \#endif /* big-endian */
444 /* Convert a network long to a host long. */
446 static __inline__ unsigned long
447 ntohl (unsigned long __arg)
449 return htonl (__arg);
452 /* Convert a network short to a host short. */
454 static __inline__ unsigned short
455 ntohs (unsigned int __arg)
457 return htons (__arg);
465 * Cancel out ansi_compat.h on Ultrix. Replace it with an empty file.
468 hackname = AAB_ultrix_ansi_compat;
469 files = ansi_compat.h;
471 replace = "/* This file intentionally left blank. */\n";
476 * The Ultrix 4.3 file limits.h is a symbolic link to sys/limits.h.
477 * Replace limits.h with a file that includes sys/limits.h.
480 hackname = AAB_ultrix_limits;
482 mach = "*-*-ultrix4.3";
484 '#ifndef _LIMITS_INCLUDED
485 \#define _LIMITS_INCLUDED
486 \#include <sys/limits.h>
487 \#endif /* _LIMITS_INCLUDED */
493 * The ULTRIX 4.3 version of memory.h duplicates definitions
494 * present in strings.h. Replace memory.h with a file that includes
495 * strings.h to prevent problems from multiple inclusion.
498 hackname = AAB_ultrix_memory;
500 mach = "*-*-ultrix4.3";
502 '#ifndef _MEMORY_INCLUDED
503 \#define _MEMORY_INCLUDED
504 \#include <strings.h>
505 \#endif /* _MEMORY_INCLUDED */
511 * The Ultrix 4.3 file string.h is a symbolic link to strings.h.
512 * Replace string.h link with a file that includes strings.h to prevent
513 * problems from multiple inclusion.
516 hackname = AAB_ultrix_string;
518 mach = "*-*-ultrix4.3";
520 '#ifndef _STRING_INCLUDED
521 \#define _STRING_INCLUDED
522 \#include <strings.h>
523 \#endif /* _STRING_INCLUDED */
529 * pthread.h on AIX 4.3.3 tries to define a macro without whitspace
530 * which violates a requirement of ISO C.
533 hackname = aix_pthread;
535 select = "(#define [A-Za-z_0-9]+)(\\\\\n[^A-Za-z_0-9 \t\n(])";
538 test_text = "#define PTHREAD_MUTEX_INITIALIZER\\\\\n"
539 "{...init stuff...}";
544 * sys/machine.h on AIX 4.3.3 puts whitespace between a \ and a newline
545 * in an otherwise harmless (and #ifed out) macro definition
548 hackname = aix_sysmachine;
549 files = sys/machine.h;
553 test_text = "#define FOO \\\n"
554 " bar \\ \n baz \\ \n bat";
559 * sys/wait.h on AIX 3.2.5 puts the declaration of wait3 before the
560 * definition of struct rusage, so the prototype added by fixproto fails.
563 hackname = aix_syswait;
565 select = "^extern pid_t wait3\\(\\);\n";
568 c_fix_arg = "struct rusage;\n%0";
569 test_text = "/* bos325, */\n"
570 "extern pid_t wait3();\n"
571 "\t/* pid_t wait3(int *, int, struct rusage *); */";
576 * sys/signal.h on some versions of AIX uses volatile in the typedef of
577 * sig_atomic_t, which causes gcc to generate a warning about duplicate
578 * volatile when a sig_atomic_t variable is declared volatile, as
579 * required by ANSI C.
582 hackname = aix_volatile;
583 files = sys/signal.h;
584 select = "typedef volatile int sig_atomic_t";
586 c_fix_arg = "typedef int sig_atomic_t";
587 test_text = "typedef volatile int sig_atomic_t;";
592 * Fix __assert declaration in assert.h on Alpha OSF/1.
595 hackname = alpha___assert;
597 select = '__assert\(char \*, char \*, int\)';
599 c_fix_arg = "__assert(const char *, const char *, int)";
600 test_text = 'extern void __assert(char *, char *, int);';
605 * Fix assert macro in assert.h on Alpha OSF/1.
606 * The superfluous int cast breaks C++.
609 hackname = alpha_assert;
611 select = '(#define assert\(EX\).*)\(\(int\) \(EX\)\)';
613 c_fix_arg = "%1(EX)";
614 test_text = '#define assert(EX) (((int) (EX)) ? (void)0 : __assert(#EX, __FILE__, __LINE__))';
619 * Fix getopt declarations in stdio.h and stdlib.h on Alpha OSF/1 and AIX.
622 hackname = alpha_getopt;
625 select = 'getopt\(int, char \*\[\], *char \*\)';
627 c_fix_arg = "getopt(int, char *const[], const char *)";
628 test_text = 'extern int getopt(int, char *[], char *);';
633 * Remove erroneous parentheses in sym.h on Alpha OSF/1.
636 hackname = alpha_parens;
638 select = '#ifndef\(__mips64\)';
640 c_fix_arg = "#ifndef __mips64";
641 test_text = "#ifndef(__mips64) /* bogus */\nextern int foo;\n#endif";
646 * Fix return value of sbrk in unistd.h on Alpha OSF/1 V2.0
649 hackname = alpha_sbrk;
651 select = "char[ \t]*\\*[\t ]*sbrk[ \t]*\\(";
653 c_fix_arg = "void *sbrk(";
654 test_text = "extern char* sbrk(ptrdiff_t increment);";
659 * Fix this ARM/RISCiX file where ___type is a Compiler
660 * hint that is specific to the Norcroft compiler.
663 hackname = arm_norcroft_hint;
664 select = "___type p_type";
665 files = "X11/Intrinsic.h";
667 c_fix_arg = "p_type";
668 test_text = "___type p_type mumble;";
673 * Fix this ARM/RISCiX file to avoid interfering
674 * with the use of __wchar_t in cc1plus.
677 hackname = arm_wchar;
679 select = "#[ \t]*define[ \t]*__wchar_t";
682 c_fix_arg = "%1_GCC_WCHAR_T";
683 c_fix_arg = "(#[ \t]*(ifndef|define)[ \t]+)__wchar_t";
686 "# ifndef \t __wchar_t /* we don't have wchar_t yet, ... */\n"
687 "# define __wchar_t short\n"
688 "# endif /* __wchar_t */";
693 * This file in A/UX 3.0.x/3.1.x contains an __asm directive for c89;
694 * gcc doesn't understand it.
699 select = "#ifndef NOINLINE";
702 c_fix_arg = "#if !defined(NOINLINE) && !defined(__GNUC__)";
705 "#ifndef NOINLINE /* ain't got no inline, so we got it */\n"
706 "#endif /* NOINLINE */";
711 * For C++, avoid any typedef or macro definition of bool,
712 * and use the built in type instead.
713 * HP/UX 10.20 also has it in curses_colr/curses.h.
716 hackname = avoid_bool_define;
718 files = curses_colr/curses.h;
722 select = "#[ \t]*define[ \t]+bool[ \t]";
723 bypass = "we must use the C\\+\\+ compiler's type";
726 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
727 c_fix_arg = "^[ \t]*#[ \t]*define[ \t]+bool[ \t].*";
729 test_text = "# define bool\t char \n";
733 hackname = avoid_bool_type;
735 files = curses_colr/curses.h;
739 select = "^[ \t]*typedef[ \t].*[ \t]bool[ \t]*;";
740 bypass = "we must use the C\\+\\+ compiler's type";
743 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
745 test_text = "typedef unsigned int\tbool \t; /* bool\n type */";
749 * For C++, avoid any typedef definition of wchar_t,
750 * and use the built in type instead.
754 hackname = avoid_wchar_t_type;
756 select = "^[ \t]*typedef[ \t].*[ \t]wchar_t[ \t]*;";
759 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
761 test_text = "typedef unsigned short\twchar_t \t; /* wchar_t\n type */";
765 * Fix #defines under Alpha OSF/1:
766 * The following files contain '#pragma extern_prefix "_FOO"' followed by
767 * a '#define something(x,y,z) _FOOsomething(x,y,z)'. The intent of these
768 * statements is to reduce namespace pollution. While these macros work
769 * properly in most cases, they don't allow you to take a pointer to the
770 * "something" being modified. To get around this limitation, change these
771 * statements to be of the form '#define something _FOOsomething'.
773 * sed ain't egrep, lesson 2463: sed can use self-referential
774 * regular expressions. In the substitute expression below,
775 * "\\1" and "\\2" refer to subexpressions found earlier in the
776 * same match. So, we continue to use sed. "extern_prefix" will
777 * be a rare match anyway...
782 select = "^[ \t]*#[ \t]*pragma[ \t]+extern_prefix";
800 "s/^[ \t]*#[ \t]*define[ \t][ \t]*\\([^(]*\\)\\(([^)]*)\\)[ \t]*"
801 "\\(_.*\\)\\1\\2[ \t]*$/#define \\1 \\3\\1/";
803 test_text = '#pragma extern_prefix "_FOO"'"\n"
804 "#define something(x,y,z) _FOOsomething(x,y,z)\n"
805 "#define mumble _FOOmumble";
810 * Fix `typedef struct term;' on hppa1.1-hp-hpux9.
813 hackname = bad_struct_term;
815 select = "^[ \t]*typedef[ \t]+struct[ \t]+term[ \t]*;";
817 c_fix_arg = "struct term;";
819 test_text = 'typedef struct term;';
824 * Fix one other error in this file:
825 * a mismatched quote not inside a C comment.
829 files = sundev/vuid_event.h;
832 c_fix_arg = "does not";
834 test_text = "/* doesn't have matched single quotes */";
839 * check for broken assert.h that needs stdio.h
842 hackname = broken_assert_stdio;
845 bypass = "include.*stdio\\.h";
847 c_fix_arg = "#include <stdio.h>\n";
848 test_text = "extern FILE* stderr;";
853 * check for broken assert.h that needs stdlib.h
856 hackname = broken_assert_stdlib;
858 select = 'exit *\(|abort *\(';
859 bypass = "include.*stdlib\\.h";
861 c_fix_arg = "#ifdef __cplusplus\n"
862 "#include <stdlib.h>\n"
864 test_text = "extern void exit ( int );";
869 * Remove `extern double cabs' declarations from math.h.
870 * This conflicts with C99. Discovered on AIX.
871 * SunOS4 has its cabs() declaration followed by a comment which
872 * terminates on the following line.
875 hackname = broken_cabs;
877 select = '^extern[ \t]+double[ \t]+cabs';
881 c_fix_arg = "^extern[ \t]+double[ \t]+cabs\\((struct dbl_hypot|)\\);";
883 test_text = "#ifdef __STDC__\n"
884 "extern double cabs(struct dbl_hypot);\n"
886 "extern double cabs();\n"
888 "extern double cabs(); /* This is a comment\n"
889 " and it ends here. */";
894 * Fix various macros used to define ioctl numbers.
895 * The traditional syntax was:
897 * #define _CTRL(n, x) (('n'<<8)+x)
898 * #define TCTRLCFOO _CTRL(T, 1)
900 * but this does not work with the C standard, which disallows macro
901 * expansion inside strings. We have to rewrite it thus:
903 * #define _CTRL(n, x) ((n<<8)+x)
904 * #define TCTRLCFOO _CTRL('T', 1)
906 * The select expressions match too much, but the c_fix code is cautious.
908 * CTRL might be: CTRL _CTRL ISCTRL BSD43_CTRL ...
911 hackname = ctrl_quotes_def;
912 select = "define[ \t]+[A-Z0-9_]+CTRL\\([a-zA-Z][,)]";
913 c_fix = char_macro_def;
917 * This is two tests in order to ensure that the "CTRL(c)" can
918 * be selected in isolation from the multi-arg format
920 test_text = "#define BSD43_CTRL(n, x) (('n'<<8)+x)\n";
921 test_text = "#define _CTRL(c) ('c'&037)";
925 hackname = ctrl_quotes_use;
926 select = "define[ \t]+[A-Z0-9_]+[ \t]+[A-Z0-9_]+CTRL[ \t]*\\( *[^,']";
927 c_fix = char_macro_use;
929 test_text = "#define TCTRLFOO BSD43_CTRL(T, 1)";
934 * sys/mman.h on HP/UX is not C++ ready,
935 * even though NO_IMPLICIT_EXTERN_C is defined on HP/UX.
937 * rpc/types.h on OSF1/2.0 is not C++ ready,
938 * even though NO_IMPLICIT_EXTERN_C is defined for the alpha.
940 * The problem is the declaration of malloc.
943 hackname = cxx_unready;
946 select = '[^#]+malloc.*;'; /* Catch any form of declaration
947 not within a macro. */
948 bypass = '"C"|__BEGIN_DECLS';
951 c_fix_arg = "#ifdef __cplusplus\n"
954 c_fix_arg = "#ifdef __cplusplus\n"
957 test_text = "extern void* malloc( size_t );";
962 * Fix <c_asm.h> on Digital UNIX V4.0:
963 * It contains a prototype for a DEC C internal asm() function,
964 * clashing with gcc's asm keyword. So protect this with __DECC.
967 hackname = dec_intern_asm;
969 sed = "/^[ \t]*float[ \t]*fasm/i\\\n#ifdef __DECC\n";
970 sed = "/^[ \t]*#[ \t]*pragma[ \t]*intrinsic([ \t]*dasm/a\\\n"
974 " ... asm stuff ...\n"
975 "};\n#pragma intrinsic( dasm )\n/* END ASM TEST*/";
980 * Fix typo in <wchar.h> on DJGPP 2.03.
983 hackname = djgpp_wchar_h;
985 select = "__DJ_wint_t";
986 bypass = "sys/djtypes.h";
988 c_fix_arg = "%0\n#include <sys/djtypes.h>";
989 c_fix_arg = "#include <stddef.h>";
990 test_text = "#include <stddef.h>\n"
991 "extern __DJ_wint_t x;\n";
995 * Fix these Sun OS files to avoid an invalid identifier in an #ifdef.
998 hackname = ecd_cursor;
999 files = "sunwindow/win_lock.h";
1000 files = "sunwindow/win_cursor.h";
1001 select = 'ecd\.cursor';
1003 c_fix_arg = 'ecd_cursor';
1005 test_text = "#ifdef ecd.cursor\n#error bogus\n#endif /* ecd+cursor */";
1010 * fix-header doesn't fix fabs' prototype, and I have no idea why.
1013 hackname = fix_header_breakage;
1014 mach = "m88k-motorola-sysv3*";
1017 select = 'extern double floor\(\), ceil\(\), fmod\(\), fabs\(\);';
1020 'extern double floor(), ceil(), fmod(), fabs _PARAMS((double));';
1021 test_text = 'extern double floor(), ceil(), fmod(), fabs();';
1026 * Between 8/24/1998 and 2/17/2001, FreeBSD system headers presume
1027 * neither the existence of GCC 3 nor its exact feature set yet break
1028 * (by design?) when __GNUC__ is set beyond 2.
1031 hackname = freebsd_gcc3_breakage;
1032 mach = *-*-freebsd*;
1033 files = sys/cdefs.h;
1034 select = '^#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7$';
1035 bypass = '__GNUC__[ \t]*([>=]=[ \t]*[3-9]|>[ \t]*2)';
1037 c_fix_arg = '%0 || __GNUC__ >= 3';
1038 test_text = '#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7';
1043 * Fix these files to use the same types that we think they should.
1046 hackname = gnu_types;
1047 files = "sys/types.h";
1049 files = "sys/stdtypes.h";
1053 bypass = '_GCC_(PTRDIFF|SIZE|WCHAR)_T';
1054 select = "^[ \t]*typedef[ \t]+.*[ \t](ptrdiff|size|wchar)_t;";
1057 test_text = "typedef long int ptrdiff_t; /* long int */\n"
1058 "typedef uint_t size_t; /* uint_t */\n"
1059 "typedef ushort_t wchar_t; /* ushort_t */";
1064 * Fix HP & Sony's use of "../machine/xxx.h"
1065 * to refer to: <machine/xxx.h>
1068 hackname = hp_inline;
1069 files = sys/spinlock.h;
1070 files = machine/machparam.h;
1071 select = "[ \t]*#[ \t]*include[ \t]+" '"\.\./machine/';
1074 c_fix_arg = "%1<machine/%2.h>";
1076 c_fix_arg = "([ \t]*#[ \t]*include[ \t]+)" '"\.\./machine/'
1079 test_text = ' # include "../machine/mumble.h"';
1084 * Check for (...) in C++ code in HP/UX sys/file.h.
1087 hackname = hp_sysfile;
1089 select = "HPUX_SOURCE";
1092 c_fix_arg = "(struct file *, ...)";
1093 c_fix_arg = '\(\.\.\.\)';
1095 test_text = "extern void foo(...); /* HPUX_SOURCE - bad varargs */";
1100 * Delete C++ double pow (double, int) inline function from HP-UX 10 & 11
1101 * math.h to prevent clash with define in c_std/bits/std_cmath.h.
1104 hackname = hpux10_cpp_pow_inline;
1105 files = fixinc-test-limits.h, math.h;
1106 select = <<- END_POW_INLINE
1107 ^# +ifdef +__cplusplus
1109 +inline +double +pow\(double +__d,int +__expon\) +{
1110 [ ]+return +pow\(__d,\(double\)__expon\);
1121 "# ifdef __cplusplus\n"
1123 " inline double pow(double __d,int __expon) {\n"
1124 "\t return pow(__d,(double)__expon);\n"
1126 ' extern "C"' " {\n"
1132 hackname = hpux11_cpp_pow_inline;
1134 select = " +inline double pow\\(double d,int expon\\) {\n"
1135 " +return pow\\(d, \\(double\\)expon\\);\n"
1141 " inline double pow(double d,int expon) {\n"
1142 " return pow(d, (double)expon);\n"
1148 * Keep HP-UX 11 from stomping on C++ math namespace
1149 * with defines for fabsf.
1152 hackname = hpux11_fabsf;
1154 select = "^[ \t]*#[ \t]*define[ \t]+fabsf\\(.*";
1155 bypass = "__cplusplus";
1158 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
1162 "# define fabsf(x) ((float)fabs((double)(float)(x)))\n"
1168 * Make sure hpux defines abs in header.
1171 hackname = hpux11_abs;
1172 mach = ia64-hp-hpux11*;
1174 select = "ifndef _MATH_INCLUDED";
1176 c_fix_arg = "if !defined(_MATH_INCLUDED) || defined(__GNUG__)";
1177 // sed = "s/ifndef _MATH_INCLUDED/if !defined(_MATH_INCLUDED) || defined(__GNUG__)/";
1178 test_text = "#ifndef _MATH_INCLUDED";
1183 * Prevent HP-UX 11 from defining __size_t and preventing size_t from
1184 * being defined by having it define _hpux_size_t instead.
1187 hackname = hpux11_size_t;
1188 mach = "*-hp-hpux11*";
1189 select = "__size_t";
1192 c_fix_arg = "_hpux_size_t";
1195 "#define __size_t size_t\n"
1196 " extern int getpwuid_r( char *, __size_t, struct passwd **);\n";
1201 * In inttypes.h on HPUX 11, the use of __CONCAT__ in the definition
1202 * of UINT32_C has undefined behavior according to ISO/ANSI:
1203 * the arguments to __CONCAT__ are not macro expanded before the
1204 * concatination happens so the trailing ')' in the first argument
1205 * is concatinated with the 'l' in the second argument creating an
1206 * invalid pp token. The behavior of invalid pp tokens is undefined.
1207 * GCC does not handle these invalid tokens the way the HP compiler does.
1208 * This problem will potentially occur anytime macros are used in the
1209 * arguments to __CONCAT__. A general solution to this problem would be to
1210 * insert another layer of macro between __CONCAT__ and its use
1211 * in UINT32_C. An example of this solution can be found in the C standard.
1212 * A more specific solution, the one used here, is to change the UINT32_C
1213 * macro to not used macros in the arguments to __CONCAT__.
1216 hackname = hpux11_uint32_c;
1218 select = "^#define UINT32_C\\(__c\\)[ \t]*"
1219 "__CONCAT__\\(__CONCAT_U__\\(__c\\),l\\)";
1221 c_fix_arg = '#define UINT32_C(__c) __CONCAT__(__c,ul)';
1223 "#define CONCAT_U__(__c)\t__CONCAT__(__c,u)\n"
1224 "#define UINT32_C(__c)\t__CONCAT__(__CONCAT_U__(__c),l)";
1229 * Fix hpux 11.00 broken vsnprintf declaration
1232 hackname = hpux11_vsnprintf;
1234 select = '(extern int vsnprintf\(char \*, _[hpux]*_size_t, '
1235 'const char \*,) __va__list\);';
1237 c_fix_arg = "%1 __va_list);";
1239 test_text = 'extern int vsnprintf(char *, _hpux_size_t, const char *,'
1245 * get rid of bogus inline definitions in HP-UX 8.0
1248 hackname = hpux8_bogus_inlines;
1251 sed = "s@inline int abs(int [a-z][a-z]*) {.*}"
1252 "@extern \"C\" int abs(int);@";
1253 sed = "s@inline double abs(double [a-z][a-z]*) {.*}@@";
1254 sed = "s@inline int sqr(int [a-z][a-z]*) {.*}@@";
1255 sed = "s@inline double sqr(double [a-z][a-z]*) {.*}@@";
1256 test_text = "inline int abs(int v) { return (v>=0)?v:-v; }\n"
1257 "inline double sqr(double v) { return v**0.5; }";
1262 * HPUX 10.x sys/param.h defines MAXINT which clashes with values.h
1265 hackname = hpux_maxint;
1266 files = sys/param.h;
1268 select = "^#[ \t]*define[ \t]+MAXINT[ \t]";
1269 bypass = "^#[ \t]*ifndef[ \t]+MAXINT";
1271 "-n \"`egrep '#[ \t]*define[ \t]+MAXINT[ \t]' sys/param.h`\"";
1274 c_fix_arg = "#ifndef MAXINT\n%0\n#endif";
1275 c_fix_arg = "^#[ \t]*define[ \t]+MAXINT[ \t].*";
1277 test_text = '#define MAXINT 0x7FFFFFFF';
1282 * Fix hpux10.20 <sys/time.h> to avoid invalid forward decl
1285 hackname = hpux_systime;
1287 select = "^extern struct sigevent;";
1290 c_fix_arg = "struct sigevent;";
1292 test_text = 'extern struct sigevent;';
1297 * Fix return type of abort and free
1300 hackname = int_abort_free_and_exit;
1302 select = "int[ \t]+(abort|free|exit)[ \t]*\\(";
1305 c_fix_arg = "void\t%1(";
1307 test_text = "extern int abort(int);\n"
1308 "extern int free(void*);\n"
1309 "extern int exit(void*);";
1314 * Fix various macros used to define ioctl numbers.
1315 * The traditional syntax was:
1317 * #define _IO(n, x) (('n'<<8)+x)
1318 * #define TIOCFOO _IO(T, 1)
1320 * but this does not work with the C standard, which disallows macro
1321 * expansion inside strings. We have to rewrite it thus:
1323 * #define _IO(n, x) ((n<<8)+x)
1324 * #define TIOCFOO _IO('T', 1)
1326 * The select expressions match too much, but the c_fix code is cautious.
1328 * _IO might be: _IO DESIO BSD43__IO with W, R, WR, C, ... suffixes.
1331 hackname = io_quotes_def;
1332 select = "define[ \t]+[A-Z0-9_]+IO[A-Z]*\\([a-zA-Z][,)]";
1333 c_fix = char_macro_def;
1336 "#define BSD43__IOWR(n, x) (('n'<<8)+x)\n"
1337 "#define _IOWN(x,y,t) (_IOC_IN|(((t)&_IOCPARM_MASK)<<16)|('x'<<8)|y)\n"
1338 "#define _IO(x,y) ('x'<<8|y)";
1340 "#define XX_IO(x) ('x'<<8|256)";
1344 hackname = io_quotes_use;
1345 select = "define[ \t]+[A-Z0-9_]+[ \t]+[A-Z0-9_]+IO[A-Z]*[ \t]*"
1347 c_fix = char_macro_use;
1349 test_text = "#define TIOCFOO BSD43__IOWR(T, 1)\n"
1350 "#define TIOCFOO \\\\\n"
1351 "BSD43__IOWR(T, 1) /* Some are multi-line */";
1356 * Check for missing ';' in struct
1359 hackname = ip_missing_semi;
1360 files = netinet/ip.h;
1362 sed = "/^struct/,/^};/s/}$/};/";
1368 "}; /* mumbled struct */\n";
1373 * IRIX 5.2's <sys/asm.h> contains an asm comment with a contraction
1374 * that causes the assembly preprocessor to complain about an
1375 * unterminated character constant.
1378 hackname = irix_asm_apostrophe;
1381 select = "^[ \t]*#.*[Ww]e're";
1383 c_fix_arg = "%1 are";
1384 c_fix_arg = "^([ \t]*#.*[Ww]e)'re";
1385 test_text = "\t# and we're on vacation";
1390 * Non-traditional "const" declaration in Irix's limits.h.
1393 hackname = irix_limits_const;
1394 files = fixinc-test-limits.h, limits.h;
1395 select = "^extern const ";
1397 c_fix_arg = "extern __const ";
1398 test_text = "extern const char limit; /* test limits */";
1403 * IRIX 5.x's stdio.h declares some functions that take a va_list as
1404 * taking char *. However, GCC uses void * for va_list, so
1405 * calling vfprintf with a va_list fails in C++. */
1407 hackname = irix_stdio_va_list;
1410 select = '(printf\(.*), /\* va_list \*/ char \*';
1412 c_fix_arg = "%1, __gnuc_va_list";
1414 "extern int printf( const char *, /* va_list */ char * );";
1419 * Fixing ISC fmod declaration
1422 hackname = isc_fmod;
1424 select = 'fmod\(double\)';
1426 c_fix_arg = "fmod(double, double)";
1427 test_text = "extern double fmod(double);";
1432 * On Interactive Unix 2.2, certain traditional Unix definitions
1433 * (notably getc and putc in stdio.h) are omitted if __STDC__ is
1434 * defined, not just if _POSIX_SOURCE is defined. This makes it
1435 * impossible to compile any nontrivial program except with -posix.
1438 hackname = isc_omits_with_stdc;
1443 files = "sys/limits.h";
1444 files = "sys/fcntl.h";
1445 files = "sys/dirent.h";
1447 select = '!defined\(__STDC__\) && !defined\(_POSIX_SOURCE\)';
1449 c_fix_arg = '!defined(_POSIX_SOURCE)';
1450 test_text = "#if !defined(__STDC__) && !defined(_POSIX_SOURCE) /* ? ! */"
1451 "\nint foo;\n#endif";
1456 * These files in Sun OS 4.x and ARM/RISCiX and BSD4.3
1457 * use / * * / to concatenate tokens.
1460 hackname = kandr_concat;
1461 files = "sparc/asm_linkage.h";
1462 files = "sun3/asm_linkage.h";
1463 files = "sun3x/asm_linkage.h";
1464 files = "sun4/asm_linkage.h";
1465 files = "sun4c/asm_linkage.h";
1466 files = "sun4m/asm_linkage.h";
1467 files = "sun4c/debug/asm_linkage.h";
1468 files = "sun4m/debug/asm_linkage.h";
1469 files = "arm/as_support.h";
1470 files = "arm/mc_type.h";
1471 files = "arm/xcb.h";
1472 files = "dev/chardefmac.h";
1473 files = "dev/ps_irq.h";
1474 files = "dev/screen.h";
1475 files = "dev/scsi.h";
1476 files = "sys/tty.h";
1477 files = "Xm.acorn/XmP.h";
1478 files = bsd43/bsd43_.h;
1482 test_text = "#define __CONCAT__(a,b) a/**/b";
1487 * GNU libc1 string.h does not prototype memcpy and memcmp for gcc
1488 * versions > 1. This fix will open up the declaration for all
1489 * versions of GCC and for g++.
1492 hackname = libc1_ifdefd_memx;
1494 /* The string.h result is overwritten by AAB_ultrix_string when doing
1495 "make check" and will fail. Therefore, we add the following kludgery
1496 to insert the test_text into the special testing header. :-} */
1501 select = "' is a built-in function for gcc 2\\.x\\. \\*/";
1502 bypass = __cplusplus;
1505 '/\* `mem...\' is a built-in function for gcc 2\.x\. \*/' "\n"
1506 '#if defined\(__STDC__\) && __GNUC__ < 2' "\n"
1508 "extern [a-z_]+ mem.*(\n[^#].*)*;)\n"
1512 "/* \\`memcpy' is a built-in function for gcc 2.x. */\n"
1513 "#if defined(__STDC__) && __GNUC__ < 2\n"
1514 "/* Copy N bytes of SRC to DEST. */\n"
1515 "extern __ptr_t memcpy __P ((__ptr_t __dest, __const __ptr_t __src,\n"
1522 * In limits.h, put #ifndefs around things that are supposed to be defined
1523 * in float.h to avoid redefinition errors if float.h is included first.
1524 * On HP/UX this patch does not work, because on HP/UX limits.h uses
1525 * multi line comments and the inserted #endif winds up inside the
1526 * comment. Fortunately, HP/UX already uses #ifndefs in limits.h; if
1527 * we find a #ifndef FLT_MIN we assume that all the required #ifndefs
1528 * are there, and we do not add them ourselves.
1531 hackname = limits_ifndefs;
1532 files = "sys/limits.h";
1534 bypass = "ifndef[ \t]+FLT_MIN";
1537 c_fix_arg = "#ifndef %1\n%0\n#endif";
1538 c_fix_arg = "^[ \t]*#[ \t]*define[ \t]+"
1539 "((FLT|DBL)_(MIN|MAX|DIG))[ \t].*";
1540 test_text = " #\tdefine\tDBL_DIG \t 0 /* somthin' */";
1545 * Delete the '#define void int' line from curses.h on Lynx
1548 hackname = lynx_void_int;
1550 select = "#[ \t]*define[ \t]+void[ \t]+int[ \t]*";
1553 test_text = "# define\tvoid\tint \t/* curses foiled again */";
1558 * Fix fcntl prototype in fcntl.h on LynxOS.
1561 hackname = lynxos_fcntl_proto;
1563 select = "fcntl[ \t]*" '\(int, int, int\)';
1565 c_fix_arg = '%1...)';
1566 c_fix_arg = "(fcntl[ \t]*" '\(int, int, )int\)';
1567 test_text = "extern int fcntl(int, int, int);";
1572 * libm.a on m88k-motorola-sysv3 contains a stupid optimization for
1573 * function hypot(), which returns the second argument without even
1574 * looking at its value, if the other is 0.0.
1577 hackname = m88k_bad_hypot_opt;
1578 mach = "m88k-motorola-sysv3*";
1580 select = "^extern double hypot\\(\\);\n";
1583 "/* Workaround a stupid Motorola optimization if one\n"
1584 " of x or y is 0.0 and the other is negative! */\n"
1586 "static __inline__ double fake_hypot (double x, double y)\n"
1588 "static __inline__ double fake_hypot (x, y)\n"
1592 "\treturn fabs (hypot (x, y));\n"
1594 "#define hypot\tfake_hypot\n";
1595 test_text = "extern double hypot();";
1600 * Fix incorrect S_IF* definitions on m88k-sysv3.
1603 hackname = m88k_bad_s_if;
1604 mach = "m88k-*-sysv3*";
1606 select = "#define[ \t]+S_IS[A-Z]+\\(m\\)[ \t]+\\(m[ \t]*&";
1609 c_fix_arg = '#define %1(m) (((m) & S_IFMT) == %2)';
1610 c_fix_arg = "#define[ \t]+(S_IS[A-Z]+)\\(m\\)[ \t]+"
1612 "(S_IF[A-Z][A-Z][A-Z]+|0[0-9]+)"
1614 test_text = '#define S_ISREG(m) (m & S_IFREG) /* is regular? */';
1619 * Put cpp wrappers around these include files to avoid redeclaration
1620 * errors during multiple inclusion on m88k-tektronix-sysv3.
1623 hackname = m88k_multi_incl;
1624 mach = "m88k-tektronix-sysv3*";
1633 * Fix BSD machine/ansi.h to use __builtin_va_list to define _BSD_VA_LIST_.
1635 * On NetBSD, machine is a symbolic link to an architecture specific
1636 * directory name, so we can't match a specific file name here.
1639 hackname = machine_ansi_h_va_list;
1640 select = "define[ \t]+_BSD_VA_LIST_[ \t]";
1641 bypass = '__builtin_va_list';
1644 c_fix_arg = "%1__builtin_va_list";
1645 c_fix_arg = "(define[ \t]+_BSD_VA_LIST_[ \t]+).*";
1647 test_text = " # define _BSD_VA_LIST_\tchar**";
1652 * Fix non-ansi machine name defines
1655 hackname = machine_name;
1656 c_test = machine_name;
1657 c_fix = machine_name;
1659 test_text = "/* MACH_DIFF: */\n"
1660 "#if defined( i386 ) || defined( sparc ) || defined( vax )"
1661 "\n/* no uniform test, so be careful :-) */";
1666 * Some math.h files define struct exception, which conflicts with
1667 * the class exception defined in the C++ file std/stdexcept.h. We
1668 * redefine it to __math_exception. This is not a great fix, but I
1669 * haven't been able to think of anything better.
1670 * Note that we have to put the #ifdef/#endif blocks at beginning
1671 * and end of file, because fixproto runs after us and may insert
1672 * additional references to struct exception.
1675 hackname = math_exception;
1677 select = "struct exception";
1678 bypass = 'We have a problem when using C\+\+';
1681 c_fix_arg = "#ifdef __cplusplus\n"
1682 "#define exception __math_exception\n"
1685 c_fix_arg = "#ifdef __cplusplus\n"
1686 "#undef exception\n"
1689 test_text = "typedef struct exception t_math_exception;";
1694 * This looks pretty broken to me. ``dbl_max_def'' will contain
1695 * "define DBL_MAX " at the start, when what we really want is just
1696 * the value portion. Can't figure out how to write a test case
1697 * for this either :-(
1700 hackname = math_huge_val_from_dbl_max;
1704 * IF HUGE_VAL is defined to be DBL_MAX *and* DBL_MAX is _not_ defined
1705 * in math.h, this fix applies.
1707 select = "define[ \t]+HUGE_VAL[ \t]+DBL_MAX";
1708 bypass = "define[ \t]+DBL_MAX";
1712 * See if we have a definition for DBL_MAX in float.h.
1713 * If we do, we will replace the one in math.h with that one.
1716 "\tdbl_max_def=`egrep 'define[ \t]+DBL_MAX[ \t]+.*' float.h "
1717 "| sed 's/.*DBL_MAX[ \t]*//' 2>/dev/null`\n\n"
1719 "\tif ( test -n \"${dbl_max_def}\" ) > /dev/null 2>&1\n"
1720 "\tthen sed -e '/define[ \t]*HUGE_VAL[ \t]*DBL_MAX/"
1721 "s@DBL_MAX@'\"$dbl_max_def@\"\n"
1726 "`echo '#define DBL_MAX\t3.1415e+9 /* really big */' >> float.h`\n"
1727 "#define HUGE_VAL DBL_MAX";
1732 * In any case, put #ifndef .. #endif around #define HUGE_VAL in math.h.
1735 hackname = math_huge_val_ifndef;
1737 files = math/math.h;
1738 select = "define[ \t]+HUGE_VAL";
1741 c_fix_arg = "#ifndef HUGE_VAL\n%0\n#endif";
1742 c_fix_arg = "^[ \t]*#[ \t]*define[ \t]+HUGE_VAL[ \t].*";
1744 test_text = "# define\tHUGE_VAL 3.4e+40";
1752 hackname = nested_auth_des;
1754 select = '(/\*.*rpc/auth_des\.h>.*)/\*';
1756 c_fix_arg = "%1*/ /*";
1757 test_text = "/*#include <rpc/auth_des.h> /* skip this */";
1762 * Fix nested comments in Motorola's <limits.h> and <sys/limits.h>
1765 hackname = nested_motorola;
1766 mach = "m68k-motorola-sysv*";
1767 files = sys/limits.h;
1769 select = "max # bytes atomic in write|error value returned by Math lib";
1771 sed = "s@^\\(#undef[ \t][ \t]*PIPE_BUF[ \t]*"
1772 "/\\* max # bytes atomic in write to a\\)$@\\1 */@";
1773 sed = "s@\\(/\\*#define\tHUGE_VAL\t3.[0-9e+]* \\)"
1774 "\\(/\\*error value returned by Math lib\\*/\\)$@\\1*/ \\2@";
1777 "#undef PIPE_BUF /* max # bytes atomic in write to a\n"
1779 "/*#define\tHUGE_VAL\t3.9e+9 /*error value returned by Math lib*/";
1784 * Fixing nested comments in ISC <sys/limits.h>
1787 hackname = nested_sys_limits;
1788 files = sys/limits.h;
1790 sed = "/CHILD_MAX/s,/\\* Max, Max,";
1791 sed = "/OPEN_MAX/s,/\\* Max, Max,";
1792 test_text = "/*\n#define CHILD_MAX 20 /* Max, Max, ... */ /*\n"
1793 "#define OPEN_MAX 20 /* Max, Max, ... */\n";
1797 * fix bogus recursive stdlib.h in NEWS-OS 4.0C
1800 hackname = news_os_recursion;
1802 select = "[ \t]*#include <stdlib\\.h>.*";
1805 c_fix_arg = "#ifdef BOGUS_RECURSION\n%0\n#endif";
1806 test_text = "#include <stdlib.h>";
1811 * NeXT 3.2 adds const prefix to some math functions.
1812 * These conflict with the built-in functions.
1815 hackname = next_math_prefix;
1816 files = ansi/math.h;
1817 select = "^extern[ \t]+double[ \t]+__const__[ \t]";
1820 c_fix_arg = "extern double %1(";
1821 c_fix_arg = "^extern[ \t]+double[ \t]+__const__[ \t]+([a-z]+)\\(";
1823 test_text = "extern\tdouble\t__const__\tmumble();";
1828 * NeXT 3.2 uses the word "template" as a parameter for some
1829 * functions. GCC reports an invalid use of a reserved key word
1830 * with the built-in functions.
1833 hackname = next_template;
1835 select = "[ \t]template\\)";
1839 c_fix_arg = "\\(([^)]*)[ \t]template\\)";
1840 test_text = "extern mumble( char * template); /* fix */";
1845 * NeXT 3.2 includes the keyword volatile in the abort() and exit()
1846 * function prototypes. That conflicts with the built-in functions.
1849 hackname = next_volitile;
1850 files = ansi/stdlib.h;
1851 select = "^extern[ \t]+volatile[ \t]+void[ \t]";
1854 c_fix_arg = "extern void %1(";
1855 c_fix_arg = "^extern[ \t]+volatile[ \t]+void[ \t]+(exit|abort)\\(";
1857 test_text = "extern\tvolatile\tvoid\tabort();";
1862 * NeXT 2.0 defines 'int wait(union wait*)', which conflicts with Posix.1.
1863 * Note that version 3 of the NeXT system has wait.h in a different directory,
1864 * so that this code won't do anything. But wait.h in version 3 has a
1865 * conditional, so it doesn't need this fix. So everything is okay.
1868 hackname = next_wait_union;
1871 select = 'wait\(union wait';
1873 c_fix_arg = "wait(void";
1874 test_text = "extern pid_d wait(union wait*);";
1879 * a missing semi-colon at the end of the nodeent structure definition.
1882 hackname = nodeent_syntax;
1883 files = netdnet/dnetdb.h;
1884 select = "char[ \t]*\\*na_addr[ \t]*$";
1887 test_text = "char *na_addr\t";
1892 * sys/lc_core.h on some versions of OSF1/4.x pollutes the namespace by
1893 * defining regex.h related types. This causes libg++ build and usage
1894 * failures. Fixing this correctly requires checking and modifying 3 files.
1897 hackname = osf_namespace_a;
1898 files = reg_types.h;
1899 files = sys/lc_core.h;
1900 test = " -r reg_types.h";
1901 test = " -r sys/lc_core.h";
1902 test = " -n \"`grep '} regex_t;' reg_types.h`\"";
1903 test = " -z \"`grep __regex_t regex.h`\"";
1907 c_fix_arg = "reg(ex|off|match)_t";
1909 test_text = "`touch sys/lc_core.h`"
1910 "typedef struct {\n int stuff, mo_suff;\n} regex_t;\n"
1911 "extern regex_t re;\n"
1912 "extern regoff_t ro;\n"
1913 "extern regmatch_t rm;\n";
1917 hackname = osf_namespace_c;
1919 test = " -r reg_types.h";
1920 test = " -r sys/lc_core.h";
1921 test = " -n \"`grep '} regex_t;' reg_types.h`\"";
1922 test = " -z \"`grep __regex_t regex.h`\"";
1924 select = "#include <reg_types\.h>.*";
1927 "typedef __regex_t\tregex_t;\n"
1928 "typedef __regoff_t\tregoff_t;\n"
1929 "typedef __regmatch_t\tregmatch_t;";
1931 test_text = "#include <reg_types.h>";
1936 * Fix __page_size* declarations in pthread.h AIX 4.1.[34].
1937 * The original ones fail if uninitialized externs are not common.
1938 * This is the default for all ANSI standard C++ compilers.
1941 hackname = pthread_page_size;
1943 select = "^int __page_size";
1945 c_fix_arg = "extern %0";
1946 test_text = "int __page_size;";
1951 * Fix return type of fread and fwrite on sysV68
1954 hackname = read_ret_type;
1956 select = "extern int\t.*, fread\\(\\), fwrite\\(\\)";
1958 c_fix_arg = "extern unsigned int fread(), fwrite();\n%1%2";
1959 c_fix_arg = "(extern int\t.*), fread\\(\\), fwrite\\(\\)(.*)";
1961 test_text = "extern int\tfclose(), fflush(), fread(), fwrite(), foo();";
1966 * function class(double x) conflicts with C++ keyword on rs/6000
1969 hackname = rs6000_double;
1971 select = '[^a-zA-Z_]class\(';
1974 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
1975 c_fix_arg = '^.*[^a-zA-Z_]class\(.*';
1977 test_text = "extern int class();";
1982 * Wrong fchmod prototype on RS/6000.
1985 hackname = rs6000_fchmod;
1987 select = 'fchmod\(char \*';
1989 c_fix_arg = "fchmod(int";
1990 test_text = "extern int fchmod(char *, mode_t);";
1995 * parameters conflict with C++ new on rs/6000
1998 hackname = rs6000_param;
2002 select = 'rename\(const char \*old, const char \*new\)';
2004 c_fix_arg = 'rename(const char *_old, const char *_new)';
2006 test_text = 'extern int rename(const char *old, const char *new);';
2011 * The static functions lstat() and fchmod() in <sys/stat.h>
2012 * cause G++ grief since they're not wrapped in "if __cplusplus".
2014 * On SCO OpenServer 5.0.0 through (at least) 5.0.5 <sys/stat.h> contains
2015 * tiny static wrappers that aren't C++ safe.
2018 hackname = sco_static_func;
2020 mach = "i?86-*-sco3.2*";
2021 select = "^static int";
2023 sed = "/^static int/i\\\n"
2024 "#if __cplusplus\\\n"
2025 "extern \"C\" {\\\n"
2026 "#endif /* __cplusplus */";
2029 "#if __cplusplus\\\n"
2031 "#endif /* __cplusplus */";
2035 "static int\tstat(const char *__f, struct stat *__p) {\n"
2036 "\treturn __stat32(__f, __p);\n"
2037 "}\n\n# else /* !__STDC__ */\n"
2039 "static int\tstat(__f, __p)\n"
2041 "\tstruct stat *__p;\n"
2043 "\treturn __stat32(__f, __p);\n"
2050 * Fix prototype declaration of utime in sys/times.h.
2051 * In 3.2v4.0 the const is missing.
2054 hackname = sco_utime;
2055 files = sys/times.h;
2056 mach = "i?86-*-sco3.2v4*";
2058 select = '\(const char \*, struct utimbuf \*\);';
2060 c_fix_arg = '(const char *, const struct utimbuf *);';
2062 test_text = "extern int utime(const char *, struct utimbuf *);";
2067 * Sun Solaris defines PTHREAD_MUTEX_INITIALIZER with a trailing
2068 * "0" for the last field of the pthread_mutex_t structure, which is
2069 * of type upad64_t, which itself is typedef'd to int64_t, but with
2070 * __STDC__ defined (e.g. by -ansi) it is a union. So change the
2071 * initializer to "{0}" instead
2074 hackname = solaris_mutex_init;
2075 select = '@\(#\)pthread.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
2078 c_fix_arg = "#if __STDC__ - 0 == 0 && !defined(_NO_LONGLONG)\n"
2083 c_fix_arg = "(^#define[ \t]+PTHREAD_(MUTEX|COND)_INITIALIZER[ \t]+{.*)"
2084 ",[ \t]*0}" "(|[ \t].*)$";
2086 '#ident "@(#)pthread.h 1.26 98/04/12 SMI"'"\n"
2087 "#define PTHREAD_MUTEX_INITIALIZER\t{{{0},0}, {{{0}}}, 0}\n"
2088 "#define PTHREAD_COND_INITIALIZER\t{{{0}, 0}, 0}\t/* DEFAULTCV */\n"
2089 "#define PTHREAD_RWLOCK_INITIALIZER\t"
2090 "{0, 0, 0, {0, 0, 0}, {0, 0}, {0, 0}}";
2095 * Solaris 2.8 has what appears to be some gross workaround for
2096 * some old version of their c++ compiler. G++ doesn't want it
2097 * either, but doesn't want to be tied to SunPRO version numbers.
2100 hackname = solaris_stdio_tag;
2101 files = stdio_tag.h;
2103 select = '__cplusplus < 54321L';
2104 sed = 's/defined(__cplusplus) && (__cplusplus < 54321L)/0/';
2106 test_text = "#if\tdefined(__cplusplus) && (__cplusplus < 54321L)";
2110 * <widec.h> until Solaris 2.5.1 defines macros for a couple of <wchar.h>
2111 * functions, breaking their prototypes if that file is included afterwards.
2112 * Include <wchar.h> early to avoid this issue, as is done on Solaris 2.6
2116 hackname = solaris_widec;
2118 mach = '*-*-solaris2.[0-5]*';
2119 bypass = "include.*wchar\\.h";
2120 select = "#include <euc.h>";
2122 c_fix_arg = "%0\n#include <wchar.h>";
2123 test_text = "#include <euc.h>";
2127 * Sony NEWSOS 5.0 does not support the complete ANSI C standard.
2131 hackname = sony_ctype;
2133 test = " -x /bin/sony";
2134 test = " ! -z \"`if /bin/sony ; then echo true ; fi`\"";
2135 sed = "s/__ctype/_ctype/g";
2141 * Sony NEWSOS 5.0 does not support the complete ANSI C standard.
2145 hackname = sony_stdio;
2147 test = " -x /bin/sony";
2148 test = " ! -z \"`if /bin/sony ; then echo true ; fi`\"";
2149 sed = "s/__filbuf/_filbuf/g\n"
2150 "s/__flsbuf/_flsbuf/g\n"
2157 * Add a `static' declaration of `getrnge' into <regexp.h>.
2159 * Don't do this if there is already a `static void getrnge' declaration
2160 * present, since this would cause a redeclaration error. Solaris 2.x has
2161 * such a declaration.
2165 hackname = static_getrnge;
2167 bypass = "static void getrnge";
2168 sed = "/^static int[ \t]*size;/c\\\n"
2169 "static int size ;\\\n\\\n"
2170 "static int getrnge ();";
2176 * a missing semi-colon at the end of the statsswtch structure definition.
2179 hackname = statsswtch;
2180 files = rpcsvc/rstat.h;
2181 select = "boottime$";
2183 c_fix_arg = "boottime;";
2184 test_text = "struct statswtch {\n int boottime\n};";
2189 * Arrange for stdio.h to use stdarg.h to define __gnuc_va_list.
2190 * On 4BSD-derived systems, stdio.h defers to machine/ansi.h; that's
2194 hackname = stdio_stdarg_h;
2196 bypass = "include.*(stdarg\.h|machine/ansi\.h)";
2200 c_fix_arg = "#define __need___va_list\n#include <stdarg.h>\n";
2207 * Don't use or define the name va_list in stdio.h.
2208 * This is for ANSI and also to interoperate properly with gcc's varargs.h.
2209 * Note _BSD_VA_LIST_ is dealt with elsewhere.
2212 hackname = stdio_va_list;
2214 bypass = '__gnuc_va_list|_BSD_VA_LIST_|__DJ_va_list';
2217 * Use __gnuc_va_list in arg types in place of va_list.
2218 * On 386BSD use __gnuc_va_list instead of _VA_LIST_. On Tru64 UNIX V5.1A
2219 * use __gnuc_va_list instead of __VA_LIST__. We're hoping the
2220 * trailing parentheses and semicolon save all other systems from this.
2221 * Define __not_va_list__ (something harmless and unused)
2222 * instead of va_list.
2223 * Don't claim to have defined va_list.
2225 sed = "s@ va_list @ __gnuc_va_list @\n"
2226 "s@ va_list)@ __gnuc_va_list)@\n"
2227 "s@ _VA_LIST_));@ __gnuc_va_list));@\n"
2228 "s@ __VA_LIST__));@ __gnuc_va_list));@\n"
2229 "s@ va_list@ __not_va_list__@\n"
2230 "s@\\*va_list@*__not_va_list__@\n"
2231 "s@ __va_list)@ __gnuc_va_list)@\n"
2232 "s@typedef[ \t]\\(.*\\)[ \t]va_list[ \t]*;"
2233 "@typedef \\1 __not_va_list__;@\n"
2234 "s@typedef[ \t]*__va_list__@typedef __gnuc_va_list@\n"
2235 "s@GNUC_VA_LIST@GNUC_Va_LIST@\n"
2236 "s@_NEED___VA_LIST@_NEED___Va_LIST@\n"
2237 "s@VA_LIST@DUMMY_VA_LIST@\n"
2238 "s@_Va_LIST@_VA_LIST@";
2239 test_text = "extern void mumble( va_list);";
2244 * "!__STDC__" or "__STDC__==0" or "__STDC__!=1" or "__STDC__-0==0"
2245 * is "!defined( __STRICT_ANSI__ )"
2248 hackname = strict_ansi_not;
2249 select = "^([ \t]*#[ \t]*if.*)"
2251 "|__STDC__[ \t]*==[ \t]*0"
2252 "|__STDC__[ \t]*!=[ \t]*1"
2253 "|__STDC__[ \t]*-[ \t]*0[ \t]*==[ \t]*0)";
2254 /* Tru64 UNIX V4.0F/V5.1 <standards.h> supports GCC usage of __STDC__. */
2255 bypass = 'GNU and MIPS C compilers define __STDC__ differently';
2256 c_test = stdc_0_in_system_headers;
2259 c_fix_arg = "%1 !defined(__STRICT_ANSI__)";
2261 test_text = "#if !__STDC__ \n"
2262 "#if __STDC__ == 0\n"
2263 "#if __STDC__ != 1\n"
2264 "#if __STDC__ - 0 == 0"
2265 "/* not std C */\nint foo;\n"
2266 "\n#end-end-end-end-if :-)";
2271 * is "!defined( __STRICT_ANSI__ )" on continued #if-s
2274 hackname = strict_ansi_not_ctd;
2275 files = math.h, limits.h, stdio.h, signal.h,
2276 stdlib.h, sys/signal.h, time.h;
2278 * Starting at the beginning of a line, skip white space and
2279 * a leading "(" or "&&" or "||". One of those must be found.
2280 * Then, zero, one or more copies of a "defined(_FOO_BAR_) &&"
2281 * expression. If these are nested, then they must accumulate
2282 * because we won't match any closing parentheses. Finally,
2283 * after skipping over all that, we must then match our suspect
2284 * phrase: "__STDC__-0==0" with or without white space.
2286 select = "^([ \t]*" '(\(|&&|\|\|)'
2287 "([ \t(]*!*[ \t]*defined\\([a-zA-Z_0-9]+\\)[ \t]*[|&][|&])*"
2289 "(__STDC__[ \t]*(|-[ \t]*0[ \t]*)==[ \t]*0)";
2290 c_test = stdc_0_in_system_headers;
2293 c_fix_arg = "%1 !defined(__STRICT_ANSI__)";
2295 test_text = "#if 1 && \\\\\n"
2296 "&& defined(mumbling) |& (__STDC__ - 0 == 0) \\\\\n"
2297 "( __STDC__ == 0 && !defined(_XOPEN_SOURCE) \\\\\n"
2298 "|| __STDC__ - 0 == 0 ) /* not std C */\n"
2304 * "__STDC__!=0" or "__STDC__==1" or "__STDC__-0==1"
2305 * is "defined( __STRICT_ANSI__ )"
2308 hackname = strict_ansi_only;
2309 select = "^([ \t]*#[ \t]*if.*)"
2310 "(__STDC__[ \t]*!=[ \t]*0"
2311 "|__STDC__[ \t]*==[ \t]*1"
2312 "|__STDC__[ \t]*-[ \t]*0[ \t]*==[ \t]*1"
2313 "|__STDC__[ \t]*-[ \t]*0[ \t]*!=[ \t]*0)";
2314 c_test = stdc_0_in_system_headers;
2317 c_fix_arg = "%1 defined(__STRICT_ANSI__)";
2319 test_text = "#if __STDC__ == 1 /* is std C\n */\nint foo;\n#endif";
2324 * IRIX 4.0.5 <rpc/xdr.h> uses struct __file_s
2325 * in prototype without previous definition.
2328 hackname = struct_file;
2330 select = '^.*xdrstdio_create.*struct __file_s';
2332 c_fix_arg = "struct __file_s;\n%0";
2333 test_text = "extern void xdrstdio_create( struct __file_s* );";
2338 * IRIX 4.0.5 <rpc/auth.h> uses struct sockaddr
2339 * in prototype without previous definition.
2342 hackname = struct_sockaddr;
2344 select = "^.*authdes_create.*struct sockaddr";
2345 bypass = "<sys/socket\.h>";
2347 c_fix_arg = "struct sockaddr;\n%0";
2348 test_text = "extern AUTH* authdes_create( struct sockaddr* );";
2353 * Apply fix this to all OSs since this problem seems to effect
2354 * more than just SunOS.
2357 hackname = sun_auth_proto;
2363 * Select those files containing '(*name)()'.
2365 select = '\(\*[a-z][a-z_]*\)\(\)';
2368 c_fix_arg = "#ifdef __cplusplus\n%1(...);%2\n"
2369 "#else\n%1();%2\n#endif";
2370 c_fix_arg = '(.*\(\*[a-z][a-z_]*\))\(\);(.*)';
2374 " int (*name)(); /* C++ bad */\n"
2380 * Fix bogus #ifdef on SunOS 4.1.
2383 hackname = sun_bogus_ifdef;
2384 files = "hsfs/hsfs_spec.h";
2385 files = "hsfs/iso_spec.h";
2386 select = '#ifdef(.*\|\|.*)';
2388 c_fix_arg = "#if%1";
2390 test_text = "#ifdef __i386__ || __vax__ || __sun4c__";
2395 * Fix the CAT macro in SunOS memvar.h.
2398 hackname = sun_catmacro;
2399 files = pixrect/memvar.h;
2400 select = "^#define[ \t]+CAT\\(a,b\\).*";
2405 "# define CAT(a,b) a##b\n"
2406 "#else\n%0\n#endif";
2409 "#define CAT(a,b)\ta/**/b";
2414 * Fix return type of free and {c,m,re}alloc in <malloc.h> on SunOS 4.1.
2415 * Also fix return type of {m,re}alloc in <malloc.h> on sysV68
2418 hackname = sun_malloc;
2421 sed = "s/typedef[ \t]char \\*\tmalloc_t/typedef void \\*\tmalloc_t/g";
2422 sed = "s/int[ \t][ \t]*free/void\tfree/g";
2423 sed = "s/char\\([ \t]*\\*[ \t]*malloc\\)/void\\1/g";
2424 sed = "s/char\\([ \t]*\\*[ \t]*realloc\\)/void\\1/g";
2425 sed = "s/char\\([ \t]*\\*[ \t]*calloc\\)/void\\1/g";
2428 "typedef char *\tmalloc_t;\n"
2430 "char*\tmalloc();\n"
2431 "char*\tcalloc();\n"
2432 "char*\trealloc();";
2437 * Check for yet more missing ';' in struct (in SunOS 4.0.x)
2440 hackname = sun_rusers_semi;
2441 files = rpcsvc/rusers.h;
2443 sed = "/^struct/,/^};/s/_cnt$/_cnt;/";
2444 test_text = "struct mumble\n int _cnt\n};";
2449 * signal.h on SunOS defines signal using (),
2450 * which causes trouble when compiling with g++ -pedantic.
2453 hackname = sun_signal;
2454 files = sys/signal.h;
2456 select = "^void\t" '\(\*signal\(\)\)\(\);.*';
2460 "#ifdef __cplusplus\n"
2461 "void\t(*signal(...))(...);\n"
2462 "#else\n%0\n#endif";
2464 test_text = "void\t(*signal())();";
2469 * math.h on SunOS 4 puts the declaration of matherr before the definition
2470 * of struct exception, so the prototype (added by fixproto) causes havoc.
2473 hackname = sunos_matherr_decl;
2476 /* If matherr has a prototype already, the header needs no fix. */
2477 bypass = 'matherr.*(struct exception|__MATH_EXCEPTION)';
2481 c_fix_arg = "struct exception;\n";
2483 test_text = "extern int matherr();";
2488 * Correct the return type for strlen in strings.h in SunOS 4.
2491 hackname = sunos_strlen;
2493 select = "int[ \t]*strlen\\(\\);(.*)";
2495 c_fix_arg = "__SIZE_TYPE__ strlen();%1";
2496 test_text = " int\tstrlen(); /* string length */";
2501 * Solaris math.h and floatingpoint.h define __P without protection,
2502 * which conflicts with the fixproto definition. The fixproto
2503 * definition and the Solaris definition are used the same way.
2508 files = floatingpoint.h;
2509 select = "^#define[ \t]+__P.*";
2511 c_fix_arg = "#ifndef __P\n%0\n#endif";
2513 test_text = "#define __P(a) a";
2518 * Disable apparent native compiler optimization cruft in SVR4.2 <string.h>
2519 * that is visible to any ANSI compiler using this include. Simply
2520 * delete the lines that #define some string functions to internal forms.
2524 hackname = svr4_disable_opt;
2526 select = '#define.*__std_hdr_';
2527 sed = '/#define.*__std_hdr_/d';
2533 * Conditionalize some of <sys/endian.h> on __GNUC__ and __GNUG__.
2534 * On some systems (UnixWare 2, UnixWare 7), the file is byteorder.h
2535 * but we still "hijack" it and redirect it to the GNU byteorder.h..
2539 hackname = svr4_endian;
2540 files = sys/endian.h;
2543 * since we emit our own sys/byteorder.h,
2544 * this fix can never be applied to that file.
2546 files = sys/byteorder.h;
2548 bypass = '__GNUC__';
2550 sed = "/#\tifdef\t__STDC__/i\\\n"
2551 "# if !defined (__GNUC__) && !defined (__GNUG__)\n";
2553 sed = "/#\t\tinclude\t<sys\\/byteorder.h>/s/\t\t/ /";
2555 sed = "/# include\t<sys\\/byteorder.h>/i\\\n"
2556 "# endif /* !defined (__GNUC__) && !defined (__GNUG__) */\n";
2562 * Remove useless extern keyword from struct forward declarations
2563 * in <sys/stream.h> and <sys/strsubr.h>
2567 hackname = svr4_extern_struct;
2568 files = sys/stream.h;
2569 files = sys/strsubr.h;
2570 select = 'extern struct [a-z_]*;';
2571 sed = 's/extern struct \([a-z][a-z_]*\)/struct \1/';
2576 * Fix declarations of `ftw' and `nftw' in <ftw.h>. On some/most SVR4
2577 * systems the file <ftw.h> contains extern declarations of these
2578 * functions followed by explicitly `static' definitions of these
2579 * functions... and that's not allowed according to ANSI C. (Note
2580 * however that on Solaris, this header file glitch has been pre-fixed by
2581 * Sun. In the Solaris version of <ftw.h> there are no static
2582 * definitions of any function so we don't need to do any of this stuff
2588 hackname = svr4_ftw;
2590 select = '^extern int ftw\(const';
2592 sed = '/^extern int ftw(const/i' "\\\n"
2593 "#if !defined(_STYPES)\\\n"
2598 sed = 's/extern \(int ftw(const.*\)$/\1/';
2599 sed = "/^extern int nftw/i\\\n"
2600 "#if defined(_STYPES)\\\n"
2605 sed = 's/extern \(int nftw.*\)$/\1/';
2606 sed = "/^extern int ftw(),/c\\\n"
2607 "#if !defined(_STYPES)\\\n"
2613 "#if defined(_STYPES)\\\n"
2625 * Fix broken decl of getcwd present on some svr4 systems.
2628 hackname = svr4_getcwd;
2631 files = prototypes.h;
2632 select = 'getcwd\(char \*, int\)';
2635 c_fix_arg = "getcwd(char *, size_t)";
2637 test_text = "extern char* getcwd(char *, int);";
2646 hackname = svr4_kernel;
2647 files = fs/rfs/rf_cache.h;
2651 files = sys/getpages.h;
2653 files = sys/cmn_err.h;
2654 files = sys/kdebugger.h;
2658 c_fix_arg = "#ifdef _KERNEL\n";
2659 c_fix_arg = "#endif /* _KERNEL */\n";
2665 * Delete any #defines of `__i386' which may be present in <ieeefp.h>. They
2666 * tend to conflict with the compiler's own definition of this symbol. (We
2667 * will use the compiler's definition.)
2668 * Likewise __sparc, for Solaris, and __i860, and a few others
2669 * (guessing it is necessary for all of them).
2673 hackname = svr4_mach_defines;
2675 select = "#define[ \t]*__(i386|i860|mips|sparc|m88k|m68k)[ \t]";
2676 sed = "/#define[ \t]*__\\(i386|i860|mips|sparc|m88k|m68k\\)[ \t]/d";
2682 * Fix declarations of `makedev', `major', and `minor' in <sys/mkdev.h>.
2683 * They are declared as non-static then immediately redeclared as static.
2687 hackname = svr4_mkdev;
2688 files = sys/mkdev.h;
2691 sed = "/^dev_t makedev(/s/^/static /";
2692 sed = "/^major_t major(/s/^/static /";
2693 sed = "/^minor_t minor(/s/^/static /";
2699 * Fix reference to NC_NPI_RAW in <sys/netcspace.h>.
2700 * Also fix types of array initializers.
2704 hackname = svr4_netcspace;
2705 files = sys/netcspace.h;
2706 select = 'NC_NPI_RAW';
2707 sed = 's/NC_NPI_RAW/NC_TPI_RAW/g';
2708 sed = 's/NC_/(unsigned long) NC_/';
2713 * Fix reference to NMSZ in <sys/adv.h>.
2717 hackname = svr4_nmsz;
2719 select = '\[NMSZ\]';
2720 sed = 's/\[NMSZ\]/\[RFS_NMSZ\]/g';
2726 * Fix broken decl of profil present on some svr4 systems.
2729 hackname = svr4_profil;
2734 'profil\(unsigned short \*, unsigned int, unsigned int, unsigned int\)';
2736 c_fix_arg = 'profil(unsigned short *, size_t, int, unsigned int)';
2739 'profil(unsigned short *, unsigned int, unsigned int, unsigned int);';
2744 * Convert functions to prototype form, and fix arg names in <sys/stat.h>.
2748 hackname = svr4_proto_form;
2750 select = 'const extern';
2752 sed = "/^stat([ \t]*[^c]/ {\nN\nN\n"
2757 sed = "/^lstat([ \t]*[^c]/ {\nN\nN\n"
2762 sed = "/^fstat([ \t]*[^i]/ {\nN\nN\n"
2767 sed = "/^mknod([ \t]*[^c]/{\nN\nN\nN\n"
2772 sed = "1,$s/\\([^A-Za-z]\\)path\\([^A-Za-z]\\)/\\1__path\\2/g";
2773 sed = "1,$s/\\([^A-Za-z]\\)buf\\([^A-Za-z]\\)/\\1__buf\\2/g";
2774 sed = "1,$s/\\([^A-Za-z]\\)fd\\([^A-Za-z]\\)/\\1__fd\\2/g";
2775 sed = "1,$s/ret\\([^u]\\)/__ret\\1/g";
2776 sed = "1,$s/\\([^_]\\)mode\\([^_]\\)/\\1__mode\\2/g";
2777 sed = "1,$s/\\([^_r]\\)dev\\([^_]\\)/\\1__dev\\2/g";
2782 * Add a prototyped declaration of mmap to <sys/mman.h>.
2786 hackname = svr4_proto_mmap;
2788 select = '^extern caddr_t mmap();$';
2789 sed = '/^extern caddr_t mmap();$/c' "\\\n"
2790 "#ifdef __STDC__\\\n"
2791 "extern caddr_t mmap (caddr_t, size_t, int, int, int, off_t);\\\n"
2792 "#else /* !defined(__STDC__) */\\\n"
2793 "extern caddr_t mmap ();\\\n"
2794 "#endif /* !defined(__STDC__) */\\\n";
2799 * Add a #define of _SIGACTION_ into <sys/signal.h>.
2803 hackname = svr4_sigaction;
2804 files = sys/signal.h;
2805 sed = "/^struct sigaction {/i\\\n"
2806 "#define _SIGACTION_";
2807 sed = 's/(void *(\*)())/(void (*)(int))/';
2812 * Put storage class at start of decl, to avoid warning.
2816 hackname = svr4_storage_class;
2817 files = rpc/types.h;
2818 select = 'const extern';
2819 sed = 's/const extern/extern const/g';
2825 * Like svr4_mach_defines, but with newfangled syntax.
2826 * Source lines are of #define __i386 #machine(i386). Delete them.
2830 hackname = svr5_mach_defines;
2832 select = "#define[ \t]*__i386.*\(i386\)";
2833 sed = "/#define[ \t]*__i386.*/d";
2839 * Fix return value of mem{ccpy,chr,cpy,set} and str{len,spn,cspn}
2840 * in string.h on sysV68
2841 * Correct the return type for strlen in string.h on Lynx.
2842 * Correct the argument type for ffs in string.h on Alpha OSF/1 V2.0.
2843 * Add missing const for strdup on OSF/1 V3.0.
2844 * On sysV88 layout is slightly different.
2847 hackname = sysv68_string;
2851 sed = "s/extern[ \t]*int[ \t]*strlen();/extern unsigned int strlen();/";
2852 sed = "s/extern[ \t]*int[ \t]*ffs[ \t]*(long);/extern int ffs(int);/";
2853 sed = "s/strdup(char \\*s1);/strdup(const char *s1);/";
2855 sed = "/^extern char$/N";
2856 sed = "s/^extern char\\(\\n\t\\*memccpy(),\\)$/extern void\\1/";
2858 sed = "/^extern int$/N";
2859 sed = "s/^extern int\\(\\n\tstrlen(),\\)/extern size_t\\1/";
2861 sed = "/^\tstrncmp(),$/N";
2862 sed = 's/^\(' "\t" 'strncmp()\),\n\(' "\t" 'strlen(),\)$/'
2863 '\1;' "\\\nextern unsigned int\\\n\\2/";
2866 "extern int strlen();\n"
2868 "extern int ffs(long);\n"
2881 "\tstrlen(), strspn();";
2886 * Fix return type of calloc, malloc, realloc, bsearch and exit
2889 hackname = sysz_stdlib_for_sun;
2892 select = "char[ \t]*\\*[ \t]*(calloc|malloc|realloc|bsearch)[ \t]*\\(";
2894 c_fix_arg = "void *\t%1(";
2897 "extern char*\tcalloc(size_t);\n"
2898 "extern char*\tmalloc(size_t);\n"
2899 "extern char*\trealloc(void*,size_t);\n"
2900 "extern char*\tbsearch(void*,size_t,size_t);\n";
2905 * __thread is now a keyword.
2908 hackname = thread_keyword;
2909 files = "pthread.h";
2910 files = "bits/sigthread.h";
2911 select = "([* ])__thread([,)])";
2913 c_fix_arg = "%1__thr%2";
2916 "extern int pthread_create (pthread_t *__restrict __thread,\n"
2917 "extern int pthread_kill (pthread_t __thread, int __signo);\n"
2918 "extern int pthread_cancel (pthread_t __thread);";
2922 * if the #if says _cplusplus, not the double underscore __cplusplus
2926 hackname = tinfo_cplusplus;
2928 select = "[ \t]_cplusplus";
2931 c_fix_arg = " __cplusplus";
2932 test_text = "#ifdef _cplusplus\nint bogus;\n#endif";
2937 * function parameter to atexit is missing "void" on VAX Ultrix 4.3.
2940 hackname = ultrix_atexit_param;
2942 select = 'atexit\(.*\(\)';
2945 c_fix_arg = "atexit( void (*__func)( void )";
2947 test_text = "int atexit( void (*__func)() );\n";
2952 * parameter to atof not const on DECstation Ultrix V4.0 and NEWS-OS 4.2R.
2955 hackname = ultrix_atof_param;
2957 select = "atof\\([ \t]*char";
2960 c_fix_arg = "atof(const char";
2962 test_text = "extern double atof( char *__nptr);\n";
2967 * parameters not const on DECstation Ultrix V4.0 and OSF/1.
2970 hackname = ultrix_const;
2972 select = 'perror\( char \*';
2975 c_fix_arg = "%1 const %3 *__";
2976 c_fix_arg = "([ \t*](perror|fputs|fwrite|scanf|fscanf)\\(.*)"
2977 "[ \t]+(char|void) \\*__";
2980 "extern void perror( char *__s );\n"
2981 "extern int fputs( char *__s, FILE *);\n"
2982 "extern size_t fwrite( void *__ptr, size_t, size_t, FILE *);\n"
2983 "extern int fscanf( FILE *__stream, char *__format, ...);\n"
2984 "extern int scanf( char *__format, ...);\n";
2989 * parameters not const on DECstation Ultrix V4.0 and OSF/1.
2992 hackname = ultrix_const2;
2995 select = '\*fopen\( char \*';
2997 c_fix_arg = "%1( const char *%3, const char *";
2998 c_fix_arg = "([ \t*](fopen|sscanf|popen|tempnam))\\("
2999 "[ \t]*char[ \t]*\\*([^,]*),"
3000 "[ \t]*char[ \t]*\\*[ \t]*";
3003 "extern FILE *fopen( char *__filename, char *__type );\n"
3004 "extern int sscanf( char *__s, char *__format, ...);\n"
3005 "extern FILE *popen(char *, char *);\n"
3006 "extern char *tempnam(char*,char*);\n";
3011 * Ultrix V4.[35] puts the declaration of uname before the definition
3012 * of struct utsname, so the prototype (added by fixproto) causes havoc.
3015 hackname = ultrix_fix_fixproto;
3016 files = sys/utsname.h;
3020 c_fix_arg = "struct utsname;\n%0";
3021 c_fix_arg = "^[ \t]*extern[ \t]*int[ \t]*uname\\(\\);";
3024 "/* ULTRIX's uname */\nextern\tint\tuname();";
3029 * Check for bad #ifdef line (in Ultrix 4.1)
3032 hackname = ultrix_ifdef;
3033 select = "^#ifdef KERNEL[ \t]+&&";
3037 c_fix_arg = "#if defined(KERNEL) &&";
3040 "#ifdef KERNEL\t&& defined( mumbojumbo )\nint oops;\n#endif";
3045 * Strip "|| CC$gfloat" from Ultrix math headers.
3048 hackname = ultrix_math_ifdef;
3049 files = sys/limits.h;
3052 select = "^(#if.*)\\|\\|[ \t]+CC\\$[a-z]+";
3056 test_text = '#if defined(__GFLOAT) || CC\$gfloat';
3061 * Avoid nested comments on Ultrix 4.3.
3064 hackname = ultrix_nested_ioctl;
3065 files = sys/ioctl.h;
3066 select = "^/\\* #define SIOCSCREEN";
3067 sed = "/^\\/\\* #define SIOCSCREEN/s@/\\* screend@*//* screend@";
3069 "/* #define SIOCSCREENON _IOWR('i', 49, int)"
3070 "/* screend, net/gw_screen.h */\n";
3075 hackname = ultrix_nested_svc;
3077 select = "^ \\*[ \t]*int protocol; */\\*";
3078 sed = "s@^\\( \\*\tint protocol; \\)/\\*@\\1*/ /*@";
3080 " *\tint protocol; /* like TCP or UDP\n";
3085 * Add missing prototype for lstat and define for S_ISLNK
3086 * in Ultrix V4.3 sys/stat.h.
3089 hackname = ultrix_stat;
3091 select = "@\\(#\\)stat\\.h.*6\\.1.*\\(ULTRIX\\)";
3092 sed = "/^#define[ \t]S_IFPORT[ \t]*S_IFIFO$/a\\\n"
3094 "/* macro to test for symbolic link */\\\n"
3095 "#define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)\\\n"
3097 sed = "/^[ \t]*fstat(),$/a\\\n"
3100 "@(#)stat.h 6.1 (ULTRIX)\n"
3101 "#define S_IFPORT S_IFIFO\n"
3107 * Check for superfluous `static' (in Ultrix 4.2)
3108 * On Ultrix 4.3, includes of other files (r3_cpu.h,r4_cpu.h) is broken.
3111 hackname = ultrix_static;
3112 files = machine/cpu.h;
3113 select = '#include "r[34]_cpu';
3114 sed = "s/^static struct tlb_pid_state/struct tlb_pid_state/";
3115 sed = 's/^#include "r3_cpu\.h"$/#include <machine\/r3_cpu\.h>/';
3116 sed = 's/^#include "r4_cpu\.h"$/#include <machine\/r4_cpu\.h>/';
3118 "static struct tlb_pid_state {\n"
3119 "#include \"r3_cpu.h\"\n";
3124 * Add once-only latch to Ultrix V4.3 strings.h.
3127 hackname = ultrix_strings;
3129 select = "@\\(#\\)strings\\.h.*6\\.1.*\\(ULTRIX\\)";
3132 "@(#)strings.h 6.1 (ULTRIX)\n";
3137 * Fix multiple defines for NULL. Sometimes, we stumble into \r\n
3138 * terminated lines, so accommodate these. Test both ways.
3141 hackname = undefine_null;
3142 select = "^#[ \t]*define[ \t]+NULL[ \t]";
3143 bypass = "#[ \t]*(ifn|un)def[ \t]+NULL($|[ \t\r])";
3146 c_fix_arg = "#ifndef NULL%2\n#define NULL%1%2\n#endif%2\n";
3147 c_fix_arg = "^#[ \t]*define[ \t]*[ \t]NULL([^\r\n]+)([\r]*)\n";
3149 test_text = "#define NULL 0UL\r\n#define NULL\t((void*)0)\n";
3153 * On Cray Unicos/Mk some standard headers use the C99 keyword "restrict"
3154 * which must be replaced by __restrict__ for GCC.
3157 hackname = unicosmk_restrict;
3161 mach = "*-*-unicosmk*";
3162 select = "(\\*[ \t]*)restrict([ \t]+)";
3165 c_fix_arg = "%1__restrict__%2";
3167 test_text = "void f (char * restrict x);";
3171 * If arpa/inet.h prototypes are incompatible with the ones we just
3172 * installed in <sys/byteorder.h>, just remove the protos.
3173 * Because of this close association, this patch must be applied only
3174 * on those systems where the replacement byteorder header is installed.
3177 hackname = uw7_byteorder_fix;
3178 files = arpa/inet.h;
3179 select = "in_port_t";
3180 test = "-f sys/byteorder.h";
3182 mach = "*-*-sysv4*";
3183 mach = "i?86-*-sysv5*";
3184 mach = "i?86-*-udk*";
3185 mach = "i?86-*-solaris2.[0-4]";
3186 mach = "powerpcle-*-solaris2.[0-4]";
3187 mach = "sparc-*-solaris2.[0-4]";
3192 c_fix_arg = "^extern.*[ \t](htons|ntohs).*\\(in_port_t\\).*;";
3194 test_text = "extern in_port_t\thtons __P((in_port_t));\n"
3195 "extern in_port_t\tntohs __P((in_port_t));"
3196 "`[ ! -d $DESTDIR/sys ] && mkdir $DESTDIR/sys\n"
3197 "echo '/* DUMMY */' >> sys/byteorder.h`";
3202 * Fix definitions of macros used by va-i960.h in VxWorks header file.
3205 hackname = va_i960_macro;
3206 files = arch/i960/archI960.h;
3207 select = "__(vsiz|vali|vpad|alignof__)";
3210 c_fix_arg = "__vx%1";
3213 "extern int __vsiz vsiz;\n"
3214 "extern int __vali vali;\n"
3215 "extern int __vpad vpad;\n"
3216 "#define __alignof__(x) ...";
3221 * AIX headers define NULL to be cast to a void pointer,
3222 * which is illegal in ANSI C++.
3225 hackname = void_null;
3235 files = sys/param.h;
3236 files = sys/types.h;
3237 select = "^#[ \t]*define[ \t]+NULL[ \t]+\\(\\(void[ \t]*\\*\\)0\\)";
3239 c_fix_arg = "#define NULL 0";
3240 test_text = "# define\tNULL \t((void *)0) /* typed NULL */";
3245 * Make VxWorks header which is almost gcc ready fully gcc ready.
3248 hackname = vxworks_gcc_problem;
3249 files = types/vxTypesBase.h;
3250 select = "__GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__";
3252 sed = "s/#ifdef __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__/"
3255 sed = "/[ \t]size_t/i\\\n"
3256 "#ifndef _GCC_SIZE_T\\\n"
3257 "#define _GCC_SIZE_T\n";
3259 sed = "/[ \t]size_t/a\\\n"
3262 sed = "/[ \t]ptrdiff_t/i\\\n"
3263 "#ifndef _GCC_PTRDIFF_T\\\n"
3264 "#define _GCC_PTRDIFF_T\n";
3266 sed = "/[ \t]ptrdiff_t/a\\\n"
3269 sed = "/[ \t]wchar_t/i\\\n"
3270 "#ifndef _GCC_WCHAR_T\\\n"
3271 "#define _GCC_WCHAR_T\n";
3273 sed = "/[ \t]wchar_t/a\\\n"
3277 "#ifdef __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__\n"
3278 "typedef unsigned int size_t;\n"
3279 "typedef long ptrdiff_t;\n"
3280 "typedef unsigned short wchar_t;\n"
3281 "#endif /* __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__ */\n";
3286 * Fix VxWorks <time.h> to not require including <vxTypes.h>.
3289 hackname = vxworks_needs_vxtypes;
3291 select = "uint_t([ \t]+_clocks_per_sec)";
3293 c_fix_arg = "unsigned int%1";
3294 test_text = "uint_t\t_clocks_per_sec;";
3299 * Fix VxWorks <sys/stat.h> to not require including <vxWorks.h>.
3302 hackname = vxworks_needs_vxworks;
3304 test = " -r types/vxTypesOld.h";
3305 test = " -n \"`egrep '#include' $file`\"";
3306 test = " -n \"`egrep ULONG $file`\"";
3307 select = "#[ \t]define[ \t]+__INCstath";
3309 sed = "/#[ \t]define[ \t][ \t]*__INCstath/a\\\n"
3310 "#include <types/vxTypesOld.h>\n";
3312 test_text = "`touch types/vxTypesOld.h`"
3313 "#include </dev/null> /* ULONG */\n"
3314 "# define\t__INCstath <sys/stat.h>";
3319 * Another bad dependency in VxWorks 5.2 <time.h>.
3322 hackname = vxworks_time;
3324 test = " -r vxWorks.h";
3326 select = "#[ \t]*define[ \t]+VOIDFUNCPTR[ \t].*";
3330 "#ifndef __gcc_VOIDFUNCPTR_defined\n"
3331 "#ifdef __cplusplus\n"
3332 "typedef void (*__gcc_VOIDFUNCPTR) (...);\n"
3334 "typedef void (*__gcc_VOIDFUNCPTR) ();\n"
3336 "#define __gcc_VOIDFUNCPTR_defined\n"
3338 "#define VOIDFUNCPTR __gcc_VOIDFUNCPTR";
3340 test_text = "`touch vxWorks.h`"
3341 "#define VOIDFUNCPTR (void(*)())";
3346 * WindISS math.h headers include bogus extern declarations of
3347 * numerous math functions that conflict with libstdc++-v3.
3350 hackname = windiss_math1;
3352 mach = "*-*-windiss";
3353 sed = "s|inline long double cosl.*|#ifndef __GNUC__|";
3355 test_text = "inline long double cosl(long double);";
3359 hackname = windiss_math2;
3361 mach = "*-*-windiss";
3362 sed = "s|/\\* long double declarations \\*/|"
3363 "#endif /* __GNUC__ */|";
3365 test_text = "/* long double declarations */";
3369 * WindISS headers include "diab/va_list.h" instead of "stdarg.h"
3372 select = '(#include.*)diab/va_list.h';
3373 hackname = windiss_valist;
3374 sed = "s|diab/va_list.h|stdarg.h|";
3375 mach = "*-*-windiss";
3377 test_text = "#include <diab/va_list.h>";
3381 * There are several name conflicts with C++ reserved words in X11 header
3382 * files. These are fixed in some versions, so don't do the fixes if
3383 * we find __cplusplus in the file. These were found on the RS/6000.
3386 hackname = x11_class;
3387 files = X11/ShellP.h;
3388 bypass = __cplusplus;
3389 select = "^([ \t]*char \\*)class;(.*)";
3391 c_fix_arg = "#ifdef __cplusplus\n%1c_class;%2\n"
3392 "#else\n%1class;%2\n#endif";
3401 * class in Xm/BaseClassI.h
3404 hackname = x11_class_usage;
3405 files = Xm/BaseClassI.h;
3406 bypass = "__cplusplus";
3408 select = " class\\)";
3410 c_fix_arg = " c_class)";
3412 test_text = "extern mumble (int class);\n";
3417 * new in Xm/Traversal.h
3421 files = Xm/Traversal.h;
3422 bypass = __cplusplus;
3424 sed = "/Widget\told, new;/i\\\n"
3425 "#ifdef __cplusplus\\\n"
3426 "\tWidget\told, c_new;\\\n"
3429 sed = "/Widget\told, new;/a\\\n"
3432 sed = "s/Widget new,/Widget c_new,/g";
3435 " Widget\told, new; /* fix the new */\n"
3436 "};\nextern Wedged( Widget new, Widget old );";
3441 * Incorrect sprintf declaration in X11/Xmu.h
3444 hackname = x11_sprintf;
3446 files = X11/Xmu/Xmu.h;
3447 select = "^extern char \\*\tsprintf\\(\\);$";
3450 c_fix_arg = "#ifndef __STDC__\n%0\n#endif /* !defined __STDC__ */";
3452 test_text = "extern char *\tsprintf();";