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