inclhack.def: Avoid changing NULL on C++ friendly systems.
[official-gcc.git] / fixincludes / inclhack.def
blob084594c2c0f55e99972f8fcf61d6569a219bdcdd
1 /* -*- Mode: C -*- */
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=inclhack.sorted \
11 pattern='^/\*$' \
12 trailer='^/\*EOF\*[/]' \
13 input=inclhack.def \
14 key='hackname[ ]*=[ ]*(.*);'
16 Set up a debug test so we can make the templates emit special
17 code while debugging these fixes: */
19 #ifdef DEBUG
20 FIXINC_DEBUG = yes;
21 #endif
24 * This fixes __FD_ZERO bug for linux 2.x.y (x <= 2 && y <= some n)
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';
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>.
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>
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
57 #define _POSIX_TYPES_H_WRAPPER
58 #endif /* _POSIX_TYPES_H_WRAPPER */
59 _EndOfHeader_;
64 * This fixes __FD_ZERO bug for glibc-1.x
66 fix = {
67 hackname = AAB_fd_zero_gnu_types_h;
68 files = gnu/types.h;
69 mach = 'i[34567]86-*-linux*';
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>.
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>
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
95 #define _TYPES_H_WRAPPER
96 #endif /* _TYPES_H_WRAPPER */
97 _EndOfHeader_;
102 * This fixes __FD_ZERO bug for glibc-2.0.x
104 fix = {
105 hackname = AAB_fd_zero_selectbits_h;
106 files = selectbits.h;
107 mach = 'i[34567]86-*-linux*';
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>.
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>
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
137 #define _SELECTBITS_H_WRAPPER
138 #endif /* _SELECTBITS_H_WRAPPER */
139 _EndOfHeader_;
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.
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_;
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 )
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)\\*/";
176 replace = <<- _EndOfHeader_
177 /* This file was generated by fixincludes */
178 #ifndef __memory_h__
179 #define __memory_h__
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__ */
193 extern int memcmp();
195 #endif /* __memory_h__ */
196 _EndOfHeader;
201 * Completely replace <sys/varargs.h> with a file that includes gcc's
202 * stdarg.h or varargs.h files as appropriate.
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"
212 "#ifdef __STDC__\n"
213 "#include <stdarg.h>\n"
214 "#else\n"
215 "#include <varargs.h>\n"
216 "#endif\n\n"
218 "#endif /* _SYS_VARARGS_H */\n";
220 #endif
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.)
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 files = sys/byteorder.h;
239 replace = <<- _EndOfHeader_
240 #ifndef _SYS_BYTEORDER_H
241 #define _SYS_BYTEORDER_H
243 /* Functions to convert `short' and `long' quantities from host byte order
244 to (internet) network byte order (i.e. big-endian).
246 Written by Ron Guilmette (rfg@ncd.com).
248 This isn't actually used by GCC. It is installed by fixinc.svr4.
250 For big-endian machines these functions are essentially no-ops.
252 For little-endian machines, we define the functions using specialized
253 asm sequences in cases where doing so yields better code (e.g. i386). */
255 #if !defined (__GNUC__) && !defined (__GNUG__)
256 #error You lose! This file is only useful with GNU compilers.
257 #endif
259 #ifndef __BYTE_ORDER__
260 /* Byte order defines. These are as defined on UnixWare 1.1, but with
261 double underscores added at the front and back. */
262 #define __LITTLE_ENDIAN__ 1234
263 #define __BIG_ENDIAN__ 4321
264 #define __PDP_ENDIAN__ 3412
265 #endif
267 #ifdef __STDC__
268 static __inline__ unsigned long htonl (unsigned long);
269 static __inline__ unsigned short htons (unsigned int);
270 static __inline__ unsigned long ntohl (unsigned long);
271 static __inline__ unsigned short ntohs (unsigned int);
272 #endif /* defined (__STDC__) */
274 #if defined (__i386__)
276 #ifndef __BYTE_ORDER__
277 #define __BYTE_ORDER__ __LITTLE_ENDIAN__
278 #endif
280 /* Convert a host long to a network long. */
282 /* We must use a new-style function definition, so that this will also
283 be valid for C++. */
284 static __inline__ unsigned long
285 htonl (unsigned long __arg)
287 register unsigned long __result;
289 __asm__ ("xchg%B0 %b0,%h0
290 ror%L0 $16,%0
291 xchg%B0 %b0,%h0" : "=q" (__result) : "0" (__arg));
292 return __result;
295 /* Convert a host short to a network short. */
297 static __inline__ unsigned short
298 htons (unsigned int __arg)
300 register unsigned short __result;
302 __asm__ ("xchg%B0 %b0,%h0" : "=q" (__result) : "0" (__arg));
303 return __result;
306 #elif (defined (__ns32k__) || defined (__vax__) || defined (__arm__))
308 #ifndef __BYTE_ORDER__
309 #define __BYTE_ORDER__ __LITTLE_ENDIAN__
310 #endif
312 /* For other little-endian machines, using C code is just as efficient as
313 using assembly code. */
315 /* Convert a host long to a network long. */
317 static __inline__ unsigned long
318 htonl (unsigned long __arg)
320 register unsigned long __result;
322 __result = (__arg >> 24) & 0x000000ff;
323 __result |= (__arg >> 8) & 0x0000ff00;
324 __result |= (__arg << 8) & 0x00ff0000;
325 __result |= (__arg << 24) & 0xff000000;
326 return __result;
329 /* Convert a host short to a network short. */
331 static __inline__ unsigned short
332 htons (unsigned int __arg)
334 register unsigned short __result;
336 __result = (__arg << 8) & 0xff00;
337 __result |= (__arg >> 8) & 0x00ff;
338 return __result;
341 #else /* must be a big-endian machine */
343 #ifndef __BYTE_ORDER__
344 #define __BYTE_ORDER__ __BIG_ENDIAN__
345 #endif
347 /* Convert a host long to a network long. */
349 static __inline__ unsigned long
350 htonl (unsigned long __arg)
352 return __arg;
355 /* Convert a host short to a network short. */
357 static __inline__ unsigned short
358 htons (unsigned int __arg)
360 return __arg;
363 #endif /* big-endian */
365 /* Convert a network long to a host long. */
367 static __inline__ unsigned long
368 ntohl (unsigned long __arg)
370 return htonl (__arg);
373 /* Convert a network short to a host short. */
375 static __inline__ unsigned short
376 ntohs (unsigned int __arg)
378 return htons (__arg);
380 #endif
381 _EndOfHeader_;
386 * Cancel out ansi_compat.h on Ultrix. Replace it with an empty file.
388 fix = {
389 hackname = AAB_ultrix_ansi_compat;
390 files = ansi_compat.h;
391 select = ULTRIX;
392 replace = "/* This file intentionally left blank. */\n";
397 * The Ultrix 4.3 file limits.h is a symbolic link to sys/limits.h.
398 * Replace limits.h with a file that includes sys/limits.h.
400 fix = {
401 hackname = AAB_ultrix_limits;
402 files = limits.h;
403 mach = "*-*-ultrix4.3";
404 replace = <<- _EndOfHeader_
405 #ifndef _LIMITS_INCLUDED
406 #define _LIMITS_INCLUDED
407 #include <sys/limits.h>
408 #endif /* _LIMITS_INCLUDED */
409 _EndOfHeader_;
414 * The ULTRIX 4.3 version of memory.h duplicates definitions
415 * present in strings.h. Replace memory.h with a file that includes
416 * strings.h to prevent problems from multiple inclusion.
418 fix = {
419 hackname = AAB_ultrix_memory;
420 files = memory.h;
421 mach = "*-*-ultrix4.3";
422 replace = <<- _EndOfHeader_
423 #ifndef _MEMORY_INCLUDED
424 #define _MEMORY_INCLUDED
425 #include <strings.h>
426 #endif /* _MEMORY_INCLUDED */
427 _EndOfHeader_;
432 * The Ultrix 4.3 file string.h is a symbolic link to strings.h.
433 * Replace string.h link with a file that includes strings.h to prevent
434 * problems from multiple inclusion.
436 fix = {
437 hackname = AAB_ultrix_string;
438 files = string.h;
439 mach = "*-*-ultrix4.3";
440 replace = <<- _EndOfHeader_
441 #ifndef _STRING_INCLUDED
442 #define _STRING_INCLUDED
443 #include <strings.h>
444 #endif /* _STRING_INCLUDED */
445 _EndOfHeader_;
450 * pthread.h on AIX 4.3.3 tries to define a macro without whitspace
451 * which violates a requirement of ISO C.
453 fix = {
454 hackname = aix_pthread;
455 files = "pthread.h";
456 select = "(#define [A-Za-z_0-9]+)(\\\\\n[^A-Za-z_0-9 \t\n(])";
457 c_fix = format;
458 c_fix_arg = "%1 %2";
459 test_text = "#define PTHREAD_MUTEX_INITIALIZER\\\\\n"
460 "{...init stuff...}";
465 * sys/machine.h on AIX 4.3.3 puts whitespace between a \ and a newline
466 * in an otherwise harmless (and #ifed out) macro definition
468 fix = {
469 hackname = aix_sysmachine;
470 files = sys/machine.h;
471 select = "\\\\ +\n";
472 c_fix = format;
473 c_fix_arg = "\\\n";
474 test_text = "#define FOO \\\n"
475 " bar \\ \n baz \\ \n bat";
480 * sys/wait.h on AIX 3.2.5 puts the declaration of wait3 before the
481 * definition of struct rusage, so the prototype added by fixproto fails.
483 fix = {
484 hackname = aix_syswait;
485 files = sys/wait.h;
486 select = "^extern pid_t wait3\\(\\);\n";
487 select = "bos325,";
488 c_fix = format;
489 c_fix_arg = "struct rusage;\n%0";
490 test_text = "/* bos325, */\n"
491 "extern pid_t wait3();\n"
492 "\t/* pid_t wait3(int *, int, struct rusage *); */";
497 * sys/wait.h on AIX 5.2 defines macros that have both signed and
498 * unsigned types in conditional expressions.
500 fix = {
501 hackname = aix_syswait_2;
502 files = sys/wait.h;
503 select = '\? (\(\(\(\(unsigned[^)]*\)[^)]*\) >> [^)]*\) \& 0xff\) : -1)';
504 c_fix = format;
505 c_fix_arg = "? (int)%1";
506 test_text = "#define WSTOPSIG(__x) (int)(WIFSTOPPED(__x) ? ((((unsigned int)__x) >> 8) & 0xff) : -1)";
511 * sys/signal.h on some versions of AIX uses volatile in the typedef of
512 * sig_atomic_t, which causes gcc to generate a warning about duplicate
513 * volatile when a sig_atomic_t variable is declared volatile, as
514 * required by ANSI C.
516 fix = {
517 hackname = aix_volatile;
518 files = sys/signal.h;
519 select = "typedef volatile int sig_atomic_t";
520 c_fix = format;
521 c_fix_arg = "typedef int sig_atomic_t";
522 test_text = "typedef volatile int sig_atomic_t;";
527 * Fix __assert declaration in assert.h on Alpha OSF/1.
529 fix = {
530 hackname = alpha___assert;
531 files = "assert.h";
532 select = '__assert\(char \*, char \*, int\)';
533 c_fix = format;
534 c_fix_arg = "__assert(const char *, const char *, int)";
535 test_text = 'extern void __assert(char *, char *, int);';
540 * Obey __PRAGMA_EXTERN_PREFIX for Tru64 UNIX V4/5 headers.
542 fix = {
543 hackname = alpha___extern_prefix;
544 select = "(.*)(defined\\(__DECC\\)|def[ \t]*__DECC)[ \t]*\n(#[ \t]*pragma[ \t]*extern_prefix.*)";
546 mach = "alpha*-dec-osf*";
547 c_fix = format;
548 c_fix_arg = "%1 (defined(__DECC) || defined(__PRAGMA_EXTERN_PREFIX))\n%3";
550 test_text = "#ifdef __DECC\n"
551 "#pragma extern_prefix \"_P\"\n"
552 "# if defined(__DECC)\n"
553 "# pragma extern_prefix \"_E\"\n"
554 "# if !defined(_LIBC_POLLUTION_H_) && defined(__DECC)\n"
555 "# pragma extern_prefix \"\"";
560 * Obey __PRAGMA_EXTERN_PREFIX for Tru64 UNIX V4/5 <standards.h>.
562 fix = {
563 hackname = alpha___extern_prefix_standards;
564 files = standards.h;
565 select = ".*!defined\\(_LIBC_POLLUTION_H_\\) && !defined\\(__DECC\\)";
567 mach = "alpha*-dec-osf*";
568 c_fix = format;
569 c_fix_arg = "%0 && !defined(__PRAGMA_EXTERN_PREFIX)";
571 test_text = "#if (_ISO_C_SOURCE>=19990L) && !defined(_LIBC_POLLUTION_H_) && !defined(__DECC)";
576 * Obey __PRAGMA_EXTERN_PREFIX for Tru64 UNIX V5 <sys/mount.h> and
577 * <sys/stat.h>. The tests for __DECC are special in various ways, so
578 * alpha__extern_prefix cannot be used.
580 fix = {
581 hackname = alpha___extern_prefix_sys_stat;
582 files = sys/stat.h;
583 files = sys/mount.h;
584 select = "#[ \t]*if[ \t]*defined\\(__DECC\\)";
586 mach = "alpha*-dec-osf5*";
587 c_fix = format;
588 c_fix_arg = "%0 || defined(__PRAGMA_EXTERN_PREFIX)";
590 test_text = "# if defined(__DECC)";
595 * Fix assert macro in assert.h on Alpha OSF/1.
596 * The superfluous int cast breaks C++.
598 fix = {
599 hackname = alpha_assert;
600 files = "assert.h";
601 select = '(#define assert\(EX\).*)\(\(int\) \(EX\)\)';
602 c_fix = format;
603 c_fix_arg = "%1(EX)";
604 test_text = '#define assert(EX) (((int) (EX)) ? (void)0 : __assert(#EX, __FILE__, __LINE__))';
609 * Fix #defines under Alpha OSF/1:
610 * The following files contain '#pragma extern_prefix "_FOO"' followed by
611 * a '#define something(x,y,z) _FOOsomething(x,y,z)'. The intent of these
612 * statements is to reduce namespace pollution. While these macros work
613 * properly in most cases, they don't allow you to take a pointer to the
614 * "something" being modified. To get around this limitation, change these
615 * statements to be of the form '#define something _FOOsomething'.
617 * sed ain't egrep, lesson 2463: sed can use self-referential
618 * regular expressions. In the substitute expression below,
619 * "\\1" and "\\2" refer to subexpressions found earlier in the
620 * same match. So, we continue to use sed. "extern_prefix" will
621 * be a rare match anyway...
623 fix = {
624 hackname = alpha_bad_lval;
626 select = "^[ \t]*#[ \t]*pragma[ \t]+extern_prefix";
627 mach = "alpha*-dec-osf*";
629 sed =
630 "s/^[ \t]*#[ \t]*define[ \t][ \t]*\\([^(]*\\)\\(([^)]*)\\)[ \t]*"
631 "\\(_.*\\)\\1\\2[ \t]*$/#define \\1 \\3\\1/";
633 test_text = '#pragma extern_prefix "_FOO"'"\n"
634 "#define something(x,y,z) _FOOsomething(x,y,z)\n"
635 "#define mumble _FOOmumble";
640 * Fix getopt declarations in stdio.h and stdlib.h on Alpha OSF/1 and AIX.
642 fix = {
643 hackname = alpha_getopt;
644 files = "stdio.h";
645 files = "stdlib.h";
646 select = 'getopt\(int, char \*\[\], *char \*\)';
647 c_fix = format;
648 c_fix_arg = "getopt(int, char *const[], const char *)";
649 test_text = 'extern int getopt(int, char *[], char *);';
654 * Remove erroneous parentheses in sym.h on Alpha OSF/1.
656 fix = {
657 hackname = alpha_parens;
658 files = sym.h;
659 select = '#ifndef\(__mips64\)';
660 c_fix = format;
661 c_fix_arg = "#ifndef __mips64";
662 test_text = "#ifndef(__mips64) /* bogus */\nextern int foo;\n#endif";
667 * Obey __PRAGMA_EXTERN_PREFIX for Tru64 UNIX <pthread.h>.
669 fix = {
670 hackname = alpha_pthread;
671 files = pthread.h;
672 select = "((#[ \t]*if)([ \t]*defined[ \t]*\\(_PTHREAD_ENV_DECC\\)|def _PTHREAD_ENV_DECC)(.*))\n"
673 "(#[ \t]*define _PTHREAD_USE_PTDNAM_)";
675 mach = "alpha*-dec-osf*";
676 c_fix = format;
677 c_fix_arg = "%2 defined (_PTHREAD_ENV_DECC)%4 || defined (__PRAGMA_EXTERN_PREFIX)\n%5";
679 test_text = "# if defined (_PTHREAD_ENV_DECC) || defined (_PTHREAD_ENV_EPCC)\n"
680 "# define _PTHREAD_USE_PTDNAM_\n"
681 "# endif\n"
682 "# ifdef _PTHREAD_ENV_DECC\n"
683 "# define _PTHREAD_USE_PTDNAM_\n"
684 "# endif";
689 * Recognize GCC in Tru64 UNIX V5.1B <pthread.h>.
691 fix = {
692 hackname = alpha_pthread_gcc;
693 files = pthread.h;
694 select = "#else\n# error <pthread.h>: unrecognized compiler.";
696 mach = "alpha*-dec-osf*";
697 c_fix = format;
698 c_fix_arg = "#elif defined (__GNUC__)\n"
699 "# define _PTHREAD_ENV_GCC\n"
700 "%0";
702 test_text = "# define _PTHREAD_ENV_INTELC\n"
703 "#else\n"
704 "# error <pthread.h>: unrecognized compiler.\n"
705 "#endif";
710 * Fix return value of sbrk in unistd.h on Alpha OSF/1 V2.0
711 * And OpenBSD.
713 fix = {
714 hackname = alpha_sbrk;
715 files = unistd.h;
716 select = "char[ \t]*\\*[\t ]*sbrk[ \t]*\\(";
717 c_fix = format;
718 c_fix_arg = "void *sbrk(";
719 test_text = "extern char* sbrk(ptrdiff_t increment);";
724 * Change external names of wcstok/wcsftime via asm instead of macros on
725 * Tru64 UNIX V4.0.
727 fix = {
728 hackname = alpha_wchar;
729 files = wchar.h;
731 mach = "alpha*-dec-osf4*";
732 select = "#define wcstok wcstok_r";
733 sed = "s@#define wcstok wcstok_r@extern wchar_t *wcstok __((wchar_t *, const wchar_t *, wchar_t **)) __asm__(\"wcstok_r\");@";
734 sed = "s@#define wcsftime __wcsftime_isoc@extern size_t wcsftime __((wchar_t *, size_t, const wchar_t *, const struct tm *)) __asm__(\"__wcsftime_isoc\");@";
735 test_text = "#define wcstok wcstok_r\n"
736 "#define wcsftime __wcsftime_isoc";
741 * For C++, avoid any typedef or macro definition of bool,
742 * and use the built in type instead.
743 * HP/UX 10.20 also has it in curses_colr/curses.h.
745 fix = {
746 hackname = avoid_bool_define;
747 files = curses.h;
748 files = curses_colr/curses.h;
749 files = term.h;
750 files = tinfo.h;
752 select = "#[ \t]*define[ \t]+bool[ \t]";
753 bypass = "__cplusplus";
755 c_fix = format;
756 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
757 c_fix_arg = "^[ \t]*#[ \t]*define[ \t]+bool[ \t].*";
759 test_text = "# define bool\t char \n";
763 fix = {
764 hackname = avoid_bool_type;
765 files = curses.h;
766 files = curses_colr/curses.h;
767 files = term.h;
768 files = tinfo.h;
770 select = "^[ \t]*typedef[ \t].*[ \t]bool[ \t]*;";
771 bypass = "__cplusplus";
773 c_fix = format;
774 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
776 test_text = "typedef unsigned int\tbool \t; /* bool\n type */";
781 * For C++, avoid any typedef definition of wchar_t,
782 * and use the built in type instead.
783 * Don't do this for headers that are smart enough to do the right
784 * thing (recent [n]curses.h and Xlib.h).
785 * Don't do it for <linux/nls.h> which is never used from C++ anyway,
786 * and will be broken by the edit.
789 fix = {
790 hackname = avoid_wchar_t_type;
792 select = "^[ \t]*typedef[ \t].*[ \t]wchar_t[ \t]*;";
793 bypass = "__cplusplus";
794 bypass = "_LINUX_NLS_H";
795 bypass = "XFree86: xc/lib/X11/Xlib\\.h";
797 c_fix = format;
798 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
800 test_text = "typedef unsigned short\twchar_t \t; /* wchar_t\n type */";
805 * Fix `typedef struct term;' on hppa1.1-hp-hpux9.
807 fix = {
808 hackname = bad_struct_term;
809 files = curses.h;
810 select = "^[ \t]*typedef[ \t]+struct[ \t]+term[ \t]*;";
811 c_fix = format;
812 c_fix_arg = "struct term;";
814 test_text = 'typedef struct term;';
819 * Fix one other error in this file:
820 * a mismatched quote not inside a C comment.
822 fix = {
823 hackname = badquote;
824 files = sundev/vuid_event.h;
825 select = "doesn't";
826 c_fix = format;
827 c_fix_arg = "does not";
829 test_text = "/* doesn't have matched single quotes */";
834 * check for broken assert.h that needs stdio.h
836 fix = {
837 hackname = broken_assert_stdio;
838 files = assert.h;
839 select = stderr;
840 bypass = "include.*stdio\\.h";
841 c_fix = wrap;
842 c_fix_arg = "#include <stdio.h>\n";
843 test_text = "extern FILE* stderr;";
848 * check for broken assert.h that needs stdlib.h
850 fix = {
851 hackname = broken_assert_stdlib;
852 files = assert.h;
853 select = 'exit *\(|abort *\(';
854 bypass = "include.*stdlib\\.h";
855 c_fix = wrap;
856 c_fix_arg = "#ifdef __cplusplus\n"
857 "#include <stdlib.h>\n"
858 "#endif\n";
859 test_text = "extern void exit ( int );";
864 * Remove `extern double cabs' declarations from math.h.
865 * This conflicts with C99. Discovered on AIX.
866 * SunOS4 has its cabs() declaration followed by a comment which
867 * terminates on the following line.
868 * Darwin hides its broken cabs in architecture-specific subdirs.
870 fix = {
871 hackname = broken_cabs;
872 files = "math.h";
873 files = "architecture/ppc/math.h";
874 files = "architecture/i386/math.h";
875 select = '^extern[ \t]+double[ \t]+cabs';
877 c_fix = format;
878 c_fix_arg = "";
879 c_fix_arg = "^extern[ \t]+double[ \t]+cabs[ \t]*\\([^\\)]*\\);";
881 test_text = "#ifdef __STDC__\n"
882 "extern double cabs(struct dbl_hypot);\n"
883 "#else\n"
884 "extern double cabs();\n"
885 "#endif\n"
886 "extern double cabs ( _Complex z );\n"
887 "extern double cabs(); /* This is a comment\n"
888 " and it ends here. */";
893 * Various systems derived from BSD4.4 contain a macro definition
894 * for vfscanf that interacts badly with requirements of builtin-attrs.def.
895 * Known to be fixed in FreeBSD 5 system headers.
897 fix = {
898 hackname = bsd_stdio_attrs_conflict;
899 mach = *-*-*bsd*;
900 mach = *-*-*darwin*;
901 files = stdio.h;
902 select = "^#define[ \t]*vfscanf[ \t]*__svfscanf[ \t]*$";
903 c_fix = format;
904 c_fix_arg = '#define _BSD_STRING(_BSD_X) _BSD_STRINGX(_BSD_X)' "\n"
905 '#define _BSD_STRINGX(_BSD_X) #_BSD_X' "\n"
906 'int vfscanf(FILE *, const char *, __builtin_va_list) '
907 '__asm__ (_BSD_STRING(__USER_LABEL_PREFIX__) "__svfscanf");';
908 test_text = '#define vfscanf __svfscanf';
913 * Fix various macros used to define ioctl numbers.
914 * The traditional syntax was:
916 * #define _CTRL(n, x) (('n'<<8)+x)
917 * #define TCTRLCFOO _CTRL(T, 1)
919 * but this does not work with the C standard, which disallows macro
920 * expansion inside strings. We have to rewrite it thus:
922 * #define _CTRL(n, x) ((n<<8)+x)
923 * #define TCTRLCFOO _CTRL('T', 1)
925 * The select expressions match too much, but the c_fix code is cautious.
927 * CTRL might be: CTRL _CTRL ISCTRL BSD43_CTRL ...
929 fix = {
930 hackname = ctrl_quotes_def;
931 select = "define[ \t]+[A-Z0-9_]+CTRL\\([a-zA-Z][,)]";
932 c_fix = char_macro_def;
933 c_fix_arg = "CTRL";
936 * This is two tests in order to ensure that the "CTRL(c)" can
937 * be selected in isolation from the multi-arg format
939 test_text = "#define BSD43_CTRL(n, x) (('n'<<8)+x)\n";
940 test_text = "#define _CTRL(c) ('c'&037)";
943 fix = {
944 hackname = ctrl_quotes_use;
945 select = "define[ \t]+[A-Z0-9_]+[ \t]+[A-Z0-9_]+CTRL[ \t]*\\( *[^,']";
946 c_fix = char_macro_use;
947 c_fix_arg = "CTRL";
948 test_text = "#define TCTRLFOO BSD43_CTRL(T, 1)";
953 * sys/mman.h on HP/UX is not C++ ready,
954 * even though NO_IMPLICIT_EXTERN_C is defined on HP/UX.
956 * rpc/types.h on OSF1/2.0 is not C++ ready,
957 * even though NO_IMPLICIT_EXTERN_C is defined for the alpha.
959 * The problem is the declaration of malloc.
961 fix = {
962 hackname = cxx_unready;
963 files = sys/mman.h;
964 files = rpc/types.h;
965 select = '[^#]+malloc.*;'; /* Catch any form of declaration
966 not within a macro. */
967 bypass = '"C"|__BEGIN_DECLS';
969 c_fix = wrap;
970 c_fix_arg = "#ifdef __cplusplus\n"
971 "extern \"C\" {\n"
972 "#endif\n";
973 c_fix_arg = "#ifdef __cplusplus\n"
974 "}\n"
975 "#endif\n";
976 test_text = "extern void* malloc( size_t );";
981 * AvailabilityMacros.h on Darwin breaks with GCC 4.0, because of
982 * bad __GNUC__ tests.
985 fix = {
986 hackname = darwin_gcc4_breakage;
987 mach = "*-*-darwin*";
988 files = AvailabilityMacros.h;
989 select = "\\(__GNUC__ >= 3\\) && \\(__GNUC_MINOR__ >= 1\\)";
990 c_fix = format;
991 c_fix_arg = "((__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1))";
992 test_text = "#if defined(__GNUC__) && (__GNUC__ >= 3) && "
993 "(__GNUC_MINOR__ >= 1)\n";
998 * __private_extern__ doesn't exist in FSF GCC. Even if it did,
999 * why would you ever put it in a system header file?
1001 fix = {
1002 hackname = darwin_private_extern;
1003 mach = "*-*-darwin*";
1004 files = mach-o/dyld.h;
1005 select = "__private_extern__ [a-z_]+ _dyld_";
1006 c_fix = format;
1007 c_fix_arg = "extern";
1008 c_fix_arg = "__private_extern__";
1009 test_text = "__private_extern__ int _dyld_func_lookup(\n"
1010 "const char *dyld_func_name,\n"
1011 "unsigned long *address);\n";
1016 * Fix <c_asm.h> on Digital UNIX V4.0:
1017 * It contains a prototype for a DEC C internal asm() function,
1018 * clashing with gcc's asm keyword. So protect this with __DECC.
1020 fix = {
1021 hackname = dec_intern_asm;
1022 files = c_asm.h;
1023 sed = "/^[ \t]*float[ \t]*fasm/i\\\n#ifdef __DECC\n";
1024 sed = "/^[ \t]*#[ \t]*pragma[ \t]*intrinsic([ \t]*dasm/a\\\n"
1025 "#endif\n";
1026 test_text =
1027 "float fasm {\n"
1028 " ... asm stuff ...\n"
1029 "};\n#pragma intrinsic( dasm )\n/* END ASM TEST*/";
1034 * Fix typo in <wchar.h> on DJGPP 2.03.
1036 fix = {
1037 hackname = djgpp_wchar_h;
1038 file = wchar.h;
1039 select = "__DJ_wint_t";
1040 bypass = "sys/djtypes.h";
1041 c_fix = format;
1042 c_fix_arg = "%0\n#include <sys/djtypes.h>";
1043 c_fix_arg = "#include <stddef.h>";
1044 test_text = "#include <stddef.h>\n"
1045 "extern __DJ_wint_t x;\n";
1050 * Fix these Sun OS files to avoid an invalid identifier in an #ifdef.
1052 fix = {
1053 hackname = ecd_cursor;
1054 files = "sunwindow/win_lock.h";
1055 files = "sunwindow/win_cursor.h";
1056 select = 'ecd\.cursor';
1057 c_fix = format;
1058 c_fix_arg = 'ecd_cursor';
1060 test_text = "#ifdef ecd.cursor\n#error bogus\n#endif /* ecd+cursor */";
1065 * math.h on SunOS 4 puts the declaration of matherr before the definition
1066 * of struct exception, so the prototype (added by fixproto) causes havoc.
1067 * This must appear before the math_exception fix.
1069 fix = {
1070 hackname = exception_structure;
1071 files = math.h;
1073 /* If matherr has a prototype already, the header needs no fix. */
1074 bypass = 'matherr.*(struct exception|__MATH_EXCEPTION|[ \t]*__FP_EXCEPTION[ \t]*\*[ \t]*)';
1075 select = matherr;
1077 c_fix = wrap;
1078 c_fix_arg = "struct exception;\n";
1080 test_text = "extern int matherr();";
1085 * Between 8/24/1998 and 2/17/2001, FreeBSD system headers presume
1086 * neither the existence of GCC 3 nor its exact feature set yet break
1087 * (by design?) when __GNUC__ is set beyond 2.
1089 fix = {
1090 hackname = freebsd_gcc3_breakage;
1091 mach = *-*-freebsd*;
1092 files = sys/cdefs.h;
1093 select = '^#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7$';
1094 bypass = '__GNUC__[ \t]*([>=]=[ \t]*[3-9]|>[ \t]*2)';
1095 c_fix = format;
1096 c_fix_arg = '%0 || __GNUC__ >= 3';
1097 test_text = '#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7';
1102 * Some releases of FreeBSD 4 and FreeBSD 5.0 and 5.1 system headers presume
1103 * neither the existence of GCC 4 nor its exact feature set yet break
1104 * (by design?) when __GNUC__ is set beyond 3.
1106 fix = {
1107 hackname = freebsd_gcc4_breakage;
1108 mach = *-*-freebsd*;
1109 files = sys/cdefs.h;
1110 select = '^#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7 \|\| __GNUC__ == 3$';
1111 c_fix = format;
1112 c_fix_arg = '#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7 || __GNUC__ >= 3';
1113 test_text = '#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7 || __GNUC__ == 3';
1118 * Fix these files to use the types we think they should for
1119 * ptrdiff_t, size_t, and wchar_t.
1121 * This defines the types in terms of macros predefined by our 'cpp'.
1122 * This is supposedly necessary for glibc's handling of these types.
1123 * It's probably not necessary for anyone else, but it doesn't hurt.
1125 fix = {
1126 hackname = gnu_types;
1127 files = "sys/types.h";
1128 files = "stdlib.h";
1129 files = "sys/stdtypes.h";
1130 files = "stddef.h";
1131 files = "memory.h";
1132 files = "unistd.h";
1133 bypass = '_GCC_(PTRDIFF|SIZE|WCHAR)_T';
1134 select = "^[ \t]*typedef[ \t]+.*[ \t](ptrdiff|size|wchar)_t;";
1135 c_fix = gnu_type;
1137 test_text = "typedef long int ptrdiff_t; /* long int */\n"
1138 "typedef uint_t size_t; /* uint_t */\n"
1139 "typedef ushort_t wchar_t; /* ushort_t */";
1144 * Fix HP & Sony's use of "../machine/xxx.h"
1145 * to refer to: <machine/xxx.h>
1147 fix = {
1148 hackname = hp_inline;
1149 files = sys/spinlock.h;
1150 files = machine/machparam.h;
1151 select = "[ \t]*#[ \t]*include[ \t]+" '"\.\./machine/';
1153 c_fix = format;
1154 c_fix_arg = "%1<machine/%2.h>";
1156 c_fix_arg = "([ \t]*#[ \t]*include[ \t]+)" '"\.\./machine/'
1157 '([a-z]+)\.h"';
1159 test_text = ' # include "../machine/mumble.h"';
1164 * Check for (...) in C++ code in HP/UX sys/file.h.
1166 fix = {
1167 hackname = hp_sysfile;
1168 files = sys/file.h;
1169 select = "HPUX_SOURCE";
1171 c_fix = format;
1172 c_fix_arg = "(struct file *, ...)";
1173 c_fix_arg = '\(\.\.\.\)';
1175 test_text = "extern void foo(...); /* HPUX_SOURCE - bad varargs */";
1180 * Delete C++ double pow (double, int) inline function from HP-UX 10 & 11
1181 * math.h to prevent clash with define in c_std/bits/std_cmath.h.
1183 fix = {
1184 hackname = hpux10_cpp_pow_inline;
1185 files = fixinc-test-limits.h, math.h;
1186 select = <<- END_POW_INLINE
1187 ^# +ifdef +__cplusplus
1189 +inline +double +pow\(double +__d,int +__expon\) +\{
1190 [ ]+return +pow\(__d,\(double\)__expon\);
1192 +extern +"C" +\{
1193 #else
1194 # +endif
1195 END_POW_INLINE;
1197 c_fix = format;
1198 c_fix_arg = "";
1200 test_text =
1201 "# ifdef __cplusplus\n"
1202 " }\n"
1203 " inline double pow(double __d,int __expon) {\n"
1204 "\t return pow(__d,(double)__expon);\n"
1205 " }\n"
1206 ' extern "C"' " {\n"
1207 "#else\n"
1208 "# endif";
1211 fix = {
1212 hackname = hpux11_cpp_pow_inline;
1213 files = math.h;
1214 select = " +inline double pow\\(double d,int expon\\) \\{\n"
1215 " +return pow\\(d, \\(double\\)expon\\);\n"
1216 " +\\}\n";
1217 c_fix = format;
1218 c_fix_arg = "";
1220 test_text =
1221 " inline double pow(double d,int expon) {\n"
1222 " return pow(d, (double)expon);\n"
1223 " }\n";
1228 * Fix hpux 10.X missing ctype declarations 1
1230 fix = {
1231 hackname = hpux10_ctype_declarations1;
1232 files = ctype.h;
1233 select = "^#[ \t]*define _toupper\\(__c\\)[ \t]*__toupper\\(__c\\)";
1234 bypass = "^[ \t]*extern[ \t]*int[ \t]*__tolower[ \t]*\\(";
1235 c_fix = format;
1236 c_fix_arg = "#ifdef _PROTOTYPES\n"
1237 "extern int __tolower(int);\n"
1238 "extern int __toupper(int);\n"
1239 "#else /* NOT _PROTOTYPES */\n"
1240 "extern int __tolower();\n"
1241 "extern int __toupper();\n"
1242 "#endif /* _PROTOTYPES */\n\n"
1243 "%0\n";
1245 test_text = "# define _toupper(__c) __toupper(__c)\n";
1250 * Fix hpux 10.X missing ctype declarations 2
1252 fix = {
1253 hackname = hpux10_ctype_declarations2;
1254 files = ctype.h;
1255 select = "^# if defined\\(_SB_CTYPE_MACROS\\) && \\!defined\\(__lint\\)";
1256 bypass = "^[ \t]*extern[ \t]*int[ \t]*_isalnum[ \t]*\\(";
1257 c_fix = format;
1258 c_fix_arg = "%0\n\n"
1259 "#ifdef _PROTOTYPES\n"
1260 " extern int _isalnum(int);\n"
1261 " extern int _isalpha(int);\n"
1262 " extern int _iscntrl(int);\n"
1263 " extern int _isdigit(int);\n"
1264 " extern int _isgraph(int);\n"
1265 " extern int _islower(int);\n"
1266 " extern int _isprint(int);\n"
1267 " extern int _ispunct(int);\n"
1268 " extern int _isspace(int);\n"
1269 " extern int _isupper(int);\n"
1270 " extern int _isxdigit(int);\n"
1271 "# else /* not _PROTOTYPES */\n"
1272 " extern int _isalnum();\n"
1273 " extern int _isalpha();\n"
1274 " extern int _iscntrl();\n"
1275 " extern int _isdigit();\n"
1276 " extern int _isgraph();\n"
1277 " extern int _islower();\n"
1278 " extern int _isprint();\n"
1279 " extern int _ispunct();\n"
1280 " extern int _isspace();\n"
1281 " extern int _isupper();\n"
1282 " extern int _isxdigit();\n"
1283 "#endif /* _PROTOTYPES */\n";
1285 test_text = "# if defined(_SB_CTYPE_MACROS) && !defined(__lint)\n"
1286 " extern unsigned int *__SB_masks;\n";
1291 * Fix hpux 10.X missing stdio declarations
1293 fix = {
1294 hackname = hpux10_stdio_declarations;
1295 files = stdio.h;
1296 select = "^#[ \t]*define _iob[ \t]*__iob";
1297 bypass = "^[ \t]*extern[ \t]*int[ \t]*vsnprintf[ \t]*\\(";
1298 c_fix = format;
1299 c_fix_arg = "%0\n\n"
1300 "# if defined(__STDC__) || defined(__cplusplus)\n"
1301 " extern int snprintf(char *, size_t, const char *, ...);\n"
1302 " extern int vsnprintf(char *, size_t, const char *, __va_list);\n"
1303 "# else /* not __STDC__) || __cplusplus */\n"
1304 " extern int snprintf();\n"
1305 " extern int vsnprintf();\n"
1306 "# endif /* __STDC__) || __cplusplus */\n";
1308 test_text = "# define _iob __iob\n";
1313 * Make sure hpux defines abs in header.
1315 fix = {
1316 hackname = hpux11_abs;
1317 mach = ia64-hp-hpux11*;
1318 files = stdlib.h;
1319 select = "ifndef _MATH_INCLUDED";
1320 c_fix = format;
1321 c_fix_arg = "if !defined(_MATH_INCLUDED) || defined(__GNUG__)";
1322 // sed = "s/ifndef _MATH_INCLUDED/if !defined(_MATH_INCLUDED) || defined(__GNUG__)/";
1323 test_text = "#ifndef _MATH_INCLUDED";
1328 * Keep HP-UX 11 from stomping on C++ math namespace
1329 * with defines for fabsf.
1331 fix = {
1332 hackname = hpux11_fabsf;
1333 files = math.h;
1334 select = "^[ \t]*#[ \t]*define[ \t]+fabsf\\(.*";
1335 bypass = "__cplusplus";
1337 c_fix = format;
1338 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
1340 test_text =
1341 "#ifdef _PA_RISC\n"
1342 "# define fabsf(x) ((float)fabs((double)(float)(x)))\n"
1343 "#endif";
1348 * Prevent HP-UX 11 from defining __size_t and preventing size_t from
1349 * being defined by having it define _hpux_size_t instead.
1351 fix = {
1352 hackname = hpux11_size_t;
1353 mach = "*-hp-hpux11*";
1354 select = "__size_t";
1356 c_fix = format;
1357 c_fix_arg = "_hpux_size_t";
1359 test_text =
1360 "#define __size_t size_t\n"
1361 " extern int getpwuid_r( char *, __size_t, struct passwd **);\n";
1366 * Fix hpux 11.00 broken snprintf declaration
1367 * (third argument is char *, needs to be const char * to prevent
1368 * spurious warnings with -Wwrite-strings or in C++).
1370 fix = {
1371 hackname = hpux11_snprintf;
1372 files = stdio.h;
1373 select = '(extern int snprintf *\(char *\*, *(|__|_hpux_)size_t,)'
1374 ' *(char *\*, *\.\.\.\);)';
1375 c_fix = format;
1376 c_fix_arg = '%1 const %3';
1378 test_text = "extern int snprintf(char *, size_t, char *, ...);\n"
1379 "extern int snprintf(char *, __size_t, char *, ...);\n"
1380 "extern int snprintf(char *, _hpux_size_t, char *, ...);";
1385 * In inttypes.h on HPUX 11, the use of __CONCAT__ in the definition
1386 * of UINT32_C has undefined behavior according to ISO/ANSI:
1387 * the arguments to __CONCAT__ are not macro expanded before the
1388 * concatination happens so the trailing ')' in the first argument
1389 * is concatinated with the 'l' in the second argument creating an
1390 * invalid pp token. The behavior of invalid pp tokens is undefined.
1391 * GCC does not handle these invalid tokens the way the HP compiler does.
1392 * This problem will potentially occur anytime macros are used in the
1393 * arguments to __CONCAT__. A general solution to this problem would be to
1394 * insert another layer of macro between __CONCAT__ and its use
1395 * in UINT32_C. An example of this solution can be found in the C standard.
1396 * A more specific solution, the one used here, is to change the UINT32_C
1397 * macro to not used macros in the arguments to __CONCAT__.
1399 fix = {
1400 hackname = hpux11_uint32_c;
1401 files = inttypes.h;
1402 select = "^#define UINT32_C\\(__c\\)[ \t]*"
1403 "__CONCAT__\\(__CONCAT_U__\\(__c\\),l\\)";
1404 c_fix = format;
1405 c_fix_arg = '#define UINT32_C(__c) __CONCAT__(__c,ul)';
1406 test_text =
1407 "#define CONCAT_U__(__c)\t__CONCAT__(__c,u)\n"
1408 "#define UINT32_C(__c)\t__CONCAT__(__CONCAT_U__(__c),l)";
1413 * Fix hpux 11.00 broken vsnprintf declaration
1415 fix = {
1416 hackname = hpux11_vsnprintf;
1417 files = stdio.h;
1418 select = '(extern int vsnprintf\(char \*, _[hpux]*_size_t, '
1419 'const char \*,) __va__list\);';
1420 c_fix = format;
1421 c_fix_arg = "%1 __va_list);";
1423 test_text = 'extern int vsnprintf(char *, _hpux_size_t, const char *,'
1424 ' __va__list);';
1429 * get rid of bogus inline definitions in HP-UX 8.0
1431 fix = {
1432 hackname = hpux8_bogus_inlines;
1433 files = math.h;
1434 select = inline;
1435 sed = "s@inline int abs(int [a-z][a-z]*) {.*}"
1436 "@extern \"C\" int abs(int);@";
1437 sed = "s@inline double abs(double [a-z][a-z]*) {.*}@@";
1438 sed = "s@inline int sqr(int [a-z][a-z]*) {.*}@@";
1439 sed = "s@inline double sqr(double [a-z][a-z]*) {.*}@@";
1440 test_text = "inline int abs(int v) { return (v>=0)?v:-v; }\n"
1441 "inline double sqr(double v) { return v**0.5; }";
1446 * Fix hpux broken ctype macros
1448 fix = {
1449 hackname = hpux_ctype_macros;
1450 files = ctype.h;
1451 select = '((: |\()__SB_masks \? )'
1452 '(__SB_masks\[__(alnum|c)\] & _IS)';
1453 c_fix = format;
1454 c_fix_arg = "%1(int)%3";
1456 test_text = ": __SB_masks ? __SB_masks[__alnum] & _ISCNTRL\n"
1457 "# define isalpha(__c) (__SB_masks ? __SB_masks[__c] & _IS\n";
1462 * HP-UX long_double
1464 fix = {
1465 hackname = hpux_long_double;
1466 files = stdlib.h;
1467 select = "extern[ \t]long_double[ \t]strtold";
1468 bypass = "long_double_t";
1469 sed = "/^#[ \t]*ifndef _LONG_DOUBLE/,/\\/\\* _LONG_DOUBLE \\*\\//D";
1470 sed = "s/long_double/long double/g";
1472 test_text = "# ifndef _LONG_DOUBLE\n"
1473 "# define _LONG_DOUBLE\n"
1474 " typedef struct {\n"
1475 " unsigned int word1, word2, word3, word4;\n"
1476 " } long_double;\n"
1477 "# endif /* _LONG_DOUBLE */\n"
1478 "extern long_double strtold(const char *, char **);\n";
1483 * HPUX 10.x sys/param.h defines MAXINT which clashes with values.h
1485 fix = {
1486 hackname = hpux_maxint;
1487 files = sys/param.h;
1488 files = values.h;
1489 select = "^#[ \t]*define[ \t]+MAXINT[ \t]";
1490 bypass = "^#[ \t]*ifndef[ \t]+MAXINT";
1491 test =
1492 "-n \"`egrep '#[ \t]*define[ \t]+MAXINT[ \t]' sys/param.h`\"";
1494 c_fix = format;
1495 c_fix_arg = "#ifndef MAXINT\n%0\n#endif";
1496 c_fix_arg = "^#[ \t]*define[ \t]+MAXINT[ \t].*";
1498 test_text = '#define MAXINT 0x7FFFFFFF';
1503 * Fix hpux10.20 <sys/time.h> to avoid invalid forward decl
1505 fix = {
1506 hackname = hpux_systime;
1507 files = sys/time.h;
1508 select = "^extern struct sigevent;";
1510 c_fix = format;
1511 c_fix_arg = "struct sigevent;";
1513 test_text = 'extern struct sigevent;';
1518 * Fix return type of abort and free
1520 fix = {
1521 hackname = int_abort_free_and_exit;
1522 files = stdlib.h;
1523 select = "int[ \t]+(abort|free|exit)[ \t]*\\(";
1525 c_fix = format;
1526 c_fix_arg = "void\t%1(";
1528 test_text = "extern int abort(int);\n"
1529 "extern int free(void*);\n"
1530 "extern int exit(void*);";
1535 * Fix various macros used to define ioctl numbers.
1536 * The traditional syntax was:
1538 * #define _IO(n, x) (('n'<<8)+x)
1539 * #define TIOCFOO _IO(T, 1)
1541 * but this does not work with the C standard, which disallows macro
1542 * expansion inside strings. We have to rewrite it thus:
1544 * #define _IO(n, x) ((n<<8)+x)
1545 * #define TIOCFOO _IO('T', 1)
1547 * The select expressions match too much, but the c_fix code is cautious.
1549 * _IO might be: _IO DESIO BSD43__IO with W, R, WR, C, ... suffixes.
1551 fix = {
1552 hackname = io_quotes_def;
1553 select = "define[ \t]+[A-Z0-9_]+IO[A-Z]*\\([a-zA-Z][,)]";
1554 c_fix = char_macro_def;
1555 c_fix_arg = "IO";
1556 test_text =
1557 "#define BSD43__IOWR(n, x) (('n'<<8)+x)\n"
1558 "#define _IOWN(x,y,t) (_IOC_IN|(((t)&_IOCPARM_MASK)<<16)|('x'<<8)|y)\n"
1559 "#define _IO(x,y) ('x'<<8|y)";
1560 test_text =
1561 "#define XX_IO(x) ('x'<<8|256)";
1564 fix = {
1565 hackname = io_quotes_use;
1566 select = "define[ \t]+[A-Z0-9_]+[ \t]+[A-Z0-9_]+IO[A-Z]*[ \t]*"
1567 "\\( *[^,']";
1568 c_fix = char_macro_use;
1569 c_fix_arg = "IO";
1570 test_text = "#define TIOCFOO BSD43__IOWR(T, 1)\n"
1571 "#define TIOCFOO \\\\\n"
1572 "BSD43__IOWR(T, 1) /* Some are multi-line */";
1577 * Check for missing ';' in struct
1579 fix = {
1580 hackname = ip_missing_semi;
1581 files = netinet/ip.h;
1582 select = "}$";
1583 sed = "/^struct/,/^};/s/}$/};/";
1584 test_text=
1585 "struct mumble {\n"
1586 " union {\n"
1587 " int x;\n"
1588 " }\n"
1589 "}; /* mumbled struct */\n";
1594 * IRIX 6.5.1[89] <internal/sgimacros.h> unconditionally defines
1595 * __restrict as restrict iff __c99. This is wrong for C++, which
1596 * needs many C99 features, but only supports __restrict.
1598 fix = {
1599 hackname = irix___restrict;
1600 files = internal/sgimacros.h;
1601 select = "(#ifdef __c99\n)(#[ \t]*define __restrict restrict)";
1603 mach = "mips-sgi-irix6.5";
1604 c_fix = format;
1605 c_fix_arg = "%1"
1606 "# ifndef __cplusplus\n%2\n# endif";
1608 test_text = "#ifdef __c99\n# define __restrict restrict";
1612 * IRIX 6.5.22 <internal/math_core.h> uses the SGI c99 __generic() intrinsic
1613 * to define the fpclasify, isfinite, isinf, isnan, isnormal and signbit
1614 * functions.
1616 * This was probably introduced around IRIX 6.5.18
1618 fix = {
1619 hackname = irix___generic1;
1620 files = internal/math_core.h;
1621 mach = "mips-sgi-irix6.5";
1622 select = "#define ([a-z]+)\\(x\\) *__generic.*";
1624 c_fix = format;
1625 c_fix_arg = "extern int %1(double);\n"
1626 "extern int %1f(float);\n"
1627 "extern int %1l(long double);\n"
1628 "#define %1(x) (sizeof(x) == sizeof(double) ? _%1(x) \\\n"
1629 " : sizeof(x) == sizeof(float) ? _%1f(x) \\\n"
1630 " : _%1l(x))\n";
1632 test_text =
1633 "#define isnan(x) __generic(x,,, _isnan, _isnanf, _isnanl,,,)(x)\n";
1637 /* Likewise <internal/math_core.h> on IRIX 6.5.19 and later uses the SGI
1638 compiler's __generic intrinsic to define isgreater, isgreaterequal,
1639 isless, islessequal, islessgreater and isunordered functions. */
1640 fix = {
1641 hackname = irix___generic2;
1642 files = internal/math_core.h;
1643 mach = "mips-sgi-irix6.5";
1644 select = "#define ([a-z]+)\\(x,y\\) *__generic.*";
1646 c_fix = format;
1647 c_fix_arg = "#define %1(x,y) \\\n"
1648 " ((sizeof(x)<=4 && sizeof(y)<=4) ? _%1f(x,y) \\\n"
1649 " : (sizeof(x)<=8 && sizeof(y)<=8) ? _%1(x,y) \\\n"
1650 " : _%1l(x,y))\n";
1652 test_text =
1653 "#define isless(x,y) __generic(x,y,, _isless, _islessf, _islessl,,,)(x,y)";
1658 * IRIX 5.2's <sys/asm.h> contains an asm comment with a contraction
1659 * that causes the assembly preprocessor to complain about an
1660 * unterminated character constant.
1662 fix = {
1663 hackname = irix_asm_apostrophe;
1664 files = sys/asm.h;
1666 select = "^[ \t]*#.*[Ww]e're";
1667 c_fix = format;
1668 c_fix_arg = "%1 are";
1669 c_fix_arg = "^([ \t]*#.*[Ww]e)'re";
1670 test_text = "\t# and we're on vacation";
1675 * Non-traditional "const" declaration in Irix's limits.h.
1677 fix = {
1678 hackname = irix_limits_const;
1679 files = fixinc-test-limits.h, limits.h;
1680 select = "^extern const ";
1681 c_fix = format;
1682 c_fix_arg = "extern __const ";
1683 test_text = "extern const char limit; /* test limits */";
1688 * IRIX 6.5.1[78] <sys/socket.h> has a broken definition of socklen_t.
1689 * Various socket function prototypes use different types instead,
1690 * depending on the API in use (BSD, XPG4/5), but the socklen_t
1691 * definition doesn't reflect this (SGI Bug Id 864477, fixed in
1692 * IRIX 6.5.19).
1694 fix = {
1695 hackname = irix_socklen_t;
1696 files = sys/socket.h;
1697 select = "(#define _SOCKLEN_T\n)(typedef u_int32_t socklen_t;)";
1699 mach = "mips-sgi-irix6.5";
1700 c_fix = format;
1701 c_fix_arg = "%1"
1702 "#if _NO_XOPEN4 && _NO_XOPEN5\n"
1703 "typedef int socklen_t;\n"
1704 "#else\n"
1705 "%2\n"
1706 "#endif /* _NO_XOPEN4 && _NO_XOPEN5 */";
1708 test_text = "#define _SOCKLEN_T\ntypedef u_int32_t socklen_t;";
1712 * IRIX 5.x's stdio.h and IRIX 6.5's internal/stdio_core.h declare
1713 * some functions that take a va_list as
1714 * taking char *. However, GCC uses void * for va_list, so
1715 * calling vfprintf with a va_list fails in C++. */
1716 fix = {
1717 hackname = irix_stdio_va_list;
1718 files = stdio.h;
1719 files = internal/stdio_core.h;
1721 select = '/\* va_list \*/ char \*';
1722 c_fix = format;
1723 c_fix_arg = "__gnuc_va_list";
1724 test_text =
1725 "extern int printf( const char *, /* va_list */ char * );";
1730 * IRIX 6.5.19 <internal/wchar_core.h> provides the XPG4 variant of
1731 * wcsftime by default. ISO C99 requires the XPG5 variant instead.
1733 fix = {
1734 hackname = irix_wcsftime;
1735 files = internal/wchar_core.h;
1736 select = "#if _NO_XOPEN5\n(extern size_t[ \t]+wcsftime.*const char \*.*)";
1738 mach = "mips-sgi-irix6.5";
1739 c_fix = format;
1740 c_fix_arg = "#if _NO_XOPEN5 && !defined(__c99)\n%1";
1742 test_text = "#if _NO_XOPEN5\n"
1743 "extern size_t wcsftime(wchar_t *, __SGI_LIBC_NAMESPACE_QUALIFIER size_t, const char *, const struct tm *);";
1747 * Fixing ISC fmod declaration
1749 fix = {
1750 hackname = isc_fmod;
1751 files = math.h;
1752 select = 'fmod\(double\)';
1753 c_fix = format;
1754 c_fix_arg = "fmod(double, double)";
1755 test_text = "extern double fmod(double);";
1760 * On Interactive Unix 2.2, certain traditional Unix definitions
1761 * (notably getc and putc in stdio.h) are omitted if __STDC__ is
1762 * defined, not just if _POSIX_SOURCE is defined. This makes it
1763 * impossible to compile any nontrivial program except with -posix.
1765 fix = {
1766 hackname = isc_omits_with_stdc;
1768 files = "stdio.h";
1769 files = "math.h";
1770 files = "ctype.h";
1771 files = "sys/limits.h";
1772 files = "sys/fcntl.h";
1773 files = "sys/dirent.h";
1775 select = '!defined\(__STDC__\) && !defined\(_POSIX_SOURCE\)';
1776 c_fix = format;
1777 c_fix_arg = '!defined(_POSIX_SOURCE)';
1778 test_text = "#if !defined(__STDC__) && !defined(_POSIX_SOURCE) /* ? ! */"
1779 "\nint foo;\n#endif";
1784 * These files in Sun OS 4.x and ARM/RISCiX and BSD4.3
1785 * use / * * / to concatenate tokens.
1787 fix = {
1788 hackname = kandr_concat;
1789 files = "sparc/asm_linkage.h";
1790 files = "sun3/asm_linkage.h";
1791 files = "sun3x/asm_linkage.h";
1792 files = "sun4/asm_linkage.h";
1793 files = "sun4c/asm_linkage.h";
1794 files = "sun4m/asm_linkage.h";
1795 files = "sun4c/debug/asm_linkage.h";
1796 files = "sun4m/debug/asm_linkage.h";
1797 files = "arm/as_support.h";
1798 files = "arm/mc_type.h";
1799 files = "arm/xcb.h";
1800 files = "dev/chardefmac.h";
1801 files = "dev/ps_irq.h";
1802 files = "dev/screen.h";
1803 files = "dev/scsi.h";
1804 files = "sys/tty.h";
1805 files = "Xm.acorn/XmP.h";
1806 files = bsd43/bsd43_.h;
1807 select = '/\*\*/';
1808 c_fix = format;
1809 c_fix_arg = '##';
1810 test_text = "#define __CONCAT__(a,b) a/**/b";
1815 * Fix libc1 _G_va_list definition, used in declarations of several
1816 * more-or-less standard functions, for example vasprintf.
1818 fix = {
1819 hackname = libc1_G_va_list;
1820 files = _G_config.h;
1821 mach = '*-*-linux*libc1';
1822 select = 'typedef void \* _G_va_list;';
1823 c_fix = format;
1824 c_fix_arg = "typedef __builtin_va_list _G_va_list;";
1825 test_text = 'typedef void * _G_va_list;';
1830 * GNU libc1 string.h does not prototype memcpy and memcmp for gcc
1831 * versions > 1. This fix will open up the declaration for all
1832 * versions of GCC and for g++.
1834 fix = {
1835 hackname = libc1_ifdefd_memx;
1837 /* The string.h result is overwritten by AAB_ultrix_string when doing
1838 "make check" and will fail. Therefore, we add the following kludgery
1839 to insert the test_text into the special testing header. :-} */
1840 files = testing.h;
1841 files = string.h;
1843 c_fix = format;
1844 select = "' is a built-in function for gcc 2\\.x\\. \\*/";
1845 bypass = __cplusplus;
1846 c_fix_arg = "%1";
1847 c_fix_arg =
1848 '/\* `mem...\' is a built-in function for gcc 2\.x\. \*/' "\n"
1849 '#if defined\(__STDC__\) && __GNUC__ < 2' "\n"
1850 "(/\\* .* \\*/\n"
1851 "extern [a-z_]+ mem.*(\n[^#].*)*;)\n"
1852 "#endif";
1854 test_text =
1855 "/* \\`memcpy' is a built-in function for gcc 2.x. */\n"
1856 "#if defined(__STDC__) && __GNUC__ < 2\n"
1857 "/* Copy N bytes of SRC to DEST. */\n"
1858 "extern __ptr_t memcpy __P ((__ptr_t __dest, __const __ptr_t __src,\n"
1859 " size_t __n));\n"
1860 "#endif";
1865 * In limits.h, put #ifndefs around things that are supposed to be defined
1866 * in float.h to avoid redefinition errors if float.h is included first.
1867 * On HP/UX this patch does not work, because on HP/UX limits.h uses
1868 * multi line comments and the inserted #endif winds up inside the
1869 * comment. Fortunately, HP/UX already uses #ifndefs in limits.h; if
1870 * we find a #ifndef FLT_MIN we assume that all the required #ifndefs
1871 * are there, and we do not add them ourselves.
1873 * QNX Software Systems also guards the defines, but doesn't define
1874 * FLT_MIN. Therefore, bypass the fix for *either* guarded FLT_MIN
1875 * or guarded FLT_MAX.
1877 fix = {
1878 hackname = limits_ifndefs;
1879 files = "sys/limits.h";
1880 files = "limits.h";
1881 select = "^[ \t]*#[ \t]*define[ \t]+"
1882 "((FLT|DBL)_(MIN|MAX|DIG))[ \t].*";
1883 bypass = "ifndef[ \t]+FLT_(MIN|MAX)";
1885 c_fix = format;
1886 c_fix_arg = "#ifndef %1\n%0\n#endif";
1887 /* Second arg is select expression */
1888 test_text = " #\tdefine\tDBL_DIG \t 0 /* somthin' */";
1892 /* The /usr/include/sys/ucontext.h on ia64-*linux-gnu systems defines
1893 * an _SC_GR0_OFFSET macro using an idiom that isn't a compile time
1894 * constant on recent versions of g++.
1896 fix = {
1897 hackname = linux_ia64_ucontext;
1898 files = "sys/ucontext.h";
1899 mach = "ia64-*-linux*";
1900 select = '\(\(\(char \*\) &\(\(struct sigcontext \*\) 0\)'
1901 '->sc_gr\[0\]\) - \(char \*\) 0\)';
1902 c_fix = format;
1903 c_fix_arg = "__builtin_offsetof \(struct sigcontext, sc_gr[0]\)";
1904 test_text = "# define _SC_GR0_OFFSET\t\\\\\n"
1905 "\t(((char *) &((struct sigcontext *) 0)->sc_gr[0]) - (char *) 0)\n";
1910 * Apparently some SVR4 systems typedef longlong_t to long ?
1912 #ifdef SVR4
1913 fix = {
1914 hackname = longlong_t;
1915 select = "typedef[ \t]+(unsigned[ \t]+)?long[ \t]+(u_)?longlong_t";
1916 c_fix = format;
1917 c_fix_arg = "typedef %1long long %2longlong_t";
1918 test_text = "typedef long longlong_t\n"
1919 "typedef unsigned long u_longlong_t";
1921 #endif
1924 * Remove header file warning from sys/time.h. Autoconf's
1925 * AC_HEADER_TIME recommends to include both sys/time.h and time.h
1926 * which causes warning on LynxOS. Remove the warning.
1928 fix = {
1929 hackname = lynxos_no_warning_in_sys_time_h;
1930 files = sys/time.h;
1931 select = "#warning[ \t]+Using <time.h> instead of <sys/time.h>";
1932 c_fix = format;
1933 c_fix_arg = "";
1934 test_text = "#warning Using <time.h> instead of <sys/time.h>";
1939 * Add missing declaration for putenv.
1941 fix = {
1942 hackname = lynxos_missing_putenv;
1943 mach = '*-*-lynxos*';
1944 files = stdlib.h;
1945 bypass = 'putenv[ \t]*\\(';
1946 select = "extern char \\*getenv[ \t]*_AP\\(\\(const char \\*\\)\\);";
1947 c_fix = format;
1948 c_fix_arg = "%0\n"
1949 "extern int putenv _AP((char *));";
1950 c_fix_arg = "extern char \\*getenv[ \t]*_AP\\(\\(const char \\*\\)\\);";
1951 test_text = "extern char *getenv _AP((const char *));";
1956 * Fix BSD machine/ansi.h to use __builtin_va_list to define _BSD_VA_LIST_.
1958 * On NetBSD, machine is a symbolic link to an architecture specific
1959 * directory name, so we can't match a specific file name here.
1961 fix = {
1962 hackname = machine_ansi_h_va_list;
1963 select = "define[ \t]+_BSD_VA_LIST_[ \t]";
1964 bypass = '__builtin_va_list';
1966 c_fix = format;
1967 c_fix_arg = "%1__builtin_va_list";
1968 c_fix_arg = "(define[ \t]+_BSD_VA_LIST_[ \t]+).*";
1970 test_text = " # define _BSD_VA_LIST_\tchar**";
1975 * Fix non-ansi machine name defines
1977 fix = {
1978 hackname = machine_name;
1979 c_test = machine_name;
1980 c_fix = machine_name;
1982 test_text = "/* MACH_DIFF: */\n"
1983 "#if defined( i386 ) || defined( sparc ) || defined( vax )"
1984 "\n/* no uniform test, so be careful :-) */";
1989 * Some math.h files define struct exception (it's in the System V
1990 * Interface Definition), which conflicts with the class exception defined
1991 * in the C++ file std/stdexcept.h. We redefine it to __math_exception.
1992 * This is not a great fix, but I haven't been able to think of anything
1993 * better. Note that we have to put the #ifdef/#endif blocks at beginning
1994 * and end of file, because fixproto runs after us and may insert
1995 * additional references to struct exception.
1997 fix = {
1998 hackname = math_exception;
1999 files = math.h;
2000 select = "struct exception";
2002 * This should be bypassed on __cplusplus, but some supposedly C++ C++
2003 * aware headers, such as Solaris 8 and 9, don't wrap their struct
2004 * exception either. So currently we bypass only for glibc, based on a
2005 * comment in the fixed glibc header. Ick.
2007 bypass = 'We have a problem when using C\+\+|for C\+\+, _[a-z0-9A-Z_]+_exception; for C, exception';
2008 c_fix = wrap;
2010 c_fix_arg = "#ifdef __cplusplus\n"
2011 "#define exception __math_exception\n"
2012 "#endif\n";
2014 c_fix_arg = "#ifdef __cplusplus\n"
2015 "#undef exception\n"
2016 "#endif\n";
2018 test_text = "typedef struct exception t_math_exception;";
2023 * This looks pretty broken to me. ``dbl_max_def'' will contain
2024 * "define DBL_MAX " at the start, when what we really want is just
2025 * the value portion. Can't figure out how to write a test case
2026 * for this either :-(
2028 fix = {
2029 hackname = math_huge_val_from_dbl_max;
2030 files = math.h;
2033 * IF HUGE_VAL is defined to be DBL_MAX *and* DBL_MAX is _not_ defined
2034 * in math.h, this fix applies.
2036 select = "define[ \t]+HUGE_VAL[ \t]+DBL_MAX";
2037 bypass = "define[ \t]+DBL_MAX";
2039 shell =
2041 * See if we have a definition for DBL_MAX in float.h.
2042 * If we do, we will replace the one in math.h with that one.
2045 "\tdbl_max_def=`egrep 'define[ \t]+DBL_MAX[ \t]+.*' float.h "
2046 "| sed 's/.*DBL_MAX[ \t]*//' 2>/dev/null`\n\n"
2048 "\tif ( test -n \"${dbl_max_def}\" ) > /dev/null 2>&1\n"
2049 "\tthen sed -e '/define[ \t]*HUGE_VAL[ \t]*DBL_MAX/"
2050 "s@DBL_MAX@'\"$dbl_max_def@\"\n"
2051 "\telse cat\n"
2052 "\tfi";
2054 test_text =
2055 "`echo '#define DBL_MAX\t3.1415e+9 /* really big */' >> float.h`\n"
2056 "#define HUGE_VAL DBL_MAX";
2061 * In any case, put #ifndef .. #endif around #define HUGE_VAL in math.h.
2063 fix = {
2064 hackname = math_huge_val_ifndef;
2065 files = math.h;
2066 files = math/math.h;
2067 select = "define[ \t]+HUGE_VAL";
2069 c_fix = format;
2070 c_fix_arg = "#ifndef HUGE_VAL\n%0\n#endif";
2071 c_fix_arg = "^[ \t]*#[ \t]*define[ \t]+HUGE_VAL[ \t].*";
2073 test_text = "# define\tHUGE_VAL 3.4e+40";
2078 * nested comment
2080 fix = {
2081 hackname = nested_auth_des;
2082 files = rpc/rpc.h;
2083 select = '(/\*.*rpc/auth_des\.h>.*)/\*';
2084 c_fix = format;
2085 c_fix_arg = "%1*/ /*";
2086 test_text = "/*#include <rpc/auth_des.h> /* skip this */";
2091 * Fix nested comments in Motorola's <limits.h> and <sys/limits.h>
2093 fix = {
2094 hackname = nested_motorola;
2095 mach = "m68k-motorola-sysv*";
2096 files = sys/limits.h;
2097 files = limits.h;
2098 select = "max # bytes atomic in write|error value returned by Math lib";
2100 sed = "s@^\\(#undef[ \t][ \t]*PIPE_BUF[ \t]*"
2101 "/\\* max # bytes atomic in write to a\\)$@\\1 */@";
2102 sed = "s@\\(/\\*#define\tHUGE_VAL\t3.[0-9e+]* \\)"
2103 "\\(/\\*error value returned by Math lib\\*/\\)$@\\1*/ \\2@";
2105 test_text =
2106 "#undef PIPE_BUF /* max # bytes atomic in write to a\n"
2107 "\t\t/* PIPE */\n"
2108 "/*#define\tHUGE_VAL\t3.9e+9 /*error value returned by Math lib*/";
2113 * Fixing nested comments in ISC <sys/limits.h>
2115 fix = {
2116 hackname = nested_sys_limits;
2117 files = sys/limits.h;
2118 select = CHILD_MAX;
2119 sed = "/CHILD_MAX/s,/\\* Max, Max,";
2120 sed = "/OPEN_MAX/s,/\\* Max, Max,";
2121 test_text = "/*\n#define CHILD_MAX 20 /* Max, Max, ... */ /*\n"
2122 "#define OPEN_MAX 20 /* Max, Max, ... */\n";
2127 * NetBSD has a semicolon after the ending '}' for some extern "C".
2129 fix = {
2130 hackname = netbsd_extra_semicolon;
2131 mach = *-*-netbsd*;
2132 files = sys/cdefs.h;
2133 select = "#define[ \t]*__END_DECLS[ \t]*};";
2135 c_fix = format;
2136 c_fix_arg = "#define __END_DECLS }";
2138 test_text = "#define __END_DECLS };";
2143 * NeXT 3.2 adds const prefix to some math functions.
2144 * These conflict with the built-in functions.
2146 fix = {
2147 hackname = next_math_prefix;
2148 files = ansi/math.h;
2149 select = "^extern[ \t]+double[ \t]+__const__[ \t]";
2151 c_fix = format;
2152 c_fix_arg = "extern double %1(";
2153 c_fix_arg = "^extern[ \t]+double[ \t]+__const__[ \t]+([a-z]+)\\(";
2155 test_text = "extern\tdouble\t__const__\tmumble();";
2160 * NeXT 3.2 uses the word "template" as a parameter for some
2161 * functions. GCC reports an invalid use of a reserved key word
2162 * with the built-in functions.
2164 fix = {
2165 hackname = next_template;
2166 files = bsd/libc.h;
2167 select = "[ \t]template\\)";
2169 c_fix = format;
2170 c_fix_arg = "(%1)";
2171 c_fix_arg = "\\(([^)]*)[ \t]template\\)";
2172 test_text = "extern mumble( char * template); /* fix */";
2177 * NeXT 3.2 includes the keyword volatile in the abort() and exit()
2178 * function prototypes. That conflicts with the built-in functions.
2180 fix = {
2181 hackname = next_volitile;
2182 files = ansi/stdlib.h;
2183 select = "^extern[ \t]+volatile[ \t]+void[ \t]";
2185 c_fix = format;
2186 c_fix_arg = "extern void %1(";
2187 c_fix_arg = "^extern[ \t]+volatile[ \t]+void[ \t]+(exit|abort)\\(";
2189 test_text = "extern\tvolatile\tvoid\tabort();";
2194 * NeXT 2.0 defines 'int wait(union wait*)', which conflicts with Posix.1.
2195 * Note that version 3 of the NeXT system has wait.h in a different directory,
2196 * so that this code won't do anything. But wait.h in version 3 has a
2197 * conditional, so it doesn't need this fix. So everything is okay.
2199 fix = {
2200 hackname = next_wait_union;
2201 files = sys/wait.h;
2203 select = 'wait\(union wait';
2204 c_fix = format;
2205 c_fix_arg = "wait(void";
2206 test_text = "extern pid_d wait(union wait*);";
2211 * a missing semi-colon at the end of the nodeent structure definition.
2213 fix = {
2214 hackname = nodeent_syntax;
2215 files = netdnet/dnetdb.h;
2216 select = "char[ \t]*\\*na_addr[ \t]*$";
2217 c_fix = format;
2218 c_fix_arg = "%0;";
2219 test_text = "char *na_addr\t";
2224 * obstack.h used casts as lvalues.
2226 * We need to change postincrements of casted pointers (which are
2227 * then dereferenced and assigned into) of the form
2229 * *((TYPE*)PTRVAR)++ = (VALUE)
2231 * into expressions like
2233 * ((*((TYPE*)PTRVAR) = (VALUE)), (PTRVAR += sizeof (TYPE)))
2235 * which is correct for the cases used in obstack.h since PTRVAR is
2236 * of type char * and the value of the expression is not used.
2238 fix = {
2239 hackname = obstack_lvalue_cast;
2240 files = obstack.h;
2241 select = '\*\(\(([^()]*)\*\)(.*)\)\+\+ = \(([^()]*)\)';
2242 c_fix = format;
2243 c_fix_arg = "((*((%1*)%2) = (%3)), (%2 += sizeof (%1)))";
2244 test_text = "*((void **) (h)->next_free)++ = (aptr)";
2249 * sys/lc_core.h on some versions of OSF1/4.x pollutes the namespace by
2250 * defining regex.h related types. This causes libg++ build and usage
2251 * failures. Fixing this correctly requires checking and modifying 3 files.
2253 fix = {
2254 hackname = osf_namespace_a;
2255 files = reg_types.h;
2256 files = sys/lc_core.h;
2257 test = " -r reg_types.h";
2258 test = " -r sys/lc_core.h";
2259 test = " -n \"`grep '} regex_t;' reg_types.h`\"";
2260 test = " -z \"`grep __regex_t regex.h`\"";
2262 c_fix = format;
2263 c_fix_arg = "__%0";
2264 c_fix_arg = "reg(ex|off|match)_t";
2266 test_text = "`touch sys/lc_core.h`"
2267 "typedef struct {\n int stuff, mo_suff;\n} regex_t;\n"
2268 "extern regex_t re;\n"
2269 "extern regoff_t ro;\n"
2270 "extern regmatch_t rm;\n";
2273 fix = {
2274 hackname = osf_namespace_c;
2275 files = regex.h;
2276 test = " -r reg_types.h";
2277 test = " -r sys/lc_core.h";
2278 test = " -n \"`grep '} regex_t;' reg_types.h`\"";
2279 test = " -z \"`grep __regex_t regex.h`\"";
2281 select = "#include <reg_types\.h>.*";
2282 c_fix = format;
2283 c_fix_arg = "%0\n"
2284 "typedef __regex_t\tregex_t;\n"
2285 "typedef __regoff_t\tregoff_t;\n"
2286 "typedef __regmatch_t\tregmatch_t;";
2288 test_text = "#include <reg_types.h>";
2293 * Fix __page_size* declarations in pthread.h AIX 4.1.[34].
2294 * The original ones fail if uninitialized externs are not common.
2295 * This is the default for all ANSI standard C++ compilers.
2297 fix = {
2298 hackname = pthread_page_size;
2299 files = pthread.h;
2300 select = "^int __page_size";
2301 c_fix = format;
2302 c_fix_arg = "extern %0";
2303 test_text = "int __page_size;";
2308 * On DYNIX/ptx, sys/mc_param.h has an embedded asm for the cpuid instruction
2309 * on the P5. This is not used by anything else so we ifdef it out.
2310 * Current GCC doesn't seem to complain about the asm, though.
2312 #ifdef PTX
2313 fix = {
2314 hackname = ptx_sys_mc_param_h;
2315 files = sys/mc_param.h;
2316 sed = "/__asm/,/}/{"
2317 "/__asm/i\\\n"
2318 "#if !defined (__GNUC__) && !defined (__GNUG__)\n"
2319 "/}/a\\\n"
2320 "#endif\n"
2321 "}";
2322 test_text = "__asm\n"
2323 "int _CPUID()\n"
2324 "{\n"
2325 " non-GNU assembly here\n"
2326 "}";
2328 #endif
2332 * Fix return type of fread and fwrite on sysV68
2334 fix = {
2335 hackname = read_ret_type;
2336 files = stdio.h;
2337 select = "extern int\t.*, fread\\(\\), fwrite\\(\\)";
2338 c_fix = format;
2339 c_fix_arg = "extern unsigned int fread(), fwrite();\n%1%2";
2340 c_fix_arg = "(extern int\t.*), fread\\(\\), fwrite\\(\\)(.*)";
2342 test_text = "extern int\tfclose(), fflush(), fread(), fwrite(), foo();";
2347 * Fix casts as lvalues in glibc's <rpc/xdr.h>.
2349 fix = {
2350 hackname = rpc_xdr_lvalue_cast_a;
2351 files = rpc/xdr.h;
2352 select = "#define[ \t]*IXDR_GET_LONG.*\\\\\n.*__extension__.*";
2353 c_fix = format;
2354 c_fix_arg = "#define IXDR_GET_LONG(buf) ((long)IXDR_GET_U_INT32(buf))";
2355 test_text = "#define IXDR_GET_LONG(buf) \\\\\n"
2356 "\t((long)ntohl((u_long)*__extension__((u_int32_t*)(buf))++))";
2360 fix = {
2361 hackname = rpc_xdr_lvalue_cast_b;
2362 files = rpc/xdr.h;
2363 select = "#define[ \t]*IXDR_PUT_LONG.*\\\\\n.*__extension__.*";
2364 c_fix = format;
2365 c_fix_arg = "#define IXDR_PUT_LONG(buf, v) ((long)IXDR_PUT_INT32(buf, (long)(v)))";
2366 test_text = "#define IXDR_PUT_LONG(buf, v) \\\\\n"
2367 "\t(*__extension__((u_int32_t*)(buf))++ = (long)htonl((u_long)(v)))";
2372 * function class(double x) conflicts with C++ keyword on rs/6000
2374 fix = {
2375 hackname = rs6000_double;
2376 files = math.h;
2377 select = '[^a-zA-Z_]class\(';
2379 c_fix = format;
2380 c_fix_arg = "#ifndef __cplusplus\n%0\n#endif";
2381 c_fix_arg = '^.*[^a-zA-Z_]class\(.*';
2383 test_text = "extern int class();";
2388 * Wrong fchmod prototype on RS/6000.
2390 fix = {
2391 hackname = rs6000_fchmod;
2392 files = sys/stat.h;
2393 select = 'fchmod\(char \*';
2394 c_fix = format;
2395 c_fix_arg = "fchmod(int";
2396 test_text = "extern int fchmod(char *, mode_t);";
2401 * parameters conflict with C++ new on rs/6000
2403 fix = {
2404 hackname = rs6000_param;
2405 files = "stdio.h";
2406 files = "unistd.h";
2408 select = 'rename\(const char \*old, const char \*new\)';
2409 c_fix = format;
2410 c_fix_arg = 'rename(const char *_old, const char *_new)';
2412 test_text = 'extern int rename(const char *old, const char *new);';
2417 * On OpenServer and on UnixWare 7, <math.h> uses the native compiler
2418 * __builtin_generic. We fix that usage to use the GCC equivalent.
2419 * It also has a plethora of inline functions that conflict with libstdc++.
2421 fix = {
2422 hackname = sco_math;
2423 files = math.h;
2424 files = ansi/math.h;
2425 files = posix/math.h;
2426 files = xpg4/math.h;
2427 files = xpg4v2/math.h;
2428 files = xpg4plus/math.h;
2429 files = ods_30_compat/math.h;
2430 files = oldstyle/math.h;
2431 select = "inline double abs";
2432 sed = "/#define.*__fp_class(a) \\\\/i\\\n"
2433 "#ifndef __GNUC__\n";
2434 sed =
2435 "/.*__builtin_generic/a\\\n"
2436 "#else\\\n"
2437 "#define __fp_class(a) \\\\\\\n"
2438 " __builtin_choose_expr(__builtin_types_compatible_p(typeof(a),long double),\\\\\\\n"
2439 " __fpclassifyl(a), \\\\\\\n"
2440 " __builtin_choose_expr(__builtin_types_compatible_p(typeof(a), float), \\\\\\\n"
2441 " __fpclassifyf(a),__fpclassify(a)))\\\n"
2442 "#endif";
2444 sed = "/extern \"C\\+\\+\"/N;"
2445 "/inline double abs/i\\\n"
2446 "#ifndef __GNUC__\n";
2447 sed = "/inline long double trunc/N;"
2448 "/inline long double trunc.*}.*extern \"C\\+\\+\"/a\\\n"
2449 "#endif /* ! __GNUC__ */";
2451 test_text =
2452 "#define __fp_class(a) \\\\\n"
2453 " __builtin_generic(a,\"ld:__fplcassifyl;f:__fpclassifyf;:__fpclassify\")\n";
2459 * On SCO OpenServer prior to 5.0.7UP1, <sys/regset.h> and <ieeefp.h>
2460 * have a clash on struct _fpstate and struct fpstate.
2462 fix = {
2463 hackname = sco_regset;
2464 files = sys/regset.h;
2465 mach = "*-*-sco3.2v5*";
2466 select = "(struct[ \t]+.*)fpstate";
2467 c_fix = format;
2468 c_fix_arg = "%1rsfpstate";
2470 test_text =
2471 "union u_fps {\n"
2472 " struct\tfpstate\n"
2473 " {\n"
2474 " int whatever;\n"
2475 " }\n"
2476 "};\n"
2477 "union _u_fps {\n"
2478 " struct _fpstate\n"
2479 " {\n"
2480 " int whatever;\n"
2481 " }\n"
2482 "};\n";
2487 * The static functions lstat() and fchmod() in <sys/stat.h>
2488 * cause G++ grief since they're not wrapped in "if __cplusplus".
2490 * On SCO OpenServer 5.0.0 through (at least) 5.0.5 <sys/stat.h> contains
2491 * tiny static wrappers that aren't C++ safe.
2493 fix = {
2494 hackname = sco_static_func;
2495 files = sys/stat.h;
2496 mach = "i?86-*-sco3.2*";
2497 select = "^static int";
2499 sed = "/^static int/i\\\n"
2500 "#if __cplusplus\\\n"
2501 "extern \"C\" {\\\n"
2502 "#endif /* __cplusplus */";
2504 sed = "/^}$/a\\\n"
2505 "#if __cplusplus\\\n"
2506 " }\\\n"
2507 "#endif /* __cplusplus */";
2509 test_text =
2510 "#ifdef __STDC__\n"
2511 "static int\tstat(const char *__f, struct stat *__p) {\n"
2512 "\treturn __stat32(__f, __p);\n"
2513 "}\n\n# else /* !__STDC__ THIS FAILS ON BSD SYSTEMS */\n"
2515 "static int\tstat(__f, __p)\n"
2516 "\tchar *__f;\n"
2517 "\tstruct stat *__p;\n"
2518 "{\n"
2519 "\treturn __stat32(__f, __p);\n"
2520 "}\n"
2521 "#endif";
2526 * Fix prototype declaration of utime in sys/times.h.
2527 * In 3.2v4.0 the const is missing.
2529 fix = {
2530 hackname = sco_utime;
2531 files = sys/times.h;
2532 mach = "i?86-*-sco3.2v4*";
2534 select = '\(const char \*, struct utimbuf \*\);';
2535 c_fix = format;
2536 c_fix_arg = '(const char *, const struct utimbuf *);';
2538 test_text = "extern int utime(const char *, struct utimbuf *);";
2543 * Sun Solaris 2.5.1, 2.6 defines PTHREAD_{MUTEX|COND}_INITIALIZER
2544 * incorrectly, so we replace them with versions that correspond to
2545 * the definition. We also explicitly name this fix "1" and the next
2546 * fix "2" because this one does not deal with the last field. This
2547 * fix needs to run before the next.
2549 fix = {
2550 hackname = solaris_mutex_init_1;
2551 select = '@\(#\)pthread.h' "[ \t]+1.1[0-9][ \t]+9[567]/[0-9/]+ SMI";
2552 files = pthread.h;
2553 sed = "/define[ \t]*PTHREAD_MUTEX_INI/s/{0, 0,/{{{0}, 0}, {{{0}}},/\n"
2554 "/define[ \t]*PTHREAD_COND_INI/s/{0,/{{{0},0},/";
2555 test_text =
2556 '#ident "@(#)pthread.h 1.16 97/05/05 SMI"'"\n"
2557 "#define PTHREAD_MUTEX_INITIALIZER\t{0, 0, 0}\n"
2558 "#define PTHREAD_COND_INITIALIZER\t{0, 0} /* */\n";
2563 * Sun Solaris defines PTHREAD_MUTEX_INITIALIZER with a trailing
2564 * "0" for the last field of the pthread_mutex_t structure, which is
2565 * of type upad64_t, which itself is typedef'd to int64_t, but with
2566 * __STDC__ defined (e.g. by -ansi) it is a union. So change the
2567 * initializer to "{0}" instead
2569 fix = {
2570 hackname = solaris_mutex_init_2;
2571 select = '@\(#\)pthread.h' "[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
2572 files = pthread.h;
2573 c_fix = format;
2574 c_fix_arg = "#if __STDC__ - 0 == 0 && !defined(_NO_LONGLONG)\n"
2575 "%0\n"
2576 "#else\n"
2577 "%1, {0}}%3\n"
2578 "#endif";
2579 c_fix_arg = "(^#define[ \t]+PTHREAD_(MUTEX|COND)_INITIALIZER[ \t]+\\{.*)"
2580 ",[ \t]*0\\}" "(|[ \t].*)$";
2581 test_text =
2582 '#ident "@(#)pthread.h 1.26 98/04/12 SMI"'"\n"
2583 "#define PTHREAD_MUTEX_INITIALIZER\t{{{0},0}, {{{0}}}, 0}\n"
2584 "#define PTHREAD_COND_INITIALIZER\t{{{0}, 0}, 0}\t/* DEFAULTCV */\n"
2585 "#define PTHREAD_RWLOCK_INITIALIZER\t"
2586 "{0, 0, 0, {0, 0, 0}, {0, 0}, {0, 0}}";
2591 * Solaris 2.5.1 and 2.6 use an outdated prototype for send & recv
2592 * in sys/socket.h. This is corrected in Solaris 7 and up.
2594 fix = {
2595 hackname = solaris_socket;
2596 files = sys/socket.h;
2597 select = '@\(#\)socket.h' "[ \t]+1.[123][0-9][ \t]+9[567]/[0-9/]+ SMI";
2598 c_fix = format;
2599 c_fix_arg = "extern int %1(int, %2void *, int, int);";
2600 c_fix_arg = '^extern int (recv|send)\(int,'
2601 ' (const )*char '
2602 '\*, int, int\);';
2604 test_text = '#ident "@(#)socket.h 1.30 97/01/20 SMI"'"\n"
2605 "extern int recv(int, char *, int, int);\n"
2606 "extern int send(int, const char *, int, int);";
2611 * Solaris 2.8 has what appears to be some gross workaround for
2612 * some old version of their c++ compiler. G++ doesn't want it
2613 * either, but doesn't want to be tied to SunPRO version numbers.
2615 fix = {
2616 hackname = solaris_stdio_tag;
2617 files = stdio_tag.h;
2619 select = '__cplusplus < 54321L';
2620 sed = 's/defined(__cplusplus) && (__cplusplus < 54321L)/0/';
2622 test_text = "#if\tdefined(__cplusplus) && (__cplusplus < 54321L)";
2627 * Sun Solaris 2.5.1 doesn't define 'getpagesize' in <unistd.h>, as is done
2628 * on Solaris 2.6 and up.
2630 fix = {
2631 hackname = solaris_unistd;
2632 files = unistd.h;
2633 select = '@\(#\)unistd.h' "[ \t]+1.3[0-9][ \t]+9[567]/[0-9/]+ SMI";
2634 bypass = "getpagesize";
2635 c_fix = format;
2636 c_fix_arg = "extern int getpagesize();\n%0";
2637 c_fix_arg = '^extern (pid_t|int) getpgid\(.*\);';
2638 test_text = '#ident "@(#)unistd.h 1.33 95/08/28 SMI"'"\n"
2639 "extern pid_t getpgid(pid_t);\n"
2640 "extern int getpgid();";
2645 * <widec.h> until Solaris 2.5.1 defines macros for a couple of <wchar.h>
2646 * functions, breaking their prototypes if that file is included afterwards.
2647 * Include <wchar.h> early to avoid this issue, as is done on Solaris 2.6
2648 * and up.
2650 fix = {
2651 hackname = solaris_widec;
2652 files = widec.h;
2653 mach = '*-*-solaris2.[0-5]';
2654 mach = '*-*-solaris2.[0-5].*';
2655 bypass = "include.*wchar\\.h";
2656 select = "#include <euc.h>";
2657 c_fix = format;
2658 c_fix_arg = "%0\n#include <wchar.h>";
2659 test_text = "#include <euc.h>";
2664 * a missing semi-colon at the end of the statsswtch structure definition.
2666 fix = {
2667 hackname = statsswtch;
2668 files = rpcsvc/rstat.h;
2669 select = "boottime$";
2670 c_fix = format;
2671 c_fix_arg = "boottime;";
2672 test_text = "struct statswtch {\n int boottime\n};";
2677 * Arrange for stdio.h to use stdarg.h to define __gnuc_va_list.
2678 * On 4BSD-derived systems, stdio.h defers to machine/ansi.h; that's
2679 * OK too.
2681 fix = {
2682 hackname = stdio_stdarg_h;
2683 files = stdio.h;
2684 bypass = "include.*(stdarg\.h|machine/ansi\.h)";
2686 c_fix = wrap;
2688 c_fix_arg = "#define __need___va_list\n#include <stdarg.h>\n";
2690 test_text = "";
2695 * Don't use or define the name va_list in stdio.h.
2696 * This is for ANSI and also to interoperate properly with gcc's
2697 * varargs.h. Note _BSD_VA_LIST_ is dealt with elsewhere. The
2698 * presence of __gnuc_va_list, __DJ_va_list, or _G_va_list is taken
2699 * to indicate that the header knows what it's doing -- under SUSv2,
2700 * stdio.h is required to define va_list, and we shouldn't break that.
2701 * On IRIX 6.5, internal/wchar_core.h used to get its definition of
2702 * va_list from stdio.h. Since this doesn't happen any longer, use
2703 * __gnuc_va_list there, too.
2705 fix = {
2706 hackname = stdio_va_list;
2707 files = stdio.h;
2708 files = internal/stdio_core.h;
2709 files = internal/wchar_core.h;
2710 files = com_err.h;
2711 files = cps.h;
2712 files = curses.h;
2713 files = krb5.h;
2714 files = lc_core.h;
2715 files = pfmt.h;
2716 files = wchar.h;
2717 files = curses_colr/curses.h;
2718 bypass = '__gnuc_va_list|_BSD_VA_LIST_|__DJ_va_list|_G_va_list';
2721 * Use __gnuc_va_list in arg types in place of va_list.
2722 * On 386BSD use __gnuc_va_list instead of _VA_LIST_. On Tru64 UNIX V5.1A
2723 * use __gnuc_va_list instead of __VA_LIST__. We're hoping the
2724 * trailing parentheses and semicolon save all other systems from this.
2725 * Define __not_va_list__ (something harmless and unused)
2726 * instead of va_list.
2727 * Don't claim to have defined va_list.
2729 sed = "s@[ \t]va_list\\([ \t)]\\)@ __gnuc_va_list\\1@\n"
2730 "s@(va_list)&@(__gnuc_va_list)\\&@\n"
2731 "s@ _VA_LIST_));@ __gnuc_va_list));@\n"
2732 "s@ __VA_LIST__));@ __gnuc_va_list));@\n"
2733 "s@ va_list@ __not_va_list__@\n"
2734 "s@\\*va_list@*__not_va_list__@\n"
2735 "s@ __va_list)@ __gnuc_va_list)@\n"
2736 "s@typedef[ \t]\\(.*\\)[ \t]va_list[ \t]*;"
2737 "@typedef \\1 __not_va_list__;@\n"
2738 "s@typedef[ \t]*__va_list__@typedef __gnuc_va_list@\n"
2739 "s@GNUC_VA_LIST@GNUC_Va_LIST@\n"
2740 "s@_VA_LIST_DEFINED@_Va_LIST_DEFINED@\n"
2741 "s@_NEED___VA_LIST@_NEED___Va_LIST@\n"
2742 "s@VA_LIST@DUMMY_VA_LIST@\n"
2743 "s@_Va_LIST@_VA_LIST@";
2744 test_text = "extern void mumble( va_list);";
2749 * "!__STDC__" or "__STDC__==0" or "__STDC__!=1" or "__STDC__-0==0"
2750 * is "!defined( __STRICT_ANSI__ )"
2752 fix = {
2753 hackname = strict_ansi_not;
2754 select = "^([ \t]*#[ \t]*if.*)"
2755 "(!__STDC__"
2756 "|__STDC__[ \t]*==[ \t]*0"
2757 "|__STDC__[ \t]*!=[ \t]*1"
2758 "|__STDC__[ \t]*-[ \t]*0[ \t]*==[ \t]*0)";
2759 /* Tru64 UNIX V4.0F/V5.1 <standards.h> supports GCC usage of __STDC__. */
2760 bypass = 'GNU and MIPS C compilers define __STDC__ differently';
2761 /* GNU gmp.h uses "__STDC__ != 1" only if __SCO_VERSION__, which
2762 is not defined by GCC, so it is safe. */
2763 bypass = '__SCO_VERSION__.*__STDC__ != 1';
2764 c_test = stdc_0_in_system_headers;
2766 c_fix = format;
2767 c_fix_arg = "%1 !defined(__STRICT_ANSI__)";
2769 test_text = "#if !__STDC__ \n"
2770 "#if __STDC__ == 0\n"
2771 "#if __STDC__ != 1\n"
2772 "#if __STDC__ - 0 == 0"
2773 "/* not std C */\nint foo;\n"
2774 "\n#end-end-end-end-if :-)";
2778 * "__STDC__-0==0"
2779 * is "!defined( __STRICT_ANSI__ )" on continued #if-s
2781 fix = {
2782 hackname = strict_ansi_not_ctd;
2783 files = math.h, limits.h, stdio.h, signal.h,
2784 stdlib.h, sys/signal.h, time.h;
2786 * Starting at the beginning of a line, skip white space and
2787 * a leading "(" or "&&" or "||". One of those must be found.
2788 * Then, zero, one or more copies of a "defined(_FOO_BAR_) &&"
2789 * expression. If these are nested, then they must accumulate
2790 * because we won't match any closing parentheses. Finally,
2791 * after skipping over all that, we must then match our suspect
2792 * phrase: "__STDC__-0==0" with or without white space.
2794 select = "^([ \t]*" '(\(|&&|\|\|)'
2795 "([ \t(]*!*[ \t]*defined\\([a-zA-Z_0-9]+\\)[ \t]*[|&][|&])*"
2796 "[ \t(]*)"
2797 "(__STDC__[ \t]*(|-[ \t]*0[ \t]*)==[ \t]*0)";
2798 c_test = stdc_0_in_system_headers;
2800 c_fix = format;
2801 c_fix_arg = "%1 !defined(__STRICT_ANSI__)";
2803 test_text = "#if 1 && \\\\\n"
2804 "&& defined(mumbling) |& (__STDC__ - 0 == 0) \\\\\n"
2805 "( __STDC__ == 0 && !defined(_XOPEN_SOURCE) \\\\\n"
2806 "|| __STDC__ - 0 == 0 ) /* not std C */\n"
2807 "int foo;\n#endif";
2812 * "__STDC__!=0" or "__STDC__==1" or "__STDC__-0==1"
2813 * is "defined( __STRICT_ANSI__ )"
2815 fix = {
2816 hackname = strict_ansi_only;
2817 select = "^([ \t]*#[ \t]*if.*)"
2818 "(__STDC__[ \t]*!=[ \t]*0"
2819 "|__STDC__[ \t]*==[ \t]*1"
2820 "|__STDC__[ \t]*-[ \t]*0[ \t]*==[ \t]*1"
2821 "|__STDC__[ \t]*-[ \t]*0[ \t]*!=[ \t]*0)";
2822 c_test = stdc_0_in_system_headers;
2824 c_fix = format;
2825 c_fix_arg = "%1 defined(__STRICT_ANSI__)";
2827 test_text = "#if __STDC__ == 1 /* is std C\n */\nint foo;\n#endif";
2832 * IRIX 4.0.5 <rpc/xdr.h> uses struct __file_s
2833 * in prototype without previous definition.
2835 fix = {
2836 hackname = struct_file;
2837 files = rpc/xdr.h;
2838 select = '^.*xdrstdio_create.*struct __file_s';
2839 c_fix = format;
2840 c_fix_arg = "struct __file_s;\n%0";
2841 test_text = "extern void xdrstdio_create( struct __file_s* );";
2846 * IRIX 4.0.5 <rpc/auth.h> uses struct sockaddr
2847 * in prototype without previous definition.
2849 * Don't fix OpenBSD, which uses struct sockaddr_in prototyping the same
2850 * function, and does define it.
2852 fix = {
2853 hackname = struct_sockaddr;
2854 files = rpc/auth.h;
2855 select = "^.*authdes_create.*struct sockaddr[^_]";
2856 bypass = "<sys/socket\.h>";
2857 bypass = "struct sockaddr;\n";
2858 c_fix = format;
2859 c_fix_arg = "struct sockaddr;\n%0";
2860 test_text = "extern AUTH* authdes_create( struct sockaddr* );";
2865 * Apply fix this to all OSs since this problem seems to effect
2866 * more than just SunOS.
2868 fix = {
2869 hackname = sun_auth_proto;
2870 files = rpc/auth.h;
2871 files = rpc/clnt.h;
2872 files = rpc/svc.h;
2873 files = rpc/xdr.h;
2875 * Select those files containing '(*name)()'.
2877 select = '\(\*[a-z][a-z_]*\)\(\)';
2879 c_fix = format;
2880 c_fix_arg = "#ifdef __cplusplus\n%1(...);%2\n"
2881 "#else\n%1();%2\n#endif";
2882 c_fix_arg = '(.*\(\*[a-z][a-z_]*\))\(\);(.*)';
2884 test_text =
2885 "struct auth_t {\n"
2886 " int (*name)(); /* C++ bad */\n"
2887 "};";
2892 * Fix bogus #ifdef on SunOS 4.1.
2894 fix = {
2895 hackname = sun_bogus_ifdef;
2896 files = "hsfs/hsfs_spec.h";
2897 files = "hsfs/iso_spec.h";
2898 select = '#ifdef(.*\|\|.*)';
2899 c_fix = format;
2900 c_fix_arg = "#if%1";
2902 test_text = "#ifdef __i386__ || __vax__ || __sun4c__";
2907 * Fix the CAT macro in SunOS memvar.h.
2909 fix = {
2910 hackname = sun_catmacro;
2911 files = pixrect/memvar.h;
2912 select = "^#define[ \t]+CAT\\(a,b\\).*";
2913 c_fix = format;
2915 c_fix_arg =
2916 "#ifdef __STDC__\n"
2917 "# define CAT(a,b) a##b\n"
2918 "#else\n%0\n#endif";
2920 test_text =
2921 "#define CAT(a,b)\ta/**/b";
2926 * Fix return type of free and {c,m,re}alloc in <malloc.h> on SunOS 4.1.
2927 * Also fix return type of {m,re}alloc in <malloc.h> on sysV68
2929 fix = {
2930 hackname = sun_malloc;
2931 files = malloc.h;
2933 sed = "s/typedef[ \t]char \\*\tmalloc_t/typedef void \\*\tmalloc_t/g";
2934 sed = "s/int[ \t][ \t]*free/void\tfree/g";
2935 sed = "s/char\\([ \t]*\\*[ \t]*malloc\\)/void\\1/g";
2936 sed = "s/char\\([ \t]*\\*[ \t]*realloc\\)/void\\1/g";
2937 sed = "s/char\\([ \t]*\\*[ \t]*calloc\\)/void\\1/g";
2939 test_text =
2940 "typedef char *\tmalloc_t;\n"
2941 "int \tfree();\n"
2942 "char*\tmalloc();\n"
2943 "char*\tcalloc();\n"
2944 "char*\trealloc();";
2949 * Check for yet more missing ';' in struct (in SunOS 4.0.x)
2951 fix = {
2952 hackname = sun_rusers_semi;
2953 files = rpcsvc/rusers.h;
2954 select = "_cnt$";
2955 sed = "/^struct/,/^};/s/_cnt$/_cnt;/";
2956 test_text = "struct mumble\n int _cnt\n};";
2961 * signal.h on SunOS defines signal using (),
2962 * which causes trouble when compiling with g++ -pedantic.
2964 fix = {
2965 hackname = sun_signal;
2966 files = sys/signal.h;
2967 files = signal.h;
2968 select = "^void\t" '\(\*signal\(\)\)\(\);.*';
2970 c_fix = format;
2971 c_fix_arg =
2972 "#ifdef __cplusplus\n"
2973 "void\t(*signal(...))(...);\n"
2974 "#else\n%0\n#endif";
2976 test_text = "void\t(*signal())();";
2981 * Correct the return type for strlen in strings.h in SunOS 4.
2983 fix = {
2984 hackname = sunos_strlen;
2985 files = strings.h;
2986 select = "int[ \t]*strlen\\(\\);(.*)";
2987 c_fix = format;
2988 c_fix_arg = "__SIZE_TYPE__ strlen();%1";
2989 test_text = " int\tstrlen(); /* string length */";
2994 * Solaris math.h and floatingpoint.h define __P without protection,
2995 * which conflicts with the fixproto definition. The fixproto
2996 * definition and the Solaris definition are used the same way.
2998 fix = {
2999 hackname = svr4__p;
3000 files = math.h;
3001 files = floatingpoint.h;
3002 select = "^#define[ \t]+__P.*";
3003 c_fix = format;
3004 c_fix_arg = "#ifndef __P\n%0\n#endif";
3006 test_text = "#define __P(a) a";
3011 * Disable apparent native compiler optimization cruft in SVR4.2 <string.h>
3012 * that is visible to any ANSI compiler using this include. Simply
3013 * delete the lines that #define some string functions to internal forms.
3015 fix = {
3016 hackname = svr4_disable_opt;
3017 files = string.h;
3018 select = '#define.*__std_hdr_';
3019 sed = '/#define.*__std_hdr_/d';
3020 test_text = "#define strlen __std_hdr_strlen\n";
3025 * Conditionalize some of <sys/endian.h> on __GNUC__ and __GNUG__.
3026 * On some systems (UnixWare 2, UnixWare 7), the file is byteorder.h
3027 * but we still "hijack" it and redirect it to the GNU byteorder.h..
3029 #ifdef SVR5
3030 fix = {
3031 hackname = svr4_endian;
3032 files = sys/endian.h;
3033 #ifdef LATER
3035 * since we emit our own sys/byteorder.h,
3036 * this fix can never be applied to that file.
3038 files = sys/byteorder.h;
3039 #endif
3040 bypass = '__GNUC__';
3042 sed = "/#\tifdef\t__STDC__/i\\\n"
3043 "# if !defined (__GNUC__) && !defined (__GNUG__)\n";
3045 sed = "/#\t\tinclude\t<sys\\/byteorder.h>/s/\t\t/ /";
3047 sed = "/# include\t<sys\\/byteorder.h>/i\\\n"
3048 "# endif /* !defined (__GNUC__) && !defined (__GNUG__) */\n";
3050 #endif /* SVR5 */
3054 * Remove useless extern keyword from struct forward declarations
3055 * in <sys/stream.h> and <sys/strsubr.h>
3057 #ifdef SVR4
3058 fix = {
3059 hackname = svr4_extern_struct;
3060 files = sys/stream.h;
3061 files = sys/strsubr.h;
3062 select = 'extern struct [a-z_]*;';
3063 sed = 's/extern struct \([a-z][a-z_]*\)/struct \1/';
3065 #endif
3068 * Fix declarations of `ftw' and `nftw' in <ftw.h>. On some/most SVR4
3069 * systems the file <ftw.h> contains extern declarations of these
3070 * functions followed by explicitly `static' definitions of these
3071 * functions... and that's not allowed according to ANSI C. (Note
3072 * however that on Solaris, this header file glitch has been pre-fixed by
3073 * Sun. In the Solaris version of <ftw.h> there are no static
3074 * definitions of any function so we don't need to do any of this stuff
3075 * when on Solaris.
3077 #ifdef SVR4
3078 #ifndef SOLARIS
3079 fix = {
3080 hackname = svr4_ftw;
3081 files = ftw.h;
3082 select = '^extern int ftw\(const';
3084 sed = '/^extern int ftw(const/i' "\\\n"
3085 "#if !defined(_STYPES)\\\n"
3086 "static\\\n"
3087 "#else\\\n"
3088 "extern\\\n"
3089 "#endif";
3090 sed = 's/extern \(int ftw(const.*\)$/\1/';
3091 sed = "/^extern int nftw/i\\\n"
3092 "#if defined(_STYPES)\\\n"
3093 "static\\\n"
3094 "#else\\\n"
3095 "extern\\\n"
3096 "#endif";
3097 sed = 's/extern \(int nftw.*\)$/\1/';
3098 sed = "/^extern int ftw(),/c\\\n"
3099 "#if !defined(_STYPES)\\\n"
3100 "static\\\n"
3101 "#else\\\n"
3102 "extern\\\n"
3103 "#endif\\\n"
3104 " int ftw();\\\n"
3105 "#if defined(_STYPES)\\\n"
3106 "static\\\n"
3107 "#else\\\n"
3108 "extern\\\n"
3109 "#endif\\\n"
3110 " int nftw();";
3112 #endif
3113 #endif
3117 * Fix broken decl of getcwd present on some svr4 systems.
3119 fix = {
3120 hackname = svr4_getcwd;
3121 files = stdlib.h;
3122 files = unistd.h;
3123 files = prototypes.h;
3124 select = 'getcwd\(char \*, int\)';
3126 c_fix = format;
3127 c_fix_arg = "getcwd(char *, size_t)";
3129 test_text = "extern char* getcwd(char *, int);";
3134 * Wrap some files on System V r4 and DYNIX/ptx systems with
3135 * #ifdef _KERNEL, presumably to prevent kernel headers from
3136 * leaking into userspace. This may not be necessary at all,
3137 * but it was in the old scripts, so it seems safest to keep it for now.
3139 fix = {
3140 /* Can't name this with _kernel, or the test case will hit the bypass! */
3141 hackname = svr4_krnl;
3142 /* Since I'm rather unsure about the validity of this, limit it
3143 * to the specific systems it was operating on before. It should
3144 * also be bypassed for i?86-*-sysv4.3uw2, by that rule, but I didn't
3145 * see an easy way to do that. Hopefully it will be harmless
3146 * in any case. -- Nathanael */
3147 mach = '*-*-sysv4*';
3148 mach = 'i?86-sequent-ptx*';
3149 files = fs/rfs/rf_cache.h;
3150 files = sys/erec.h;
3151 files = sys/err.h;
3152 files = sys/char.h;
3153 files = sys/getpages.h;
3154 files = sys/map.h;
3155 files = sys/cmn_err.h;
3156 files = sys/kdebugger.h;
3158 /* This bypass will match _KERNEL, __KERNEL, __KERNEL__, etc.
3159 * It will also match SVR4_KERNEL_CHECK, which means that the
3160 * testsuite case will always be bypassed. Which is fine with me. */
3161 bypass = '_KERNEL';
3163 c_fix = wrap;
3164 c_fix_arg = "#ifdef _KERNEL\n";
3165 c_fix_arg = "#endif /* _KERNEL */\n";
3167 /* There's no reasonable test for this given that we don't know exactly
3168 * what problem inspired it in the first place. */
3169 test_text = "";
3174 * Delete any #defines of `__i386' which may be present in <ieeefp.h>. They
3175 * tend to conflict with the compiler's own definition of this symbol. (We
3176 * will use the compiler's definition.)
3177 * Likewise __sparc, for Solaris, and __i860, and a few others
3178 * (guessing it is necessary for all of them).
3180 #ifdef SVR4
3181 fix = {
3182 hackname = svr4_mach_defines;
3183 files = ieeefp.h;
3184 select = "#define[ \t]*__(i386|mips|sparc|m88k|m68k)[ \t]";
3185 sed = "/#define[ \t]*__\\(i386|mips|sparc|m88k|m68k\\)[ \t]/d";
3187 #endif
3191 * Fix declarations of `makedev', `major', and `minor' in <sys/mkdev.h>.
3192 * They are declared as non-static then immediately redeclared as static.
3194 #ifdef SVR5
3195 fix = {
3196 hackname = svr4_mkdev;
3197 files = sys/mkdev.h;
3198 select = '^static';
3200 sed = "/^dev_t makedev(/s/^/static /";
3201 sed = "/^major_t major(/s/^/static /";
3202 sed = "/^minor_t minor(/s/^/static /";
3204 #endif /* SVR5 */
3208 * Fix reference to NC_NPI_RAW in <sys/netcspace.h>.
3209 * Also fix types of array initializers.
3211 #ifdef SVR4
3212 fix = {
3213 hackname = svr4_netcspace;
3214 files = sys/netcspace.h;
3215 select = 'NC_NPI_RAW';
3216 sed = 's/NC_NPI_RAW/NC_TPI_RAW/g';
3217 sed = 's/NC_/(unsigned long) NC_/';
3219 #endif
3222 * Fix reference to NMSZ in <sys/adv.h>.
3224 #ifdef SVR4
3225 fix = {
3226 hackname = svr4_nmsz;
3227 files = sys/adv.h;
3228 select = '\[NMSZ\]';
3229 sed = 's/\[NMSZ\]/\[RFS_NMSZ\]/g';
3231 #endif
3235 * Some SVR4 systems supposedly use these non-ANSI preprocessor directives.
3237 #ifdef SVR4
3238 fix = {
3239 hackname = svr4_preproc_lint_on;
3240 select = '#lint\(on\)';
3241 c_fix = format;
3242 c_fix_arg = 'defined(lint)';
3243 test_text = "#if #lint(on)";
3245 fix = {
3246 hackname = svr4_preproc_lint_off;
3247 select = '#lint\(off\)';
3248 c_fix = format;
3249 c_fix_arg = '!defined(lint)';
3250 test_text = "#if #lint(off)";
3252 fix = {
3253 hackname = svr4_preproc_machine;
3254 select = '#(machine|system|cpu)\(([^)]*)\)';
3255 c_fix = format;
3256 c_fix_arg = 'defined(__%1__)';
3257 test_text = "#if #machine(i386) || #system(vax) || #cpu(sparc)";
3259 #endif
3263 * Fix broken decl of profil present on some svr4 systems.
3265 fix = {
3266 hackname = svr4_profil;
3267 files = stdlib.h;
3268 files = unistd.h;
3270 select =
3271 'profil\(unsigned short \*, unsigned int, unsigned int, unsigned int\)';
3272 /* The fix is wrong on IRIX 5/6 and creates a conflict with another
3273 prototype in <sys/profil.h>. */
3274 bypass = 'Silicon Graphics';
3275 c_fix = format;
3276 c_fix_arg = 'profil(unsigned short *, size_t, int, unsigned int)';
3278 test_text =
3279 'profil(unsigned short *, unsigned int, unsigned int, unsigned int);';
3284 * Convert functions to prototype form, and fix arg names in <sys/stat.h>.
3286 #ifdef SVR4
3287 fix = {
3288 hackname = svr4_proto_form;
3289 files = sys/stat.h;
3290 select = 'const extern';
3292 sed = "/^stat([ \t]*[^c]/ {\nN\nN\n"
3293 "s/(.*)\\n/( /\n"
3294 "s/;\\n/, /\n"
3295 "s/;$/)/\n" "}";
3297 sed = "/^lstat([ \t]*[^c]/ {\nN\nN\n"
3298 "s/(.*)\\n/( /\n"
3299 "s/;\\n/, /\n"
3300 "s/;$/)/\n" "}";
3302 sed = "/^fstat([ \t]*[^i]/ {\nN\nN\n"
3303 "s/(.*)\\n/( /\n"
3304 "s/;\\n/, /\n"
3305 "s/;$/)/\n" "}";
3307 sed = "/^mknod([ \t]*[^c]/{\nN\nN\nN\n"
3308 "s/(.*)\\n/( /\n"
3309 "s/;\\n/, /g\n"
3310 "s/;$/)/\n" "}";
3312 sed = "1,$s/\\([^A-Za-z]\\)path\\([^A-Za-z]\\)/\\1__path\\2/g";
3313 sed = "1,$s/\\([^A-Za-z]\\)buf\\([^A-Za-z]\\)/\\1__buf\\2/g";
3314 sed = "1,$s/\\([^A-Za-z]\\)fd\\([^A-Za-z]\\)/\\1__fd\\2/g";
3315 sed = "1,$s/ret\\([^u]\\)/__ret\\1/g";
3316 sed = "1,$s/\\([^_]\\)mode\\([^_]\\)/\\1__mode\\2/g";
3317 sed = "1,$s/\\([^_r]\\)dev\\([^_]\\)/\\1__dev\\2/g";
3319 #endif
3322 * Add a prototyped declaration of mmap to <sys/mman.h>.
3324 #ifdef SVR4
3325 fix = {
3326 hackname = svr4_proto_mmap;
3327 files = sys/mman.h;
3328 select = '^extern caddr_t mmap();$';
3329 sed = '/^extern caddr_t mmap();$/c' "\\\n"
3330 "#ifdef __STDC__\\\n"
3331 "extern caddr_t mmap (caddr_t, size_t, int, int, int, off_t);\\\n"
3332 "#else /* !defined(__STDC__) */\\\n"
3333 "extern caddr_t mmap ();\\\n"
3334 "#endif /* !defined(__STDC__) */\\\n";
3336 #endif
3339 * Add a #define of _SIGACTION_ into <sys/signal.h>.
3341 #ifdef SVR4
3342 fix = {
3343 hackname = svr4_sigaction;
3344 files = sys/signal.h;
3345 sed = "/^struct sigaction {/i\\\n"
3346 "#define _SIGACTION_";
3347 sed = 's/(void *(\*)())/(void (*)(int))/';
3349 #endif
3353 * Correct types for signal handler constants like SIG_DFL; they might be
3354 * void (*) (), and should be void (*) (int). C++ doesn't like the
3355 * old style.
3357 fix = {
3358 hackname = svr4_sighandler_type;
3359 files = sys/signal.h;
3360 select = 'void *\(\*\)\(\)';
3361 c_fix = format;
3362 c_fix_arg = "void (*)(int)";
3363 test_text = "#define SIG_DFL (void(*)())0\n"
3364 "#define SIG_IGN (void (*)())0\n";
3368 * Put storage class at start of decl, to avoid warning.
3370 #ifdef SVR4
3371 fix = {
3372 hackname = svr4_storage_class;
3373 files = rpc/types.h;
3374 select = 'const extern';
3375 sed = 's/const extern/extern const/g';
3377 #endif
3381 * Some SysV r4 systems, including Sequent's DYNIX/ptx, use the local
3382 * function 'getrnge' in <regexp.h> before they declare it. For these
3383 * systems add a 'static int' declaration of 'getrnge' into <regexp.h>
3384 * early on.
3386 * 'getrnge' traditionally manipulates a file-scope global called 'size',
3387 * so put the declaration right after the declaration of 'size'.
3389 * Don't do this if there is already a `static void getrnge' declaration
3390 * present, since this would cause a redeclaration error. Solaris 2.x has
3391 * such a declaration.
3393 fix = {
3394 hackname = svr4_undeclared_getrnge;
3395 files = regexp.h;
3396 select = "getrnge";
3397 bypass = "static void getrnge";
3398 c_fix = format;
3399 c_fix_arg = "%0\n"
3400 "static int getrnge ();";
3401 c_fix_arg = "^static int[ \t]+size;";
3402 test_text = "static int size;\n"
3403 "/* stuff which calls getrnge() */\n"
3404 "static getrnge()\n"
3405 "{}";
3410 * Like svr4_mach_defines, but with newfangled syntax.
3411 * Source lines are of #define __i386 #machine(i386). Delete them.
3413 #ifdef SVR5
3414 fix = {
3415 hackname = svr5_mach_defines;
3416 files = ieeefp.h;
3417 select = "#define[ \t]*__i386.*\(i386\)";
3418 sed = "/#define[ \t]*__i386.*/d";
3420 #endif /* SVR5 */
3424 * Fix return value of mem{ccpy,chr,cpy,set} and str{len,spn,cspn}
3425 * in string.h on sysV68
3426 * Correct the return type for strlen in string.h on Lynx.
3427 * Correct the argument type for ffs in string.h on Alpha OSF/1 V2.0.
3428 * Add missing const for strdup on OSF/1 V3.0.
3429 * On sysV88 layout is slightly different.
3431 fix = {
3432 hackname = sysv68_string;
3433 files = testing.h;
3434 files = string.h;
3436 sed = "s/extern[ \t]*int[ \t]*strlen();/extern unsigned int strlen();/";
3437 sed = "s/extern[ \t]*int[ \t]*ffs[ \t]*(long);/extern int ffs(int);/";
3438 sed = "s/strdup(char \\*s1);/strdup(const char *s1);/";
3440 sed = "/^extern char$/N";
3441 sed = "s/^extern char\\(\\n\t\\*memccpy(),\\)$/extern void\\1/";
3443 sed = "/^extern int$/N";
3444 sed = "s/^extern int\\(\\n\tstrlen(),\\)/extern size_t\\1/";
3446 sed = "/^\tstrncmp(),$/N";
3447 sed = 's/^\(' "\t" 'strncmp()\),\n\(' "\t" 'strlen(),\)$/'
3448 '\1;' "\\\nextern unsigned int\\\n\\2/";
3450 test_text =
3451 "extern int strlen();\n"
3453 "extern int ffs(long);\n"
3455 "extern char\n"
3456 "\t*memccpy(),\n"
3457 "\tmemcpy();\n"
3459 "extern int\n"
3460 "\tstrcmp(),\n"
3461 "\tstrncmp(),\n"
3462 "\tstrlen(),\n"
3463 "\tstrspn();\n"
3465 "extern int\n"
3466 "\tstrlen(), strspn();";
3471 * Fix return type of calloc, malloc, realloc, bsearch and exit
3473 fix = {
3474 hackname = sysz_stdlib_for_sun;
3475 files = stdlib.h;
3477 select = "char[ \t]*\\*[ \t]*(calloc|malloc|realloc|bsearch)[ \t]*\\(";
3478 c_fix = format;
3479 c_fix_arg = "void *\t%1(";
3481 test_text =
3482 "extern char*\tcalloc(size_t);\n"
3483 "extern char*\tmalloc(size_t);\n"
3484 "extern char*\trealloc(void*,size_t);\n"
3485 "extern char*\tbsearch(void*,size_t,size_t);\n";
3490 * __thread is now a keyword.
3492 fix = {
3493 hackname = thread_keyword;
3494 files = "pthread.h";
3495 files = "bits/sigthread.h";
3496 select = "([* ])__thread([,)])";
3497 c_fix = format;
3498 c_fix_arg = "%1__thr%2";
3500 test_text =
3501 "extern int pthread_create (pthread_t *__restrict __thread,\n"
3502 "extern int pthread_kill (pthread_t __thread, int __signo);\n"
3503 "extern int pthread_cancel (pthread_t __thread);";
3507 * if the #if says _cplusplus, not the double underscore __cplusplus
3508 * that it should be
3510 fix = {
3511 hackname = tinfo_cplusplus;
3512 files = tinfo.h;
3513 select = "[ \t]_cplusplus";
3515 c_fix = format;
3516 c_fix_arg = " __cplusplus";
3517 test_text = "#ifdef _cplusplus\nint bogus;\n#endif";
3522 * function parameter to atexit is missing "void" on VAX Ultrix 4.3.
3524 fix = {
3525 hackname = ultrix_atexit_param;
3526 files = stdlib.h;
3527 select = 'atexit\(.*\(\)';
3529 c_fix = format;
3530 c_fix_arg = "atexit( void (*__func)( void )";
3532 test_text = "int atexit( void (*__func)() );\n";
3537 * parameter to atof not const on DECstation Ultrix V4.0 and NEWS-OS 4.2R.
3539 fix = {
3540 hackname = ultrix_atof_param;
3541 files = math.h;
3542 select = "atof\\([ \t]*char";
3544 c_fix = format;
3545 c_fix_arg = "atof(const char";
3547 test_text = "extern double atof( char *__nptr);\n";
3552 * parameters not const on DECstation Ultrix V4.0 and OSF/1.
3554 fix = {
3555 hackname = ultrix_const;
3556 files = stdio.h;
3557 select = 'perror\( char \*';
3559 c_fix = format;
3560 c_fix_arg = "%1 const %3 *__";
3561 c_fix_arg = "([ \t*](perror|fputs|fwrite|scanf|fscanf)\\(.*)"
3562 "[ \t]+(char|void) \\*__";
3564 test_text =
3565 "extern void perror( char *__s );\n"
3566 "extern int fputs( char *__s, FILE *);\n"
3567 "extern size_t fwrite( void *__ptr, size_t, size_t, FILE *);\n"
3568 "extern int fscanf( FILE *__stream, char *__format, ...);\n"
3569 "extern int scanf( char *__format, ...);\n";
3574 * parameters not const on DECstation Ultrix V4.0 and OSF/1.
3576 fix = {
3577 hackname = ultrix_const2;
3578 files = stdio.h;
3580 select = '\*fopen\( char \*';
3581 c_fix = format;
3582 c_fix_arg = "%1( const char *%3, const char *";
3583 c_fix_arg = "([ \t*](fopen|sscanf|popen|tempnam))\\("
3584 "[ \t]*char[ \t]*\\*([^,]*),"
3585 "[ \t]*char[ \t]*\\*[ \t]*";
3587 test_text =
3588 "extern FILE *fopen( char *__filename, char *__type );\n"
3589 "extern int sscanf( char *__s, char *__format, ...);\n"
3590 "extern FILE *popen(char *, char *);\n"
3591 "extern char *tempnam(char*,char*);\n";
3596 * parameters not const on Ultrix V4.3.
3598 fix = {
3599 hackname = ultrix_const3;
3600 files = stdio.h;
3601 select = 'fdopen\( .*, char \*';
3603 c_fix = format;
3604 c_fix_arg = "%1 const %3 *__";
3605 c_fix_arg = "([ \t*](fdopen)\\(.*)"
3606 "[ \t]+(char|void) \\*__";
3608 test_text =
3609 "extern FILE * fdopen( int __filedes, char *__type );\n";
3614 * Ultrix V4.[35] puts the declaration of uname before the definition
3615 * of struct utsname, so the prototype (added by fixproto) causes havoc.
3617 fix = {
3618 hackname = ultrix_fix_fixproto;
3619 files = sys/utsname.h;
3620 select = ULTRIX;
3622 c_fix = format;
3623 c_fix_arg = "struct utsname;\n%0";
3624 c_fix_arg = "^[ \t]*extern[ \t]*int[ \t]*uname\\(\\);";
3626 test_text =
3627 "/* ULTRIX's uname */\nextern\tint\tuname();";
3632 * Check for bad #ifdef line (in Ultrix 4.1)
3634 fix = {
3635 hackname = ultrix_ifdef;
3636 select = "^#ifdef KERNEL[ \t]+&&";
3637 files = sys/file.h;
3639 c_fix = format;
3640 c_fix_arg = "#if defined(KERNEL) &&";
3642 test_text =
3643 "#ifdef KERNEL\t&& defined( mumbojumbo )\nint oops;\n#endif";
3648 * Add once-only latch to Ultrix V4.3 locale.h.
3650 fix = {
3651 hackname = ultrix_locale;
3652 files = locale.h;
3653 select = "@\\(#\\)locale\\.h.*6\\.1.*\\(ULTRIX\\)";
3654 c_fix = wrap;
3655 test_text =
3656 "@(#)locale.h 6.1 (ULTRIX)\n";
3661 * Strip "|| CC$gfloat" from Ultrix math headers.
3663 fix = {
3664 hackname = ultrix_math_ifdef;
3665 files = sys/limits.h;
3666 files = float.h;
3667 files = math.h;
3668 select = "^(#if.*)\\|\\|[ \t]+CC\\$[a-z]+";
3669 c_fix = format;
3670 c_fix_arg = "%1";
3672 test_text = '#if defined(__GFLOAT) || CC\$gfloat';
3677 * Avoid nested comments on Ultrix 4.3.
3679 fix = {
3680 hackname = ultrix_nested_ioctl;
3681 files = sys/ioctl.h;
3682 select = "^/\\* #define SIOCSCREEN";
3683 sed = "/^\\/\\* #define SIOCSCREEN/s@/\\* screend@*//* screend@";
3684 test_text =
3685 "/* #define SIOCSCREENON _IOWR('i', 49, int)"
3686 "/* screend, net/gw_screen.h */\n";
3690 fix = {
3691 hackname = ultrix_nested_svc;
3692 files = rpc/svc.h;
3693 select = "^ \\*[ \t]*int protocol; */\\*";
3694 sed = "s@^\\( \\*\tint protocol; \\)/\\*@\\1*/ /*@";
3695 test_text =
3696 " *\tint protocol; /* like TCP or UDP\n";
3701 * Add missing prototype for lstat and define for S_ISLNK
3702 * in Ultrix V4.3 sys/stat.h.
3704 fix = {
3705 hackname = ultrix_stat;
3706 files = sys/stat.h;
3707 select = "@\\(#\\)stat\\.h.*6\\.1.*\\(ULTRIX\\)";
3708 sed = "/^#define[ \t]S_IFPORT[ \t]*S_IFIFO$/a\\\n"
3709 "\\\n"
3710 "/* macro to test for symbolic link */\\\n"
3711 "#define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)\\\n"
3712 "\n";
3713 sed = "/^[ \t]*fstat(),$/a\\\n"
3714 "\tlstat(),\n";
3715 test_text =
3716 "@(#)stat.h 6.1 (ULTRIX)\n"
3717 "#define S_IFPORT S_IFIFO\n"
3718 "\tfstat(),\n/* THE INSERTION LINE FAILS ON BSD SYSTEMS */";
3723 * Check for superfluous `static' (in Ultrix 4.2)
3724 * On Ultrix 4.3, includes of other files (r3_cpu.h,r4_cpu.h) is broken.
3726 fix = {
3727 hackname = ultrix_static;
3728 files = machine/cpu.h;
3729 select = '#include "r[34]_cpu';
3730 sed = "s/^static struct tlb_pid_state/struct tlb_pid_state/";
3731 sed = 's/^#include "r3_cpu\.h"$/#include <machine\/r3_cpu\.h>/';
3732 sed = 's/^#include "r4_cpu\.h"$/#include <machine\/r4_cpu\.h>/';
3733 test_text =
3734 "static struct tlb_pid_state {\n"
3735 "#include \"r3_cpu.h\"\n";
3740 * Add missing declarations to Ultrix V4.3 stdlib.h.
3742 fix = {
3743 hackname = ultrix_stdlib;
3744 files = stdlib.h;
3745 select = "@\\(#\\)stdlib\\.h.*6\\.1.*\\(ULTRIX\\)";
3747 sed = "/^char.*getenv( const char .* );.*$/a\\\n"
3748 "int\t\tsetenv( const char *__name, const char *__val, int __ovrwrt );\\\n"
3749 "void\t\tunsetenv( const char *__name );\\\n"
3750 "int\t\tputenv( char *__s );\n";
3752 sed = "/^char.*getenv();.*$/a\\\n"
3753 "int\tsetenv();\\\n"
3754 "void\tunsetenv();\\\n"
3755 "int\tputenv();\n";
3757 test_text =
3758 "@(#)stdlib.h 6.1 (ULTRIX)\n"
3759 "char * getenv( const char *__name );\n"
3760 "char *getenv();\n";
3765 * Add once-only latch to Ultrix V4.3 strings.h.
3767 fix = {
3768 hackname = ultrix_strings;
3769 files = strings.h;
3770 select = "@\\(#\\)strings\\.h.*6\\.1.*\\(ULTRIX\\)";
3771 c_fix = wrap;
3772 test_text =
3773 "@(#)strings.h 6.1 (ULTRIX)\n";
3778 * Add missing declarations to Ultrix V4.3 strings.h.
3780 fix = {
3781 hackname = ultrix_strings2;
3782 files = strings.h;
3783 select = "@\\(#\\)strings\\.h.*6\\.1.*\\(ULTRIX\\)";
3785 sed = "/^.*strncmp( const .* );.*/a\\\n"
3786 "\\\n"
3787 "extern int\\\n"
3788 "\tstrcasecmp( const char *__s1, const char *__s2),\\\n"
3789 "\tstrncasecmp( const char *__s1, const char *__s2, size_t __n );\n";
3791 sed = "/^.*strncmp();.*/a\\\n"
3792 "extern int\\\n"
3793 "\tstrcasecmp(),\\\n"
3794 "\tstrncasecmp();\n";
3796 test_text =
3797 "@(#)strings.h 6.1 (ULTRIX)\n"
3798 "\tstrncmp( const char *__s1, const char *__s2, size_t __n );\n"
3799 "\tstrncmp();\n";
3804 * Add missing declarations to Ultrix V4.3 sys/time.h.
3806 fix = {
3807 hackname = ultrix_sys_time;
3808 files = sys/time.h;
3809 select = "@\\(#\\)time\\.h.*6\\.1.*\\(ULTRIX\\)";
3811 sed = "/^extern.*time_t.*time( time_t .* );.*$/a\\\n"
3812 "\\\n"
3813 "extern int adjtime(struct timeval *, struct timeval *);\\\n"
3814 "extern int getitimer(int, struct itimerval *);\\\n"
3815 "extern int setitimer(int, struct itimerval *, struct itimerval *);\\\n"
3816 "extern int gettimeofday(struct timeval *, struct timezone *);\\\n"
3817 "extern int settimeofday(struct timeval *, struct timezone *);\\\n"
3818 "extern void profil(const void *, size_t, size_t, unsigned int);\\\n"
3819 "extern int stime(const time_t *);\\\n"
3820 "extern int utimes(const char *, const struct timeval[2]);\\\n"
3821 "extern int select(int, fd_set *, fd_set *, fd_set *, struct timeval *);\n";
3823 sed = "/^extern.*double.*difftime();.*$/a\\\n"
3824 "extern\tint adjtime();\\\n"
3825 "extern\tint getitimer();\\\n"
3826 "extern\tint setitimer();\\\n"
3827 "extern\tint gettimeofday();\\\n"
3828 "extern\tint settimeofday();\\\n"
3829 "extern\tvoid profil();\\\n"
3830 "extern\tint stime();\\\n"
3831 "extern\tint utimes();\\\n"
3832 "extern\tint select();\n";
3834 test_text =
3835 "@(#)time.h 6.1 (ULTRIX)\n"
3836 "extern time_t time( time_t *__tloc );\n"
3837 "extern double difftime();\n";
3842 * Add missing declarations to Ultrix V4.3 unistd.h.
3844 fix = {
3845 hackname = ultrix_unistd;
3846 files = unistd.h;
3847 select = "@\\(#\\)unistd\\.h.*6\\.1.*\\(ULTRIX\\)";
3849 sed = "/^[ \t]*getgroups(),.*$/a\\\n"
3850 "\tgetpagesize(),\n";
3852 sed = "/^[ \t]*fork(),.*$/a\\\n"
3853 "\tvfork(),\n";
3855 test_text =
3856 "@(#)unistd.h 6.1 (ULTRIX)\n"
3857 "\tgetgroups(),\n"
3858 "\tfork(),\n";
3863 * Fix multiple defines for NULL. Sometimes, we stumble into \r\n
3864 * terminated lines, so accommodate these. Test both ways.
3865 * Don't bother to reproduce the \r\n termination, as GCC has to
3866 * recognize \n termination anyway.
3868 fix = {
3869 hackname = undefine_null;
3870 select = "^#[ \t]*define[ \t]+NULL[ \t]";
3871 bypass = "#[ \t]*(ifn|un)def[ \t]+NULL($|[ \t\r])";
3873 c_fix = format;
3874 c_fix_arg = "#ifndef NULL\n#define NULL%1\n#endif\n";
3875 c_fix_arg = "^#[ \t]*define[ \t]+NULL([^\r\n]+)[\r]*\n";
3877 test_text = "#define NULL 0UL\r\n"
3878 "#define NULL\t((void*)0)\n";
3882 * On Cray Unicos/Mk some standard headers use the C99 keyword "restrict"
3883 * which must be replaced by __restrict__ for GCC.
3885 fix = {
3886 hackname = unicosmk_restrict;
3887 files = stdio.h;
3888 files = stdlib.h;
3889 files = wchar.h;
3890 mach = "*-*-unicosmk*";
3891 select = "(\\*[ \t]*)restrict([ \t]+)";
3893 c_fix = format;
3894 c_fix_arg = "%1__restrict__%2";
3896 test_text = "void f (char * restrict x);";
3900 * If arpa/inet.h prototypes are incompatible with the ones we just
3901 * installed in <sys/byteorder.h>, just remove the protos.
3902 * Because of this close association, this patch must be applied only
3903 * on those systems where the replacement byteorder header is installed.
3905 fix = {
3906 hackname = uw7_byteorder_fix;
3907 files = arpa/inet.h;
3908 select = "in_port_t";
3909 test = "-f sys/byteorder.h";
3910 #ifndef SVR5
3911 mach = "*-*-sysv4*";
3912 mach = "i?86-*-sysv5*";
3913 mach = "i?86-*-udk*";
3914 mach = "i?86-*-solaris2.[0-4]";
3915 mach = "powerpcle-*-solaris2.[0-4]";
3916 mach = "sparc-*-solaris2.[0-4]";
3917 #endif /* SVR5 */
3919 c_fix = format;
3920 c_fix_arg = "";
3921 c_fix_arg = "^extern.*[ \t](htons|ntohs).*\\(in_port_t\\).*;";
3923 test_text = "extern in_port_t\thtons __P((in_port_t));\n"
3924 "extern in_port_t\tntohs __P((in_port_t));"
3925 "`[ ! -d $DESTDIR/sys ] && mkdir $DESTDIR/sys\n"
3926 "echo '/* DUMMY */' >> sys/byteorder.h`";
3931 * Fix definitions of macros used by va-i960.h in VxWorks header file.
3933 fix = {
3934 hackname = va_i960_macro;
3935 files = arch/i960/archI960.h;
3936 select = "__(vsiz|vali|vpad|alignof__)";
3938 c_fix = format;
3939 c_fix_arg = "__vx%1";
3941 test_text =
3942 "extern int __vsiz vsiz;\n"
3943 "extern int __vali vali;\n"
3944 "extern int __vpad vpad;\n"
3945 "#define __alignof__(x) ...";
3950 * AIX and Interix headers define NULL to be cast to a void pointer,
3951 * which is illegal in ANSI C++.
3953 fix = {
3954 hackname = void_null;
3955 files = curses.h;
3956 files = dbm.h;
3957 files = locale.h;
3958 files = stdio.h;
3959 files = stdlib.h;
3960 files = string.h;
3961 files = time.h;
3962 files = unistd.h;
3963 files = sys/dir.h;
3964 files = sys/param.h;
3965 files = sys/types.h;
3966 /* avoid changing C++ friendly NULL */
3967 bypass = __cplusplus;
3968 select = "^#[ \t]*define[ \t]+NULL[ \t]+\\(\\(void[ \t]*\\*\\)0\\)";
3969 c_fix = format;
3970 c_fix_arg = "#define NULL 0";
3971 test_text = "# define\tNULL \t((void *)0) /* typed NULL */";
3976 * Make VxWorks header which is almost gcc ready fully gcc ready.
3978 fix = {
3979 hackname = vxworks_gcc_problem;
3980 files = types/vxTypesBase.h;
3981 select = "__GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__";
3983 sed = "s/#ifdef __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__/"
3984 "#if 1/";
3986 sed = "/[ \t]size_t/i\\\n"
3987 "#ifndef _GCC_SIZE_T\\\n"
3988 "#define _GCC_SIZE_T\n";
3990 sed = "/[ \t]size_t/a\\\n"
3991 "#endif\n";
3993 sed = "/[ \t]ptrdiff_t/i\\\n"
3994 "#ifndef _GCC_PTRDIFF_T\\\n"
3995 "#define _GCC_PTRDIFF_T\n";
3997 sed = "/[ \t]ptrdiff_t/a\\\n"
3998 "#endif\n";
4000 sed = "/[ \t]wchar_t/i\\\n"
4001 "#ifndef _GCC_WCHAR_T\\\n"
4002 "#define _GCC_WCHAR_T\n";
4004 sed = "/[ \t]wchar_t/a\\\n"
4005 "#endif\n";
4007 test_text =
4008 "#ifdef __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__\n"
4009 "typedef unsigned int size_t;\n"
4010 "typedef long ptrdiff_t;\n"
4011 "typedef unsigned short wchar_t;\n"
4012 "#endif /* __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__ */\n";
4017 * Fix VxWorks <time.h> to not require including <vxTypes.h>.
4019 fix = {
4020 hackname = vxworks_needs_vxtypes;
4021 files = time.h;
4022 select = "uint_t([ \t]+_clocks_per_sec)";
4023 c_fix = format;
4024 c_fix_arg = "unsigned int%1";
4025 test_text = "uint_t\t_clocks_per_sec;";
4030 * Fix VxWorks <sys/stat.h> to not require including <vxWorks.h>.
4032 fix = {
4033 hackname = vxworks_needs_vxworks;
4034 files = sys/stat.h;
4035 test = " -r types/vxTypesOld.h";
4036 test = " -n \"`egrep '#include' $file`\"";
4037 test = " -n \"`egrep ULONG $file`\"";
4038 select = "#[ \t]define[ \t]+__INCstath";
4040 sed = "/#[ \t]define[ \t][ \t]*__INCstath/a\\\n"
4041 "#include <types/vxTypesOld.h>\n";
4043 test_text = "`touch types/vxTypesOld.h`"
4044 "#include </dev/null> /* ULONG */\n"
4045 "# define\t__INCstath <sys/stat.h>";
4050 * Another bad dependency in VxWorks 5.2 <time.h>.
4052 fix = {
4053 hackname = vxworks_time;
4054 files = time.h;
4055 test = " -r vxWorks.h";
4057 select = "#[ \t]*define[ \t]+VOIDFUNCPTR[ \t].*";
4058 c_fix = format;
4060 c_fix_arg =
4061 "#ifndef __gcc_VOIDFUNCPTR_defined\n"
4062 "#ifdef __cplusplus\n"
4063 "typedef void (*__gcc_VOIDFUNCPTR) (...);\n"
4064 "#else\n"
4065 "typedef void (*__gcc_VOIDFUNCPTR) ();\n"
4066 "#endif\n"
4067 "#define __gcc_VOIDFUNCPTR_defined\n"
4068 "#endif\n"
4069 "#define VOIDFUNCPTR __gcc_VOIDFUNCPTR";
4071 test_text = "`touch vxWorks.h`"
4072 "#define VOIDFUNCPTR (void(*)())";
4077 * WindISS math.h headers include bogus extern declarations of
4078 * numerous math functions that conflict with libstdc++-v3.
4080 fix = {
4081 hackname = windiss_math1;
4082 files = math.h;
4083 mach = "*-*-windiss";
4084 sed = "s|inline long double cosl.*|#ifndef __GNUC__|";
4086 test_text = "inline long double cosl(long double);";
4089 fix = {
4090 hackname = windiss_math2;
4091 files = math.h;
4092 mach = "*-*-windiss";
4093 sed = "s|/\\* long double declarations \\*/|"
4094 "#endif /* __GNUC__ */|";
4096 test_text = "/* long double declarations */";
4100 * WindISS headers include "diab/va_list.h" instead of "stdarg.h"
4102 fix = {
4103 select = '(#include.*)diab/va_list.h';
4104 hackname = windiss_valist;
4105 sed = "s|diab/va_list.h|stdarg.h|";
4106 mach = "*-*-windiss";
4108 test_text = "#include <diab/va_list.h>";
4112 * There are several name conflicts with C++ reserved words in X11 header
4113 * files. These are fixed in some versions, so don't do the fixes if
4114 * we find __cplusplus in the file. These were found on the RS/6000.
4116 fix = {
4117 hackname = x11_class;
4118 files = X11/ShellP.h;
4119 bypass = __cplusplus;
4120 select = "^([ \t]*char \\*)class;(.*)";
4121 c_fix = format;
4122 c_fix_arg = "#ifdef __cplusplus\n%1c_class;%2\n"
4123 "#else\n%1class;%2\n#endif";
4124 test_text =
4125 "struct {\n"
4126 " char *class;\n"
4127 "} mumble;\n";
4132 * class in Xm/BaseClassI.h
4134 fix = {
4135 hackname = x11_class_usage;
4136 files = Xm/BaseClassI.h;
4137 bypass = "__cplusplus";
4139 select = " class\\)";
4140 c_fix = format;
4141 c_fix_arg = " c_class)";
4143 test_text = "extern mumble (int class);\n";
4148 * new in Xm/Traversal.h
4150 fix = {
4151 hackname = x11_new;
4152 files = Xm/Traversal.h;
4153 bypass = __cplusplus;
4155 sed = "/Widget\told, new;/i\\\n"
4156 "#ifdef __cplusplus\\\n"
4157 "\tWidget\told, c_new;\\\n"
4158 "#else\n";
4160 sed = "/Widget\told, new;/a\\\n"
4161 "#endif\n";
4163 sed = "s/Widget new,/Widget c_new,/g";
4164 test_text =
4165 "struct wedge {\n"
4166 " Widget\told, new; /* fixinc check FAILS ON BSD */\n"
4167 "};\nextern Wedged( Widget new, Widget old );";
4172 * Incorrect sprintf declaration in X11/Xmu.h
4174 fix = {
4175 hackname = x11_sprintf;
4176 files = X11/Xmu.h;
4177 files = X11/Xmu/Xmu.h;
4178 select = "^extern char \\*\tsprintf\\(\\);$";
4180 c_fix = format;
4181 c_fix_arg = "#ifndef __STDC__\n%0\n#endif /* !defined __STDC__ */";
4183 test_text = "extern char *\tsprintf();";
4186 /*EOF*/