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