1 /* -*- buffer-read-only: t -*- vi: set ro:
3 * DO NOT EDIT THIS FILE (fixincl.x)
5 * It has been AutoGen-ed Tuesday March 30, 2010 at 09:51:20 PM MEST
6 * From the definitions inclhack.def
7 * and the template file fixincl
9 /* DO NOT SVN-MERGE THIS FILE, EITHER Tue Mar 30 21:51:20 MEST 2010
11 * You must regenerate it. Use the ./genfixes script.
14 * This is part of the fixincl program used to install modified versions of
15 * certain ANSI-incompatible system header files which are fixed to work
16 * correctly with ANSI C and placed in a directory that GNU C will search.
18 * This file contains 206 fixup descriptions.
20 * See README for more information.
22 * inclhack copyright (c) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
24 * The Free Software Foundation, Inc.
26 * inclhack is free software: you can redistribute it and/or modify it
27 * under the terms of the GNU General Public License as published by the
28 * Free Software Foundation, either version 3 of the License, or
29 * (at your option) any later version.
31 * inclhack is distributed in the hope that it will be useful, but
32 * WITHOUT ANY WARRANTY; without even the implied warranty of
33 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
34 * See the GNU General Public License for more details.
36 * You should have received a copy of the GNU General Public License along
37 * with this program. If not, see <http://www.gnu.org/licenses/>.
40 #define SED_PROGRAM "/usr/bin/sed"
42 static char const sed_cmd_z[] = SED_PROGRAM;
44 /* * * * * * * * * * * * * * * * * * * * * * * * * *
46 * Description of Aab_Aix_Stdio fix
48 tSCC zAab_Aix_StdioName[] =
52 * File name selection pattern
54 tSCC zAab_Aix_StdioList[] =
57 * Machine/OS name selection pattern
59 tSCC* apzAab_Aix_StdioMachs[] = {
64 * content selection pattern - do fix if pattern found
66 tSCC zAab_Aix_StdioSelect0[] =
67 "define fopen fopen64";
69 #define AAB_AIX_STDIO_TEST_CT 1
70 static tTestDesc aAab_Aix_StdioTests[] = {
71 { TT_EGREP, zAab_Aix_StdioSelect0, (regex_t*)NULL }, };
74 * Fix Command Arguments for Aab_Aix_Stdio
76 static const char* apzAab_Aix_StdioPatch[] = {
80 #if defined __GNUG__ && defined _LARGE_FILES && defined __cplusplus\n\
81 #define __need__aix_stdio_h_fix\n\
82 #ifdef __need__aix_stdio_h_fix\n\
89 /* Alias the symbols using asm */\n\
91 extern int fgetpos(FILE *, fpos64_t *) __asm__(\"fgetpos64\");\n\
92 extern FILE *fopen(const char *, const char *) __asm__(\"fopen64\");\n\
93 extern FILE *freopen(const char *, const char *, FILE *) __asm__(\"freopen64\");\n\
94 extern int fseeko(FILE *, off64_t, int) __asm__(\"fseeko64\");\n\
95 extern int fsetpos(FILE *, const fpos64_t *) __asm__(\"fsetpos64\");\n\
96 extern off64_t ftello(FILE *) __asm__(\"ftello64\");\n\
102 /* * * * * * * * * * * * * * * * * * * * * * * * * *
104 * Description of Aab_Darwin7_9_Long_Double_Funcs fix
106 tSCC zAab_Darwin7_9_Long_Double_FuncsName[] =
107 "AAB_darwin7_9_long_double_funcs";
110 * File name selection pattern
112 tSCC zAab_Darwin7_9_Long_Double_FuncsList[] =
113 "architecture/ppc/math.h\0";
115 * Machine/OS name selection pattern
117 tSCC* apzAab_Darwin7_9_Long_Double_FuncsMachs[] = {
122 * content bypass pattern - skip fix if pattern found
124 tSCC zAab_Darwin7_9_Long_Double_FuncsBypass0[] =
127 #define AAB_DARWIN7_9_LONG_DOUBLE_FUNCS_TEST_CT 1
128 static tTestDesc aAab_Darwin7_9_Long_Double_FuncsTests[] = {
129 { TT_NEGREP, zAab_Darwin7_9_Long_Double_FuncsBypass0, (regex_t*)NULL }, };
132 * Fix Command Arguments for Aab_Darwin7_9_Long_Double_Funcs
134 static const char* apzAab_Darwin7_9_Long_Double_FuncsPatch[] = {
135 "/* This file prototypes the long double functions available on Mac OS\n\
138 # undef __APPLE_CC__\n\
139 # define __APPLE_CC__ 1345\n\
140 # include_next <architecture/ppc/math.h>\n\
141 # undef __APPLE_CC__\n\
142 # define __APPLE_CC__ 1\n\
143 # ifndef __LIBMLDBL_COMPAT\n\
144 # ifdef __LONG_DOUBLE_128__\n\
145 # define __LIBMLDBL_COMPAT(sym) __asm(\"_\" #sym \"$LDBL128\")\n\
147 # define __LIBMLDBL_COMPAT(sym)\n\
148 # endif /* __LONG_DOUBLE_128__ */\n\
149 # endif /* __LIBMLDBL_COMPAT */\n\
150 # ifdef __cplusplus\n\
153 extern long double acosl( long double ) __LIBMLDBL_COMPAT(acosl);\n\
154 extern long double asinl( long double ) __LIBMLDBL_COMPAT(asinl);\n\
155 extern long double atanl( long double ) __LIBMLDBL_COMPAT(atanl);\n\
156 extern long double atan2l( long double, long double ) __LIBMLDBL_COMPAT(atan2l);\n\
157 extern long double cosl( long double ) __LIBMLDBL_COMPAT(cosl);\n\
158 extern long double sinl( long double ) __LIBMLDBL_COMPAT(sinl);\n\
159 extern long double tanl( long double ) __LIBMLDBL_COMPAT(tanl);\n\
160 extern long double acoshl( long double ) __LIBMLDBL_COMPAT(acoshl);\n\
161 extern long double asinhl( long double ) __LIBMLDBL_COMPAT(asinhl);\n\
162 extern long double atanhl( long double ) __LIBMLDBL_COMPAT(atanhl);\n\
163 extern long double coshl( long double ) __LIBMLDBL_COMPAT(coshl);\n\
164 extern long double sinhl( long double ) __LIBMLDBL_COMPAT(sinhl);\n\
165 extern long double tanhl( long double ) __LIBMLDBL_COMPAT(tanhl);\n\
166 extern long double expl( long double ) __LIBMLDBL_COMPAT(expl);\n\
167 extern long double exp2l( long double ) __LIBMLDBL_COMPAT(exp2l);\n\
168 extern long double expm1l( long double ) __LIBMLDBL_COMPAT(expm1l);\n\
169 extern long double logl( long double ) __LIBMLDBL_COMPAT(logl);\n\
170 extern long double log10l( long double ) __LIBMLDBL_COMPAT(log10l);\n\
171 extern long double log2l( long double ) __LIBMLDBL_COMPAT(log2l);\n\
172 extern long double log1pl( long double ) __LIBMLDBL_COMPAT(log1pl);\n\
173 extern long double logbl( long double ) __LIBMLDBL_COMPAT(logbl);\n\
174 extern long double modfl( long double, long double * ) __LIBMLDBL_COMPAT(modfl);\n\
175 extern long double ldexpl( long double, int ) __LIBMLDBL_COMPAT(ldexpl);\n\
176 extern long double frexpl( long double, int * ) __LIBMLDBL_COMPAT(frexpl);\n\
177 extern int ilogbl( long double ) __LIBMLDBL_COMPAT(ilogbl);\n\
178 extern long double scalbnl( long double, int ) __LIBMLDBL_COMPAT(scalbnl);\n\
179 extern long double scalblnl( long double, long int ) __LIBMLDBL_COMPAT(scalblnl);\n\
180 extern long double fabsl( long double ) __LIBMLDBL_COMPAT(fabsl);\n\
181 extern long double cbrtl( long double ) __LIBMLDBL_COMPAT(cbrtl);\n\
182 extern long double hypotl( long double, long double ) __LIBMLDBL_COMPAT(hypotl);\n\
183 extern long double powl( long double, long double ) __LIBMLDBL_COMPAT(powl);\n\
184 extern long double sqrtl( long double ) __LIBMLDBL_COMPAT(sqrtl);\n\
185 extern long double erfl( long double ) __LIBMLDBL_COMPAT(erfl);\n\
186 extern long double erfcl( long double ) __LIBMLDBL_COMPAT(erfcl);\n\
187 extern long double lgammal( long double ) __LIBMLDBL_COMPAT(lgammal);\n\
188 extern long double tgammal( long double ) __LIBMLDBL_COMPAT(tgammal);\n\
189 extern long double ceill( long double ) __LIBMLDBL_COMPAT(ceill);\n\
190 extern long double floorl( long double ) __LIBMLDBL_COMPAT(floorl);\n\
191 extern long double nearbyintl( long double ) __LIBMLDBL_COMPAT(nearbyintl);\n\
192 extern long double rintl( long double ) __LIBMLDBL_COMPAT(rintl);\n\
193 extern long int lrintl( long double ) __LIBMLDBL_COMPAT(lrintl);\n\
194 extern long long int llrintl( long double ) __LIBMLDBL_COMPAT(llrintl);\n\
195 extern long double roundl( long double ) __LIBMLDBL_COMPAT(roundl);\n\
196 extern long int lroundl( long double ) __LIBMLDBL_COMPAT(lroundl);\n\
197 extern long long int llroundl( long double ) __LIBMLDBL_COMPAT(llroundl);\n\
198 extern long double truncl( long double ) __LIBMLDBL_COMPAT(truncl);\n\
199 extern long double fmodl( long double, long double) __LIBMLDBL_COMPAT(fmodl);\n\
200 extern long double remainderl( long double, long double ) __LIBMLDBL_COMPAT(remainderl);\n\
201 extern long double remquol( long double, long double, int * ) __LIBMLDBL_COMPAT(remquol);\n\
202 extern long double copysignl( long double, long double ) __LIBMLDBL_COMPAT(copysignl);\n\
203 extern long double nanl( const char * ) __LIBMLDBL_COMPAT(nanl);\n\
204 extern long double nextafterl( long double, long double ) __LIBMLDBL_COMPAT(nextafterl);\n\
205 extern long double nexttowardl( long double, long double ) __LIBMLDBL_COMPAT(nexttowardl);\n\
206 extern long double fdiml( long double, long double ) __LIBMLDBL_COMPAT(fdiml);\n\
207 extern long double fmaxl( long double, long double ) __LIBMLDBL_COMPAT(fmaxl);\n\
208 extern long double fminl( long double, long double ) __LIBMLDBL_COMPAT(fminl);\n\
209 extern long double fmal( long double, long double, long double ) __LIBMLDBL_COMPAT(fmal);\n\
210 # ifdef __cplusplus\n\
213 #endif /* __MATH__ */",
216 /* * * * * * * * * * * * * * * * * * * * * * * * * *
218 * Description of Aab_Darwin7_9_Long_Double_Funcs_2 fix
220 tSCC zAab_Darwin7_9_Long_Double_Funcs_2Name[] =
221 "AAB_darwin7_9_long_double_funcs_2";
224 * File name selection pattern
226 tSCC zAab_Darwin7_9_Long_Double_Funcs_2List[] =
229 * Machine/OS name selection pattern
231 tSCC* apzAab_Darwin7_9_Long_Double_Funcs_2Machs[] = {
236 * content selection pattern - do fix if pattern found
238 tSCC zAab_Darwin7_9_Long_Double_Funcs_2Select0[] =
239 "#include[ \\t]+\\\"";
241 #define AAB_DARWIN7_9_LONG_DOUBLE_FUNCS_2_TEST_CT 1
242 static tTestDesc aAab_Darwin7_9_Long_Double_Funcs_2Tests[] = {
243 { TT_EGREP, zAab_Darwin7_9_Long_Double_Funcs_2Select0, (regex_t*)NULL }, };
246 * Fix Command Arguments for Aab_Darwin7_9_Long_Double_Funcs_2
248 static const char* apzAab_Darwin7_9_Long_Double_Funcs_2Patch[] = {
251 "([ \\t]*#[ \\t]*include[ \\t]+)\"([a-z0-9/]+)\\.h\"",
254 /* * * * * * * * * * * * * * * * * * * * * * * * * *
256 * Description of Aab_Fd_Zero_Asm_Posix_Types_H fix
258 tSCC zAab_Fd_Zero_Asm_Posix_Types_HName[] =
259 "AAB_fd_zero_asm_posix_types_h";
262 * File name selection pattern
264 tSCC zAab_Fd_Zero_Asm_Posix_Types_HList[] =
265 "asm/posix_types.h\0";
267 * Machine/OS name selection pattern
269 tSCC* apzAab_Fd_Zero_Asm_Posix_Types_HMachs[] = {
270 "i[34567]86-*-linux*",
274 * content bypass pattern - skip fix if pattern found
276 tSCC zAab_Fd_Zero_Asm_Posix_Types_HBypass0[] =
278 tSCC zAab_Fd_Zero_Asm_Posix_Types_HBypass1[] =
280 tSCC zAab_Fd_Zero_Asm_Posix_Types_HBypass2[] =
283 #define AAB_FD_ZERO_ASM_POSIX_TYPES_H_TEST_CT 3
284 static tTestDesc aAab_Fd_Zero_Asm_Posix_Types_HTests[] = {
285 { TT_NEGREP, zAab_Fd_Zero_Asm_Posix_Types_HBypass0, (regex_t*)NULL },
286 { TT_NEGREP, zAab_Fd_Zero_Asm_Posix_Types_HBypass1, (regex_t*)NULL },
287 { TT_NEGREP, zAab_Fd_Zero_Asm_Posix_Types_HBypass2, (regex_t*)NULL }, };
290 * Fix Command Arguments for Aab_Fd_Zero_Asm_Posix_Types_H
292 static const char* apzAab_Fd_Zero_Asm_Posix_Types_HPatch[] = {
293 "/* This file fixes a bug in the __FD_ZERO macro\n\
294 for older versions of the Linux kernel. */\n\
295 #ifndef _POSIX_TYPES_H_WRAPPER\n\
296 #include <features.h>\n\
297 #include_next <asm/posix_types.h>\n\n\
298 #if defined(__FD_ZERO) && !defined(__GLIBC__)\n\
300 #define __FD_ZERO(fdsetp) \\\n\
302 int __d0, __d1; \\\n\
303 __asm__ __volatile__(\"cld ; rep ; stosl\" \\\n\
304 : \"=&c\" (__d0), \"=&D\" (__d1) \\\n\
305 : \"a\" (0), \"0\" (__FDSET_LONGS), \\\n\
306 \"1\" ((__kernel_fd_set *) (fdsetp)) :\"memory\"); \\\n\
309 #define _POSIX_TYPES_H_WRAPPER\n\
310 #endif /* _POSIX_TYPES_H_WRAPPER */",
313 /* * * * * * * * * * * * * * * * * * * * * * * * * *
315 * Description of Aab_Fd_Zero_Gnu_Types_H fix
317 tSCC zAab_Fd_Zero_Gnu_Types_HName[] =
318 "AAB_fd_zero_gnu_types_h";
321 * File name selection pattern
323 tSCC zAab_Fd_Zero_Gnu_Types_HList[] =
326 * Machine/OS name selection pattern
328 tSCC* apzAab_Fd_Zero_Gnu_Types_HMachs[] = {
329 "i[34567]86-*-linux*",
331 #define AAB_FD_ZERO_GNU_TYPES_H_TEST_CT 0
332 #define aAab_Fd_Zero_Gnu_Types_HTests (tTestDesc*)NULL
335 * Fix Command Arguments for Aab_Fd_Zero_Gnu_Types_H
337 static const char* apzAab_Fd_Zero_Gnu_Types_HPatch[] = {
338 "/* This file fixes a bug in the __FD_ZERO macro present in glibc 1.x. */\n\
339 #ifndef _TYPES_H_WRAPPER\n\
340 #include <features.h>\n\
341 #include_next <gnu/types.h>\n\n\
342 #if defined(__FD_ZERO) && !defined(__GLIBC__)\n\
344 # define __FD_ZERO(fdsetp) \\\n\
346 int __d0, __d1; \\\n\
347 __asm__ __volatile__(\"cld ; rep ; stosl\" \\\n\
348 : \"=&c\" (__d0), \"=&D\" (__d1) \\\n\
349 : \"a\" (0), \"0\" (__FDSET_LONGS), \\\n\
350 \"1\" ((__fd_set *) (fdsetp)) :\"memory\"); \\\n\
353 #define _TYPES_H_WRAPPER\n\
354 #endif /* _TYPES_H_WRAPPER */",
357 /* * * * * * * * * * * * * * * * * * * * * * * * * *
359 * Description of Aab_Fd_Zero_Selectbits_H fix
361 tSCC zAab_Fd_Zero_Selectbits_HName[] =
362 "AAB_fd_zero_selectbits_h";
365 * File name selection pattern
367 tSCC zAab_Fd_Zero_Selectbits_HList[] =
370 * Machine/OS name selection pattern
372 tSCC* apzAab_Fd_Zero_Selectbits_HMachs[] = {
373 "i[34567]86-*-linux*",
375 #define AAB_FD_ZERO_SELECTBITS_H_TEST_CT 0
376 #define aAab_Fd_Zero_Selectbits_HTests (tTestDesc*)NULL
379 * Fix Command Arguments for Aab_Fd_Zero_Selectbits_H
381 static const char* apzAab_Fd_Zero_Selectbits_HPatch[] = {
382 "/* This file fixes a bug in the __FD_ZERO macro present in glibc 2.0.x. */\n\
383 #ifndef _SELECTBITS_H_WRAPPER\n\
384 #include <features.h>\n\
385 #include_next <selectbits.h>\n\n\
386 #if defined(__FD_ZERO) && defined(__GLIBC__) \\\\\n\
387 && defined(__GLIBC_MINOR__) && __GLIBC__ == 2 \\\\\n\
388 && __GLIBC_MINOR__ == 0\n\
390 #define __FD_ZERO(fdsetp) \\\\\n\
392 int __d0, __d1; \\\\\n\
393 __asm__ __volatile__ (\"cld; rep; stosl\" \\\\\n\
394 : \"=&c\" (__d0), \"=&D\" (__d1) \\\\\n\
395 : \"a\" (0), \"0\" (sizeof (__fd_set) \\\\\n\
396 / sizeof (__fd_mask)), \\\\\n\
397 \"1\" ((__fd_mask *) (fdsetp)) \\\\\n\
398 : \"memory\"); \\\\\n\
401 #define _SELECTBITS_H_WRAPPER\n\
402 #endif /* _SELECTBITS_H_WRAPPER */",
405 /* * * * * * * * * * * * * * * * * * * * * * * * * *
407 * Description of Aab_Solaris_Sys_Varargs_H fix
409 tSCC zAab_Solaris_Sys_Varargs_HName[] =
410 "AAB_solaris_sys_varargs_h";
413 * File name selection pattern
415 tSCC zAab_Solaris_Sys_Varargs_HList[] =
418 * Machine/OS name selection pattern
420 tSCC* apzAab_Solaris_Sys_Varargs_HMachs[] = {
423 #define AAB_SOLARIS_SYS_VARARGS_H_TEST_CT 0
424 #define aAab_Solaris_Sys_Varargs_HTests (tTestDesc*)NULL
427 * Fix Command Arguments for Aab_Solaris_Sys_Varargs_H
429 static const char* apzAab_Solaris_Sys_Varargs_HPatch[] = {
431 #include <stdarg.h>\n\
433 #include <varargs.h>\n\
437 /* * * * * * * * * * * * * * * * * * * * * * * * * *
439 * Description of Aab_Sun_Memcpy fix
441 tSCC zAab_Sun_MemcpyName[] =
445 * File name selection pattern
447 tSCC zAab_Sun_MemcpyList[] =
450 * Machine/OS name selection pattern
452 #define apzAab_Sun_MemcpyMachs (const char**)NULL
455 * content selection pattern - do fix if pattern found
457 tSCC zAab_Sun_MemcpySelect0[] =
458 "/\\*\t@\\(#\\)(head/memory.h\t50.1\t |memory\\.h 1\\.[2-4] 8./../.. SMI; from S5R2 1\\.2\t)\\*/";
460 #define AAB_SUN_MEMCPY_TEST_CT 1
461 static tTestDesc aAab_Sun_MemcpyTests[] = {
462 { TT_EGREP, zAab_Sun_MemcpySelect0, (regex_t*)NULL }, };
465 * Fix Command Arguments for Aab_Sun_Memcpy
467 static const char* apzAab_Sun_MemcpyPatch[] = {
468 "/* This file was generated by fixincludes */\n\
469 #ifndef __memory_h__\n\
470 #define __memory_h__\n\n\
472 extern void *memccpy();\n\
473 extern void *memchr();\n\
474 extern void *memcpy();\n\
475 extern void *memset();\n\
477 extern char *memccpy();\n\
478 extern char *memchr();\n\
479 extern char *memcpy();\n\
480 extern char *memset();\n\
481 #endif /* __STDC__ */\n\n\
482 extern int memcmp();\n\n\
483 #endif /* __memory_h__ */",
486 /* * * * * * * * * * * * * * * * * * * * * * * * * *
488 * Description of Aix_Complex fix
490 tSCC zAix_ComplexName[] =
494 * File name selection pattern
496 tSCC zAix_ComplexList[] =
499 * Machine/OS name selection pattern
501 tSCC* apzAix_ComplexMachs[] = {
506 * content selection pattern - do fix if pattern found
508 tSCC zAix_ComplexSelect0[] =
509 "#define[ \t]_Complex_I[ \t]__I";
511 #define AIX_COMPLEX_TEST_CT 1
512 static tTestDesc aAix_ComplexTests[] = {
513 { TT_EGREP, zAix_ComplexSelect0, (regex_t*)NULL }, };
516 * Fix Command Arguments for Aix_Complex
518 static const char* apzAix_ComplexPatch[] = {
520 "#define _Complex_I (__extension__ 1.0iF)",
523 /* * * * * * * * * * * * * * * * * * * * * * * * * *
525 * Description of Aix_Pthread fix
527 tSCC zAix_PthreadName[] =
531 * File name selection pattern
533 tSCC zAix_PthreadList[] =
536 * Machine/OS name selection pattern
538 #define apzAix_PthreadMachs (const char**)NULL
541 * content selection pattern - do fix if pattern found
543 tSCC zAix_PthreadSelect0[] =
544 "(#define [A-Za-z_0-9]+)(\\\\\n\
548 #define AIX_PTHREAD_TEST_CT 1
549 static tTestDesc aAix_PthreadTests[] = {
550 { TT_EGREP, zAix_PthreadSelect0, (regex_t*)NULL }, };
553 * Fix Command Arguments for Aix_Pthread
555 static const char* apzAix_PthreadPatch[] = {
560 /* * * * * * * * * * * * * * * * * * * * * * * * * *
562 * Description of Aix_Stdint_1 fix
564 tSCC zAix_Stdint_1Name[] =
568 * File name selection pattern
570 tSCC zAix_Stdint_1List[] =
571 "stdint-aix.h\0stdint.h\0";
573 * Machine/OS name selection pattern
575 tSCC* apzAix_Stdint_1Machs[] = {
580 * content selection pattern - do fix if pattern found
582 tSCC zAix_Stdint_1Select0[] =
583 "#define[ \t]UINT8_MAX[ \t]\\(255U\\)\n\
584 #define[ \t]UINT16_MAX[ \t]\\(65535U\\)";
586 #define AIX_STDINT_1_TEST_CT 1
587 static tTestDesc aAix_Stdint_1Tests[] = {
588 { TT_EGREP, zAix_Stdint_1Select0, (regex_t*)NULL }, };
591 * Fix Command Arguments for Aix_Stdint_1
593 static const char* apzAix_Stdint_1Patch[] = {
595 "#define UINT8_MAX\t(255)\n\
596 #define UINT16_MAX\t(65535)",
599 /* * * * * * * * * * * * * * * * * * * * * * * * * *
601 * Description of Aix_Stdint_2 fix
603 tSCC zAix_Stdint_2Name[] =
607 * File name selection pattern
609 tSCC zAix_Stdint_2List[] =
610 "stdint-aix.h\0stdint.h\0";
612 * Machine/OS name selection pattern
614 tSCC* apzAix_Stdint_2Machs[] = {
619 * content selection pattern - do fix if pattern found
621 tSCC zAix_Stdint_2Select0[] =
622 "#define[ \t]INTPTR_MIN[ \t]INT64_MIN\n\
623 #define[ \t]INTPTR_MAX[ \t]INT64_MAX\n\
624 #define[ \t]UINTPTR_MAX[ \t]UINT64_MAX\n\
626 #define[ \t]INTPTR_MIN[ \t]INT32_MIN\n\
627 #define[ \t]INTPTR_MAX[ \t]INT32_MAX\n\
628 #define[ \t]UINTPTR_MAX[ \t]UINT32_MAX";
630 #define AIX_STDINT_2_TEST_CT 1
631 static tTestDesc aAix_Stdint_2Tests[] = {
632 { TT_EGREP, zAix_Stdint_2Select0, (regex_t*)NULL }, };
635 * Fix Command Arguments for Aix_Stdint_2
637 static const char* apzAix_Stdint_2Patch[] = {
639 "#define INTPTR_MIN\t(-INTPTR_MAX-1)\n\
640 #define INTPTR_MAX\t9223372036854775807L\n\
641 #define UINTPTR_MAX\t18446744073709551615UL\n\
643 #define INTPTR_MIN\t(-INTPTR_MAX-1)\n\
644 #define INTPTR_MAX\t2147483647L\n\
645 #define UINTPTR_MAX\t4294967295UL",
648 /* * * * * * * * * * * * * * * * * * * * * * * * * *
650 * Description of Aix_Stdint_3 fix
652 tSCC zAix_Stdint_3Name[] =
656 * File name selection pattern
658 tSCC zAix_Stdint_3List[] =
659 "stdint-aix.h\0stdint.h\0";
661 * Machine/OS name selection pattern
663 tSCC* apzAix_Stdint_3Machs[] = {
668 * content selection pattern - do fix if pattern found
670 tSCC zAix_Stdint_3Select0[] =
671 "#define[ \t]PTRDIFF_MIN[ \t]INT64_MIN\n\
672 #define[ \t]PTRDIFF_MAX[ \t]INT64_MAX\n\
674 #define[ \t]PTRDIFF_MIN[ \t]*INT32_MIN\n\
675 #define[ \t]PTRDIFF_MAX[ \t]*INT32_MAX";
677 #define AIX_STDINT_3_TEST_CT 1
678 static tTestDesc aAix_Stdint_3Tests[] = {
679 { TT_EGREP, zAix_Stdint_3Select0, (regex_t*)NULL }, };
682 * Fix Command Arguments for Aix_Stdint_3
684 static const char* apzAix_Stdint_3Patch[] = {
686 "#define PTRDIFF_MIN\t(-9223372036854775807L - 1)\n\
687 #define PTRDIFF_MAX\t9223372036854775807L\n\
689 #define PTRDIFF_MIN\t(-2147483647L - 1)\n\
690 #define PTRDIFF_MAX\t2147483647L",
693 /* * * * * * * * * * * * * * * * * * * * * * * * * *
695 * Description of Aix_Stdint_4 fix
697 tSCC zAix_Stdint_4Name[] =
701 * File name selection pattern
703 tSCC zAix_Stdint_4List[] =
704 "stdint-aix.h\0stdint.h\0";
706 * Machine/OS name selection pattern
708 tSCC* apzAix_Stdint_4Machs[] = {
713 * content selection pattern - do fix if pattern found
715 tSCC zAix_Stdint_4Select0[] =
716 "#define[ \t]SIZE_MAX[ \t]UINT64_MAX\n\
718 #define[ \t]SIZE_MAX[ \t]*UINT32_MAX";
720 #define AIX_STDINT_4_TEST_CT 1
721 static tTestDesc aAix_Stdint_4Tests[] = {
722 { TT_EGREP, zAix_Stdint_4Select0, (regex_t*)NULL }, };
725 * Fix Command Arguments for Aix_Stdint_4
727 static const char* apzAix_Stdint_4Patch[] = {
729 "#define SIZE_MAX\t18446744073709551615UL\n\
731 #define SIZE_MAX\t4294967295UL",
734 /* * * * * * * * * * * * * * * * * * * * * * * * * *
736 * Description of Aix_Stdint_5 fix
738 tSCC zAix_Stdint_5Name[] =
742 * File name selection pattern
744 tSCC zAix_Stdint_5List[] =
745 "stdint-aix.h\0stdint.h\0";
747 * Machine/OS name selection pattern
749 tSCC* apzAix_Stdint_5Machs[] = {
754 * content selection pattern - do fix if pattern found
756 tSCC zAix_Stdint_5Select0[] =
757 "#define[ \t]UINT8_C\\(c\\)[ \t]__CONCAT__\\(c,U\\)\n\
758 #define[ \t]UINT16_C\\(c\\)[ \t]__CONCAT__\\(c,U\\)";
760 #define AIX_STDINT_5_TEST_CT 1
761 static tTestDesc aAix_Stdint_5Tests[] = {
762 { TT_EGREP, zAix_Stdint_5Select0, (regex_t*)NULL }, };
765 * Fix Command Arguments for Aix_Stdint_5
767 static const char* apzAix_Stdint_5Patch[] = {
769 "#define UINT8_C(c)\tc\n\
770 #define UINT16_C(c)\tc",
773 /* * * * * * * * * * * * * * * * * * * * * * * * * *
775 * Description of Aix_Sysmachine fix
777 tSCC zAix_SysmachineName[] =
781 * File name selection pattern
783 tSCC zAix_SysmachineList[] =
786 * Machine/OS name selection pattern
788 #define apzAix_SysmachineMachs (const char**)NULL
791 * content selection pattern - do fix if pattern found
793 tSCC zAix_SysmachineSelect0[] =
796 #define AIX_SYSMACHINE_TEST_CT 1
797 static tTestDesc aAix_SysmachineTests[] = {
798 { TT_EGREP, zAix_SysmachineSelect0, (regex_t*)NULL }, };
801 * Fix Command Arguments for Aix_Sysmachine
803 static const char* apzAix_SysmachinePatch[] = {
808 /* * * * * * * * * * * * * * * * * * * * * * * * * *
810 * Description of Aix_Syswait_2 fix
812 tSCC zAix_Syswait_2Name[] =
816 * File name selection pattern
818 tSCC zAix_Syswait_2List[] =
821 * Machine/OS name selection pattern
823 #define apzAix_Syswait_2Machs (const char**)NULL
826 * content selection pattern - do fix if pattern found
828 tSCC zAix_Syswait_2Select0[] =
829 "\\? (\\(\\(\\(\\(unsigned[^)]*\\)[^)]*\\) >> [^)]*\\) \\& 0xff\\) : -1)";
831 #define AIX_SYSWAIT_2_TEST_CT 1
832 static tTestDesc aAix_Syswait_2Tests[] = {
833 { TT_EGREP, zAix_Syswait_2Select0, (regex_t*)NULL }, };
836 * Fix Command Arguments for Aix_Syswait_2
838 static const char* apzAix_Syswait_2Patch[] = {
843 /* * * * * * * * * * * * * * * * * * * * * * * * * *
845 * Description of Aix_Volatile fix
847 tSCC zAix_VolatileName[] =
851 * File name selection pattern
853 tSCC zAix_VolatileList[] =
856 * Machine/OS name selection pattern
858 #define apzAix_VolatileMachs (const char**)NULL
861 * content selection pattern - do fix if pattern found
863 tSCC zAix_VolatileSelect0[] =
864 "typedef volatile int sig_atomic_t";
866 #define AIX_VOLATILE_TEST_CT 1
867 static tTestDesc aAix_VolatileTests[] = {
868 { TT_EGREP, zAix_VolatileSelect0, (regex_t*)NULL }, };
871 * Fix Command Arguments for Aix_Volatile
873 static const char* apzAix_VolatilePatch[] = {
875 "typedef int sig_atomic_t",
878 /* * * * * * * * * * * * * * * * * * * * * * * * * *
880 * Description of Alpha___Assert fix
882 tSCC zAlpha___AssertName[] =
886 * File name selection pattern
888 tSCC zAlpha___AssertList[] =
891 * Machine/OS name selection pattern
893 #define apzAlpha___AssertMachs (const char**)NULL
896 * content selection pattern - do fix if pattern found
898 tSCC zAlpha___AssertSelect0[] =
899 "__assert\\(char \\*, char \\*, int\\)";
901 #define ALPHA___ASSERT_TEST_CT 1
902 static tTestDesc aAlpha___AssertTests[] = {
903 { TT_EGREP, zAlpha___AssertSelect0, (regex_t*)NULL }, };
906 * Fix Command Arguments for Alpha___Assert
908 static const char* apzAlpha___AssertPatch[] = {
910 "__assert(const char *, const char *, int)",
913 /* * * * * * * * * * * * * * * * * * * * * * * * * *
915 * Description of Alpha___Extern_Prefix fix
917 tSCC zAlpha___Extern_PrefixName[] =
918 "alpha___extern_prefix";
921 * File name selection pattern
923 #define zAlpha___Extern_PrefixList (char*)NULL
925 * Machine/OS name selection pattern
927 tSCC* apzAlpha___Extern_PrefixMachs[] = {
932 * content selection pattern - do fix if pattern found
934 tSCC zAlpha___Extern_PrefixSelect0[] =
935 "(.*)(defined\\(__DECC\\)|def[ \t]*__DECC)[ \t]*\n\
936 (#[ \t]*pragma[ \t]*extern_prefix.*)";
938 #define ALPHA___EXTERN_PREFIX_TEST_CT 1
939 static tTestDesc aAlpha___Extern_PrefixTests[] = {
940 { TT_EGREP, zAlpha___Extern_PrefixSelect0, (regex_t*)NULL }, };
943 * Fix Command Arguments for Alpha___Extern_Prefix
945 static const char* apzAlpha___Extern_PrefixPatch[] = {
947 "%1 (defined(__DECC) || defined(__PRAGMA_EXTERN_PREFIX))\n\
951 /* * * * * * * * * * * * * * * * * * * * * * * * * *
953 * Description of Alpha___Extern_Prefix_Standards fix
955 tSCC zAlpha___Extern_Prefix_StandardsName[] =
956 "alpha___extern_prefix_standards";
959 * File name selection pattern
961 tSCC zAlpha___Extern_Prefix_StandardsList[] =
964 * Machine/OS name selection pattern
966 tSCC* apzAlpha___Extern_Prefix_StandardsMachs[] = {
971 * content selection pattern - do fix if pattern found
973 tSCC zAlpha___Extern_Prefix_StandardsSelect0[] =
974 ".*!defined\\(_LIBC_POLLUTION_H_\\) && !defined\\(__DECC\\)";
976 #define ALPHA___EXTERN_PREFIX_STANDARDS_TEST_CT 1
977 static tTestDesc aAlpha___Extern_Prefix_StandardsTests[] = {
978 { TT_EGREP, zAlpha___Extern_Prefix_StandardsSelect0, (regex_t*)NULL }, };
981 * Fix Command Arguments for Alpha___Extern_Prefix_Standards
983 static const char* apzAlpha___Extern_Prefix_StandardsPatch[] = {
985 "%0 && !defined(__PRAGMA_EXTERN_PREFIX)",
988 /* * * * * * * * * * * * * * * * * * * * * * * * * *
990 * Description of Alpha___Extern_Prefix_Sys_Stat fix
992 tSCC zAlpha___Extern_Prefix_Sys_StatName[] =
993 "alpha___extern_prefix_sys_stat";
996 * File name selection pattern
998 tSCC zAlpha___Extern_Prefix_Sys_StatList[] =
999 "sys/stat.h\0sys/mount.h\0";
1001 * Machine/OS name selection pattern
1003 tSCC* apzAlpha___Extern_Prefix_Sys_StatMachs[] = {
1005 (const char*)NULL };
1008 * content selection pattern - do fix if pattern found
1010 tSCC zAlpha___Extern_Prefix_Sys_StatSelect0[] =
1011 "#[ \t]*if[ \t]*defined\\(__DECC\\)";
1013 #define ALPHA___EXTERN_PREFIX_SYS_STAT_TEST_CT 1
1014 static tTestDesc aAlpha___Extern_Prefix_Sys_StatTests[] = {
1015 { TT_EGREP, zAlpha___Extern_Prefix_Sys_StatSelect0, (regex_t*)NULL }, };
1018 * Fix Command Arguments for Alpha___Extern_Prefix_Sys_Stat
1020 static const char* apzAlpha___Extern_Prefix_Sys_StatPatch[] = {
1022 "%0 || defined(__PRAGMA_EXTERN_PREFIX)",
1025 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1027 * Description of Alpha_Assert fix
1029 tSCC zAlpha_AssertName[] =
1033 * File name selection pattern
1035 tSCC zAlpha_AssertList[] =
1038 * Machine/OS name selection pattern
1040 #define apzAlpha_AssertMachs (const char**)NULL
1043 * content selection pattern - do fix if pattern found
1045 tSCC zAlpha_AssertSelect0[] =
1046 "(#[ \t]*define assert\\(EX\\).*)\\(\\(int\\) \\(EX\\)\\)";
1048 #define ALPHA_ASSERT_TEST_CT 1
1049 static tTestDesc aAlpha_AssertTests[] = {
1050 { TT_EGREP, zAlpha_AssertSelect0, (regex_t*)NULL }, };
1053 * Fix Command Arguments for Alpha_Assert
1055 static const char* apzAlpha_AssertPatch[] = {
1060 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1062 * Description of Alpha_Bad_Lval fix
1064 tSCC zAlpha_Bad_LvalName[] =
1068 * File name selection pattern
1070 #define zAlpha_Bad_LvalList (char*)NULL
1072 * Machine/OS name selection pattern
1074 tSCC* apzAlpha_Bad_LvalMachs[] = {
1076 (const char*)NULL };
1079 * content selection pattern - do fix if pattern found
1081 tSCC zAlpha_Bad_LvalSelect0[] =
1082 "^[ \t]*#[ \t]*pragma[ \t]+extern_prefix";
1084 #define ALPHA_BAD_LVAL_TEST_CT 1
1085 static tTestDesc aAlpha_Bad_LvalTests[] = {
1086 { TT_EGREP, zAlpha_Bad_LvalSelect0, (regex_t*)NULL }, };
1089 * Fix Command Arguments for Alpha_Bad_Lval
1091 static const char* apzAlpha_Bad_LvalPatch[] = { sed_cmd_z,
1092 "-e", "s/^[ \t]*#[ \t]*define[ \t][ \t]*\\([^(]*\\)\\(([^)]*)\\)[ \t]*\\(_.*\\)\\1\\2[ \t]*$/#define \\1 \\3\\1/",
1095 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1097 * Description of Alpha_Getopt fix
1099 tSCC zAlpha_GetoptName[] =
1103 * File name selection pattern
1105 tSCC zAlpha_GetoptList[] =
1106 "stdio.h\0stdlib.h\0";
1108 * Machine/OS name selection pattern
1110 #define apzAlpha_GetoptMachs (const char**)NULL
1113 * content selection pattern - do fix if pattern found
1115 tSCC zAlpha_GetoptSelect0[] =
1116 "getopt\\(int, char \\*\\[\\], *char \\*\\)";
1118 #define ALPHA_GETOPT_TEST_CT 1
1119 static tTestDesc aAlpha_GetoptTests[] = {
1120 { TT_EGREP, zAlpha_GetoptSelect0, (regex_t*)NULL }, };
1123 * Fix Command Arguments for Alpha_Getopt
1125 static const char* apzAlpha_GetoptPatch[] = {
1127 "getopt(int, char *const[], const char *)",
1130 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1132 * Description of Alpha_If_Semicolon fix
1134 tSCC zAlpha_If_SemicolonName[] =
1135 "alpha_if_semicolon";
1138 * File name selection pattern
1140 tSCC zAlpha_If_SemicolonList[] =
1143 * Machine/OS name selection pattern
1145 #define apzAlpha_If_SemicolonMachs (const char**)NULL
1148 * content selection pattern - do fix if pattern found
1150 tSCC zAlpha_If_SemicolonSelect0[] =
1151 "struct[ \t]+sockaddr[ \t]+vmif_paddr[ \t]+/\\*";
1153 #define ALPHA_IF_SEMICOLON_TEST_CT 1
1154 static tTestDesc aAlpha_If_SemicolonTests[] = {
1155 { TT_EGREP, zAlpha_If_SemicolonSelect0, (regex_t*)NULL }, };
1158 * Fix Command Arguments for Alpha_If_Semicolon
1160 static const char* apzAlpha_If_SemicolonPatch[] = {
1162 "struct sockaddr vmif_paddr;\t/*",
1165 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1167 * Description of Alpha_Parens fix
1169 tSCC zAlpha_ParensName[] =
1173 * File name selection pattern
1175 tSCC zAlpha_ParensList[] =
1178 * Machine/OS name selection pattern
1180 #define apzAlpha_ParensMachs (const char**)NULL
1183 * content selection pattern - do fix if pattern found
1185 tSCC zAlpha_ParensSelect0[] =
1186 "#ifndef\\(__mips64\\)";
1188 #define ALPHA_PARENS_TEST_CT 1
1189 static tTestDesc aAlpha_ParensTests[] = {
1190 { TT_EGREP, zAlpha_ParensSelect0, (regex_t*)NULL }, };
1193 * Fix Command Arguments for Alpha_Parens
1195 static const char* apzAlpha_ParensPatch[] = {
1200 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1202 * Description of Alpha_Pthread fix
1204 tSCC zAlpha_PthreadName[] =
1208 * File name selection pattern
1210 tSCC zAlpha_PthreadList[] =
1213 * Machine/OS name selection pattern
1215 tSCC* apzAlpha_PthreadMachs[] = {
1217 (const char*)NULL };
1220 * content selection pattern - do fix if pattern found
1222 tSCC zAlpha_PthreadSelect0[] =
1223 "((#[ \t]*if)([ \t]*defined[ \t]*\\(_PTHREAD_ENV_DECC\\)|def _PTHREAD_ENV_DECC)(.*))\n\
1224 (#[ \t]*define _PTHREAD_USE_PTDNAM_)";
1226 #define ALPHA_PTHREAD_TEST_CT 1
1227 static tTestDesc aAlpha_PthreadTests[] = {
1228 { TT_EGREP, zAlpha_PthreadSelect0, (regex_t*)NULL }, };
1231 * Fix Command Arguments for Alpha_Pthread
1233 static const char* apzAlpha_PthreadPatch[] = {
1235 "%2 defined (_PTHREAD_ENV_DECC)%4 || defined (__PRAGMA_EXTERN_PREFIX)\n\
1239 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1241 * Description of Alpha_Pthread_Gcc fix
1243 tSCC zAlpha_Pthread_GccName[] =
1244 "alpha_pthread_gcc";
1247 * File name selection pattern
1249 tSCC zAlpha_Pthread_GccList[] =
1252 * Machine/OS name selection pattern
1254 tSCC* apzAlpha_Pthread_GccMachs[] = {
1256 (const char*)NULL };
1259 * content selection pattern - do fix if pattern found
1261 tSCC zAlpha_Pthread_GccSelect0[] =
1263 # error <pthread.h>: unrecognized compiler.";
1265 #define ALPHA_PTHREAD_GCC_TEST_CT 1
1266 static tTestDesc aAlpha_Pthread_GccTests[] = {
1267 { TT_EGREP, zAlpha_Pthread_GccSelect0, (regex_t*)NULL }, };
1270 * Fix Command Arguments for Alpha_Pthread_Gcc
1272 static const char* apzAlpha_Pthread_GccPatch[] = {
1274 "#elif defined (__GNUC__)\n\
1275 # define _PTHREAD_ENV_GCC\n\
1279 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1281 * Description of Alpha_Pthread_Init fix
1283 tSCC zAlpha_Pthread_InitName[] =
1284 "alpha_pthread_init";
1287 * File name selection pattern
1289 tSCC zAlpha_Pthread_InitList[] =
1292 * Machine/OS name selection pattern
1294 tSCC* apzAlpha_Pthread_InitMachs[] = {
1296 (const char*)NULL };
1299 * content selection pattern - do fix if pattern found
1301 tSCC zAlpha_Pthread_InitSelect0[] =
1302 " \\* @\\(#\\).RCSfile: pthread\\.h,v \\$ .Revision: 1\\.1\\.33\\.21 \\$ \\(DEC\\) .Date: 2000/08/15 15:30:13 \\$";
1304 #define ALPHA_PTHREAD_INIT_TEST_CT 1
1305 static tTestDesc aAlpha_Pthread_InitTests[] = {
1306 { TT_EGREP, zAlpha_Pthread_InitSelect0, (regex_t*)NULL }, };
1309 * Fix Command Arguments for Alpha_Pthread_Init
1311 static const char* apzAlpha_Pthread_InitPatch[] = { sed_cmd_z,
1312 "-e", "s@MVALID\\(.*\\)A}@MVALID\\1A, 0, 0, 0, 0, 0, 0 }@\n\
1313 s@MVALID\\(.*\\)_}@MVALID\\1_, 0, 0, 0, 0 }@\n\
1314 s@CVALID\\(.*\\)A}@CVALID\\1A, 0, 0, 0, 0 }@\n\
1315 s@CVALID\\(.*\\)_}@CVALID\\1_, 0, 0 }@\n\
1316 s@WVALID\\(.*\\)A}@WVALID\\1A, 0, 0, 0, 0, 0, 0, 0, 0, 0 }@\n\
1317 s@WVALID\\(.*\\)_}@WVALID\\1_, 0, 0, 0, 0, 0, 0, 0 }@\n",
1320 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1322 * Description of Alpha_Sbrk fix
1324 tSCC zAlpha_SbrkName[] =
1328 * File name selection pattern
1330 tSCC zAlpha_SbrkList[] =
1333 * Machine/OS name selection pattern
1335 #define apzAlpha_SbrkMachs (const char**)NULL
1338 * content selection pattern - do fix if pattern found
1340 tSCC zAlpha_SbrkSelect0[] =
1341 "char[ \t]*\\*[\t ]*sbrk[ \t]*\\(";
1343 #define ALPHA_SBRK_TEST_CT 1
1344 static tTestDesc aAlpha_SbrkTests[] = {
1345 { TT_EGREP, zAlpha_SbrkSelect0, (regex_t*)NULL }, };
1348 * Fix Command Arguments for Alpha_Sbrk
1350 static const char* apzAlpha_SbrkPatch[] = {
1355 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1357 * Description of Alpha_Wchar fix
1359 tSCC zAlpha_WcharName[] =
1363 * File name selection pattern
1365 tSCC zAlpha_WcharList[] =
1368 * Machine/OS name selection pattern
1370 tSCC* apzAlpha_WcharMachs[] = {
1372 (const char*)NULL };
1375 * content selection pattern - do fix if pattern found
1377 tSCC zAlpha_WcharSelect0[] =
1378 "#define wcstok wcstok_r";
1380 #define ALPHA_WCHAR_TEST_CT 1
1381 static tTestDesc aAlpha_WcharTests[] = {
1382 { TT_EGREP, zAlpha_WcharSelect0, (regex_t*)NULL }, };
1385 * Fix Command Arguments for Alpha_Wchar
1387 static const char* apzAlpha_WcharPatch[] = { sed_cmd_z,
1388 "-e", "s@#define wcstok wcstok_r@extern wchar_t *wcstok __((wchar_t *, const wchar_t *, wchar_t **)) __asm__(\"wcstok_r\");@",
1389 "-e", "s@#define wcsftime __wcsftime_isoc@extern size_t wcsftime __((wchar_t *, size_t, const wchar_t *, const struct tm *)) __asm__(\"__wcsftime_isoc\");@",
1392 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1394 * Description of Avoid_Bool_Define fix
1396 tSCC zAvoid_Bool_DefineName[] =
1397 "avoid_bool_define";
1400 * File name selection pattern
1402 tSCC zAvoid_Bool_DefineList[] =
1403 "curses.h\0curses_colr/curses.h\0term.h\0tinfo.h\0";
1405 * Machine/OS name selection pattern
1407 #define apzAvoid_Bool_DefineMachs (const char**)NULL
1410 * content selection pattern - do fix if pattern found
1412 tSCC zAvoid_Bool_DefineSelect0[] =
1413 "#[ \t]*define[ \t]+bool[ \t]";
1416 * content bypass pattern - skip fix if pattern found
1418 tSCC zAvoid_Bool_DefineBypass0[] =
1421 #define AVOID_BOOL_DEFINE_TEST_CT 2
1422 static tTestDesc aAvoid_Bool_DefineTests[] = {
1423 { TT_NEGREP, zAvoid_Bool_DefineBypass0, (regex_t*)NULL },
1424 { TT_EGREP, zAvoid_Bool_DefineSelect0, (regex_t*)NULL }, };
1427 * Fix Command Arguments for Avoid_Bool_Define
1429 static const char* apzAvoid_Bool_DefinePatch[] = {
1431 "#ifndef __cplusplus\n\
1434 "^[ \t]*#[ \t]*define[ \t]+bool[ \t].*",
1437 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1439 * Description of Avoid_Bool_Type fix
1441 tSCC zAvoid_Bool_TypeName[] =
1445 * File name selection pattern
1447 tSCC zAvoid_Bool_TypeList[] =
1448 "curses.h\0curses_colr/curses.h\0term.h\0tinfo.h\0";
1450 * Machine/OS name selection pattern
1452 #define apzAvoid_Bool_TypeMachs (const char**)NULL
1455 * content selection pattern - do fix if pattern found
1457 tSCC zAvoid_Bool_TypeSelect0[] =
1458 "^[ \t]*typedef[ \t].*[ \t]bool[ \t]*;";
1461 * content bypass pattern - skip fix if pattern found
1463 tSCC zAvoid_Bool_TypeBypass0[] =
1466 #define AVOID_BOOL_TYPE_TEST_CT 2
1467 static tTestDesc aAvoid_Bool_TypeTests[] = {
1468 { TT_NEGREP, zAvoid_Bool_TypeBypass0, (regex_t*)NULL },
1469 { TT_EGREP, zAvoid_Bool_TypeSelect0, (regex_t*)NULL }, };
1472 * Fix Command Arguments for Avoid_Bool_Type
1474 static const char* apzAvoid_Bool_TypePatch[] = {
1476 "#ifndef __cplusplus\n\
1481 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1483 * Description of Avoid_Wchar_T_Type fix
1485 tSCC zAvoid_Wchar_T_TypeName[] =
1486 "avoid_wchar_t_type";
1489 * File name selection pattern
1491 #define zAvoid_Wchar_T_TypeList (char*)NULL
1493 * Machine/OS name selection pattern
1495 #define apzAvoid_Wchar_T_TypeMachs (const char**)NULL
1498 * content selection pattern - do fix if pattern found
1500 tSCC zAvoid_Wchar_T_TypeSelect0[] =
1501 "^[ \t]*typedef[ \t].*[ \t]wchar_t[ \t]*;";
1504 * content bypass pattern - skip fix if pattern found
1506 tSCC zAvoid_Wchar_T_TypeBypass0[] =
1508 tSCC zAvoid_Wchar_T_TypeBypass1[] =
1510 tSCC zAvoid_Wchar_T_TypeBypass2[] =
1511 "XFree86: xc/lib/X11/Xlib\\.h";
1513 #define AVOID_WCHAR_T_TYPE_TEST_CT 4
1514 static tTestDesc aAvoid_Wchar_T_TypeTests[] = {
1515 { TT_NEGREP, zAvoid_Wchar_T_TypeBypass0, (regex_t*)NULL },
1516 { TT_NEGREP, zAvoid_Wchar_T_TypeBypass1, (regex_t*)NULL },
1517 { TT_NEGREP, zAvoid_Wchar_T_TypeBypass2, (regex_t*)NULL },
1518 { TT_EGREP, zAvoid_Wchar_T_TypeSelect0, (regex_t*)NULL }, };
1521 * Fix Command Arguments for Avoid_Wchar_T_Type
1523 static const char* apzAvoid_Wchar_T_TypePatch[] = {
1525 "#ifndef __cplusplus\n\
1530 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1532 * Description of Bad_Struct_Term fix
1534 tSCC zBad_Struct_TermName[] =
1538 * File name selection pattern
1540 tSCC zBad_Struct_TermList[] =
1543 * Machine/OS name selection pattern
1545 #define apzBad_Struct_TermMachs (const char**)NULL
1548 * content selection pattern - do fix if pattern found
1550 tSCC zBad_Struct_TermSelect0[] =
1551 "^[ \t]*typedef[ \t]+struct[ \t]+term[ \t]*;";
1553 #define BAD_STRUCT_TERM_TEST_CT 1
1554 static tTestDesc aBad_Struct_TermTests[] = {
1555 { TT_EGREP, zBad_Struct_TermSelect0, (regex_t*)NULL }, };
1558 * Fix Command Arguments for Bad_Struct_Term
1560 static const char* apzBad_Struct_TermPatch[] = {
1565 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1567 * Description of Badquote fix
1569 tSCC zBadquoteName[] =
1573 * File name selection pattern
1575 tSCC zBadquoteList[] =
1576 "sundev/vuid_event.h\0";
1578 * Machine/OS name selection pattern
1580 #define apzBadquoteMachs (const char**)NULL
1583 * content selection pattern - do fix if pattern found
1585 tSCC zBadquoteSelect0[] =
1588 #define BADQUOTE_TEST_CT 1
1589 static tTestDesc aBadquoteTests[] = {
1590 { TT_EGREP, zBadquoteSelect0, (regex_t*)NULL }, };
1593 * Fix Command Arguments for Badquote
1595 static const char* apzBadquotePatch[] = {
1600 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1602 * Description of Broken_Assert_Stdio fix
1604 tSCC zBroken_Assert_StdioName[] =
1605 "broken_assert_stdio";
1608 * File name selection pattern
1610 tSCC zBroken_Assert_StdioList[] =
1613 * Machine/OS name selection pattern
1615 #define apzBroken_Assert_StdioMachs (const char**)NULL
1618 * content selection pattern - do fix if pattern found
1620 tSCC zBroken_Assert_StdioSelect0[] =
1624 * content bypass pattern - skip fix if pattern found
1626 tSCC zBroken_Assert_StdioBypass0[] =
1627 "include.*stdio\\.h";
1629 #define BROKEN_ASSERT_STDIO_TEST_CT 2
1630 static tTestDesc aBroken_Assert_StdioTests[] = {
1631 { TT_NEGREP, zBroken_Assert_StdioBypass0, (regex_t*)NULL },
1632 { TT_EGREP, zBroken_Assert_StdioSelect0, (regex_t*)NULL }, };
1635 * Fix Command Arguments for Broken_Assert_Stdio
1637 static const char* apzBroken_Assert_StdioPatch[] = {
1639 "#include <stdio.h>\n",
1642 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1644 * Description of Broken_Assert_Stdlib fix
1646 tSCC zBroken_Assert_StdlibName[] =
1647 "broken_assert_stdlib";
1650 * File name selection pattern
1652 tSCC zBroken_Assert_StdlibList[] =
1655 * Machine/OS name selection pattern
1657 #define apzBroken_Assert_StdlibMachs (const char**)NULL
1660 * content selection pattern - do fix if pattern found
1662 tSCC zBroken_Assert_StdlibSelect0[] =
1663 "exit *\\(|abort *\\(";
1666 * content bypass pattern - skip fix if pattern found
1668 tSCC zBroken_Assert_StdlibBypass0[] =
1669 "include.*stdlib\\.h";
1671 #define BROKEN_ASSERT_STDLIB_TEST_CT 2
1672 static tTestDesc aBroken_Assert_StdlibTests[] = {
1673 { TT_NEGREP, zBroken_Assert_StdlibBypass0, (regex_t*)NULL },
1674 { TT_EGREP, zBroken_Assert_StdlibSelect0, (regex_t*)NULL }, };
1677 * Fix Command Arguments for Broken_Assert_Stdlib
1679 static const char* apzBroken_Assert_StdlibPatch[] = {
1681 "#ifdef __cplusplus\n\
1682 #include <stdlib.h>\n\
1686 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1688 * Description of Broken_Cabs fix
1690 tSCC zBroken_CabsName[] =
1694 * File name selection pattern
1696 tSCC zBroken_CabsList[] =
1697 "math.h\0architecture/*/math.h\0";
1699 * Machine/OS name selection pattern
1701 #define apzBroken_CabsMachs (const char**)NULL
1704 * content selection pattern - do fix if pattern found
1706 tSCC zBroken_CabsSelect0[] =
1707 "^extern[ \t]+double[ \t]+cabs";
1709 #define BROKEN_CABS_TEST_CT 1
1710 static tTestDesc aBroken_CabsTests[] = {
1711 { TT_EGREP, zBroken_CabsSelect0, (regex_t*)NULL }, };
1714 * Fix Command Arguments for Broken_Cabs
1716 static const char* apzBroken_CabsPatch[] = { sed_cmd_z,
1717 "-e", "s/^extern[ \t]*double[ \t]*cabs[ \t]*([^\\)]*);//",
1718 "-e", "s/^extern[ \t]*long[ \t]*double[ \t]*cabsl[ \t]*([^\\)]*);//",
1721 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1723 * Description of Broken_Nan fix
1725 tSCC zBroken_NanName[] =
1729 * File name selection pattern
1731 tSCC zBroken_NanList[] =
1732 "architecture/ppc/math.h\0architecture/*/math.h\0";
1734 * Machine/OS name selection pattern
1736 #define apzBroken_NanMachs (const char**)NULL
1739 * content selection pattern - do fix if pattern found
1741 tSCC zBroken_NanSelect0[] =
1742 "#if defined(__APPLE_CC__) && (__APPLE_CC__ >= 1345)";
1745 * content bypass pattern - skip fix if pattern found
1747 tSCC zBroken_NanBypass0[] =
1750 #define BROKEN_NAN_TEST_CT 2
1751 static tTestDesc aBroken_NanTests[] = {
1752 { TT_NEGREP, zBroken_NanBypass0, (regex_t*)NULL },
1753 { TT_EGREP, zBroken_NanSelect0, (regex_t*)NULL }, };
1756 * Fix Command Arguments for Broken_Nan
1758 static const char* apzBroken_NanPatch[] = {
1763 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1765 * Description of Bsd_Stdio_Attrs_Conflict fix
1767 tSCC zBsd_Stdio_Attrs_ConflictName[] =
1768 "bsd_stdio_attrs_conflict";
1771 * File name selection pattern
1773 tSCC zBsd_Stdio_Attrs_ConflictList[] =
1776 * Machine/OS name selection pattern
1778 tSCC* apzBsd_Stdio_Attrs_ConflictMachs[] = {
1781 (const char*)NULL };
1784 * content selection pattern - do fix if pattern found
1786 tSCC zBsd_Stdio_Attrs_ConflictSelect0[] =
1787 "^#define[ \t]*vfscanf[ \t]*__svfscanf[ \t]*$";
1789 #define BSD_STDIO_ATTRS_CONFLICT_TEST_CT 1
1790 static tTestDesc aBsd_Stdio_Attrs_ConflictTests[] = {
1791 { TT_EGREP, zBsd_Stdio_Attrs_ConflictSelect0, (regex_t*)NULL }, };
1794 * Fix Command Arguments for Bsd_Stdio_Attrs_Conflict
1796 static const char* apzBsd_Stdio_Attrs_ConflictPatch[] = {
1798 "#define _BSD_STRING(_BSD_X) _BSD_STRINGX(_BSD_X)\n\
1799 #define _BSD_STRINGX(_BSD_X) #_BSD_X\n\
1800 int vfscanf(FILE *, const char *, __builtin_va_list) __asm__ (_BSD_STRING(__USER_LABEL_PREFIX__) \"__svfscanf\");",
1803 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1805 * Description of Ctrl_Quotes_Def fix
1807 tSCC zCtrl_Quotes_DefName[] =
1811 * File name selection pattern
1813 #define zCtrl_Quotes_DefList (char*)NULL
1815 * Machine/OS name selection pattern
1817 #define apzCtrl_Quotes_DefMachs (const char**)NULL
1820 * content selection pattern - do fix if pattern found
1822 tSCC zCtrl_Quotes_DefSelect0[] =
1823 "define[ \t]+[A-Z0-9_]+CTRL\\([a-zA-Z][,)]";
1825 #define CTRL_QUOTES_DEF_TEST_CT 1
1826 static tTestDesc aCtrl_Quotes_DefTests[] = {
1827 { TT_EGREP, zCtrl_Quotes_DefSelect0, (regex_t*)NULL }, };
1830 * Fix Command Arguments for Ctrl_Quotes_Def
1832 static const char* apzCtrl_Quotes_DefPatch[] = {
1837 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1839 * Description of Ctrl_Quotes_Use fix
1841 tSCC zCtrl_Quotes_UseName[] =
1845 * File name selection pattern
1847 #define zCtrl_Quotes_UseList (char*)NULL
1849 * Machine/OS name selection pattern
1851 #define apzCtrl_Quotes_UseMachs (const char**)NULL
1854 * content selection pattern - do fix if pattern found
1856 tSCC zCtrl_Quotes_UseSelect0[] =
1857 "define[ \t]+[A-Z0-9_]+[ \t]+[A-Z0-9_]+CTRL[ \t]*\\( *[^,']";
1859 #define CTRL_QUOTES_USE_TEST_CT 1
1860 static tTestDesc aCtrl_Quotes_UseTests[] = {
1861 { TT_EGREP, zCtrl_Quotes_UseSelect0, (regex_t*)NULL }, };
1864 * Fix Command Arguments for Ctrl_Quotes_Use
1866 static const char* apzCtrl_Quotes_UsePatch[] = {
1871 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1873 * Description of Cxx_Unready fix
1875 tSCC zCxx_UnreadyName[] =
1879 * File name selection pattern
1881 tSCC zCxx_UnreadyList[] =
1882 "sys/mman.h\0rpc/types.h\0";
1884 * Machine/OS name selection pattern
1886 #define apzCxx_UnreadyMachs (const char**)NULL
1889 * content selection pattern - do fix if pattern found
1891 tSCC zCxx_UnreadySelect0[] =
1895 * content bypass pattern - skip fix if pattern found
1897 tSCC zCxx_UnreadyBypass0[] =
1898 "\"C\"|__BEGIN_DECLS";
1900 #define CXX_UNREADY_TEST_CT 2
1901 static tTestDesc aCxx_UnreadyTests[] = {
1902 { TT_NEGREP, zCxx_UnreadyBypass0, (regex_t*)NULL },
1903 { TT_EGREP, zCxx_UnreadySelect0, (regex_t*)NULL }, };
1906 * Fix Command Arguments for Cxx_Unready
1908 static const char* apzCxx_UnreadyPatch[] = {
1910 "#ifdef __cplusplus\n\
1913 "#ifdef __cplusplus\n\
1918 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1920 * Description of Darwin_Externc fix
1922 tSCC zDarwin_ExterncName[] =
1926 * File name selection pattern
1928 tSCC zDarwin_ExterncList[] =
1929 "mach-o/swap.h\0mach/mach_time.h\0mach/mach_traps.h\0mach/message.h\0mach/mig.h\0mach/semaphore.h\0";
1931 * Machine/OS name selection pattern
1933 tSCC* apzDarwin_ExterncMachs[] = {
1935 (const char*)NULL };
1938 * content bypass pattern - skip fix if pattern found
1940 tSCC zDarwin_ExterncBypass0[] =
1942 tSCC zDarwin_ExterncBypass1[] =
1945 #define DARWIN_EXTERNC_TEST_CT 2
1946 static tTestDesc aDarwin_ExterncTests[] = {
1947 { TT_NEGREP, zDarwin_ExterncBypass0, (regex_t*)NULL },
1948 { TT_NEGREP, zDarwin_ExterncBypass1, (regex_t*)NULL }, };
1951 * Fix Command Arguments for Darwin_Externc
1953 static const char* apzDarwin_ExterncPatch[] = {
1955 "#ifdef __cplusplus\n\
1958 "#ifdef __cplusplus\n\
1963 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1965 * Description of Darwin_Gcc4_Breakage fix
1967 tSCC zDarwin_Gcc4_BreakageName[] =
1968 "darwin_gcc4_breakage";
1971 * File name selection pattern
1973 tSCC zDarwin_Gcc4_BreakageList[] =
1974 "AvailabilityMacros.h\0";
1976 * Machine/OS name selection pattern
1978 tSCC* apzDarwin_Gcc4_BreakageMachs[] = {
1980 (const char*)NULL };
1983 * content selection pattern - do fix if pattern found
1985 tSCC zDarwin_Gcc4_BreakageSelect0[] =
1986 "\\(__GNUC__ >= 3\\) && \\(__GNUC_MINOR__ >= 1\\)";
1988 #define DARWIN_GCC4_BREAKAGE_TEST_CT 1
1989 static tTestDesc aDarwin_Gcc4_BreakageTests[] = {
1990 { TT_EGREP, zDarwin_Gcc4_BreakageSelect0, (regex_t*)NULL }, };
1993 * Fix Command Arguments for Darwin_Gcc4_Breakage
1995 static const char* apzDarwin_Gcc4_BreakagePatch[] = {
1997 "((__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1))",
2000 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2002 * Description of Darwin_Private_Extern fix
2004 tSCC zDarwin_Private_ExternName[] =
2005 "darwin_private_extern";
2008 * File name selection pattern
2010 tSCC zDarwin_Private_ExternList[] =
2013 * Machine/OS name selection pattern
2015 tSCC* apzDarwin_Private_ExternMachs[] = {
2017 (const char*)NULL };
2020 * content selection pattern - do fix if pattern found
2022 tSCC zDarwin_Private_ExternSelect0[] =
2023 "__private_extern__ [a-z_]+ _dyld_";
2025 #define DARWIN_PRIVATE_EXTERN_TEST_CT 1
2026 static tTestDesc aDarwin_Private_ExternTests[] = {
2027 { TT_EGREP, zDarwin_Private_ExternSelect0, (regex_t*)NULL }, };
2030 * Fix Command Arguments for Darwin_Private_Extern
2032 static const char* apzDarwin_Private_ExternPatch[] = {
2035 "__private_extern__",
2038 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2040 * Description of Darwin_Stdint_1 fix
2042 tSCC zDarwin_Stdint_1Name[] =
2046 * File name selection pattern
2048 tSCC zDarwin_Stdint_1List[] =
2049 "stdint-darwin.h\0stdint.h\0";
2051 * Machine/OS name selection pattern
2053 tSCC* apzDarwin_Stdint_1Machs[] = {
2055 (const char*)NULL };
2058 * content selection pattern - do fix if pattern found
2060 tSCC zDarwin_Stdint_1Select0[] =
2061 "#define UINT8_C\\(v\\)[ \t]+\\(v ## U\\)\n\
2062 #define UINT16_C\\(v\\)[ \t]+\\(v ## U\\)";
2064 #define DARWIN_STDINT_1_TEST_CT 1
2065 static tTestDesc aDarwin_Stdint_1Tests[] = {
2066 { TT_EGREP, zDarwin_Stdint_1Select0, (regex_t*)NULL }, };
2069 * Fix Command Arguments for Darwin_Stdint_1
2071 static const char* apzDarwin_Stdint_1Patch[] = {
2073 "#define UINT8_C(v)\tv\n\
2074 #define UINT16_C(v)\tv",
2077 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2079 * Description of Darwin_Stdint_2 fix
2081 tSCC zDarwin_Stdint_2Name[] =
2085 * File name selection pattern
2087 tSCC zDarwin_Stdint_2List[] =
2088 "stdint-darwin.h\0stdint.h\0";
2090 * Machine/OS name selection pattern
2092 tSCC* apzDarwin_Stdint_2Machs[] = {
2094 (const char*)NULL };
2097 * content selection pattern - do fix if pattern found
2099 tSCC zDarwin_Stdint_2Select0[] =
2100 "#if __WORDSIZE == 64\n\
2101 #define INTPTR_MIN[ \t]+INT64_MIN\n\
2102 #define INTPTR_MAX[ \t]+INT64_MAX\n\
2104 #define INTPTR_MIN[ \t]+INT32_MIN\n\
2105 #define INTPTR_MAX[ \t]+INT32_MAX\n\
2108 #define DARWIN_STDINT_2_TEST_CT 1
2109 static tTestDesc aDarwin_Stdint_2Tests[] = {
2110 { TT_EGREP, zDarwin_Stdint_2Select0, (regex_t*)NULL }, };
2113 * Fix Command Arguments for Darwin_Stdint_2
2115 static const char* apzDarwin_Stdint_2Patch[] = {
2117 "#if __WORDSIZE == 64\n\
2118 #define INTPTR_MAX 9223372036854775807L\n\
2119 #define INTPTR_MIN (-INTPTR_MAX-1)\n\
2121 #define INTPTR_MAX 2147483647L\n\
2122 #define INTPTR_MIN (-INTPTR_MAX-1)\n\
2126 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2128 * Description of Darwin_Stdint_3 fix
2130 tSCC zDarwin_Stdint_3Name[] =
2134 * File name selection pattern
2136 tSCC zDarwin_Stdint_3List[] =
2137 "stdint-darwin.h\0stdint.h\0";
2139 * Machine/OS name selection pattern
2141 tSCC* apzDarwin_Stdint_3Machs[] = {
2143 (const char*)NULL };
2146 * content selection pattern - do fix if pattern found
2148 tSCC zDarwin_Stdint_3Select0[] =
2149 "#if __WORDSIZE == 64\n\
2150 #define UINTPTR_MAX[ \t]+UINT64_MAX\n\
2152 #define UINTPTR_MAX[ \t]+UINT32_MAX\n\
2155 #define DARWIN_STDINT_3_TEST_CT 1
2156 static tTestDesc aDarwin_Stdint_3Tests[] = {
2157 { TT_EGREP, zDarwin_Stdint_3Select0, (regex_t*)NULL }, };
2160 * Fix Command Arguments for Darwin_Stdint_3
2162 static const char* apzDarwin_Stdint_3Patch[] = {
2164 "#if __WORDSIZE == 64\n\
2165 #define UINTPTR_MAX 18446744073709551615UL\n\
2167 #define UINTPTR_MAX 4294967295UL\n\
2171 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2173 * Description of Darwin_Stdint_4 fix
2175 tSCC zDarwin_Stdint_4Name[] =
2179 * File name selection pattern
2181 tSCC zDarwin_Stdint_4List[] =
2182 "stdint-darwin.h\0stdint.h\0";
2184 * Machine/OS name selection pattern
2186 tSCC* apzDarwin_Stdint_4Machs[] = {
2188 (const char*)NULL };
2191 * content selection pattern - do fix if pattern found
2193 tSCC zDarwin_Stdint_4Select0[] =
2194 "#if __WORDSIZE == 64\n\
2195 #define SIZE_MAX[ \t]+UINT64_MAX\n\
2197 #define SIZE_MAX[ \t]+UINT32_MAX\n\
2200 #define DARWIN_STDINT_4_TEST_CT 1
2201 static tTestDesc aDarwin_Stdint_4Tests[] = {
2202 { TT_EGREP, zDarwin_Stdint_4Select0, (regex_t*)NULL }, };
2205 * Fix Command Arguments for Darwin_Stdint_4
2207 static const char* apzDarwin_Stdint_4Patch[] = {
2209 "#if __WORDSIZE == 64\n\
2210 #define SIZE_MAX 18446744073709551615UL\n\
2212 #define SIZE_MAX 4294967295UL\n\
2216 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2218 * Description of Darwin_Stdint_5 fix
2220 tSCC zDarwin_Stdint_5Name[] =
2224 * File name selection pattern
2226 tSCC zDarwin_Stdint_5List[] =
2227 "stdint-darwin.h\0stdint.h\0";
2229 * Machine/OS name selection pattern
2231 tSCC* apzDarwin_Stdint_5Machs[] = {
2233 (const char*)NULL };
2236 * content selection pattern - do fix if pattern found
2238 tSCC zDarwin_Stdint_5Select0[] =
2239 "#define INTMAX_MIN[ \t]+INT64_MIN\n\
2240 #define INTMAX_MAX[ \t]+INT64_MAX\n\n\
2241 #define UINTMAX_MAX[ \t]+UINT64_MAX";
2243 #define DARWIN_STDINT_5_TEST_CT 1
2244 static tTestDesc aDarwin_Stdint_5Tests[] = {
2245 { TT_EGREP, zDarwin_Stdint_5Select0, (regex_t*)NULL }, };
2248 * Fix Command Arguments for Darwin_Stdint_5
2250 static const char* apzDarwin_Stdint_5Patch[] = {
2252 "#if __WORDSIZE == 64\n\
2253 #define INTMAX_MIN (-9223372036854775807L - 1)\n\
2254 #define INTMAX_MAX 9223372036854775807L\n\
2255 #define UINTMAX_MAX 18446744073709551615UL\n\
2257 #define INTMAX_MIN (-9223372036854775807LL - 1)\n\
2258 #define INTMAX_MAX 9223372036854775807LL\n\
2259 #define UINTMAX_MAX 18446744073709551615ULL\n\
2263 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2265 * Description of Darwin_Stdint_6 fix
2267 tSCC zDarwin_Stdint_6Name[] =
2271 * File name selection pattern
2273 tSCC zDarwin_Stdint_6List[] =
2274 "stdint-darwin.h\0stdint.h\0";
2276 * Machine/OS name selection pattern
2278 tSCC* apzDarwin_Stdint_6Machs[] = {
2280 (const char*)NULL };
2283 * content selection pattern - do fix if pattern found
2285 tSCC zDarwin_Stdint_6Select0[] =
2286 "#if __WORDSIZE == 64\n\
2287 #define PTRDIFF_MIN[ \t]+INT64_MIN\n\
2288 #define PTRDIFF_MAX[ \t]+INT64_MAX\n\
2290 #define PTRDIFF_MIN[ \t]+INT32_MIN\n\
2291 #define PTRDIFF_MAX[ \t]+INT32_MAX\n\
2294 #define DARWIN_STDINT_6_TEST_CT 1
2295 static tTestDesc aDarwin_Stdint_6Tests[] = {
2296 { TT_EGREP, zDarwin_Stdint_6Select0, (regex_t*)NULL }, };
2299 * Fix Command Arguments for Darwin_Stdint_6
2301 static const char* apzDarwin_Stdint_6Patch[] = {
2303 "#if __WORDSIZE == 64\n\
2304 #define PTRDIFF_MIN (-9223372036854775807L - 1)\n\
2305 #define PTRDIFF_MAX 9223372036854775807L\n\
2307 #define PTRDIFF_MIN (-2147483647 - 1)\n\
2308 #define PTRDIFF_MAX 2147483647\n\
2312 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2314 * Description of Darwin_Stdint_7 fix
2316 tSCC zDarwin_Stdint_7Name[] =
2320 * File name selection pattern
2322 tSCC zDarwin_Stdint_7List[] =
2323 "stdint-darwin.h\0stdint.h\0";
2325 * Machine/OS name selection pattern
2327 tSCC* apzDarwin_Stdint_7Machs[] = {
2329 (const char*)NULL };
2332 * content selection pattern - do fix if pattern found
2334 tSCC zDarwin_Stdint_7Select0[] =
2335 "#define INTMAX_C\\(v\\)[ \t]+\\(v ## LL\\)\n\
2336 #define UINTMAX_C\\(v\\)[ \t]+\\(v ## ULL\\)";
2338 #define DARWIN_STDINT_7_TEST_CT 1
2339 static tTestDesc aDarwin_Stdint_7Tests[] = {
2340 { TT_EGREP, zDarwin_Stdint_7Select0, (regex_t*)NULL }, };
2343 * Fix Command Arguments for Darwin_Stdint_7
2345 static const char* apzDarwin_Stdint_7Patch[] = {
2347 "#if __WORDSIZE == 64\n\
2348 #define INTMAX_C(v) (v ## L)\n\
2349 #define UINTMAX_C(v) (v ## UL)\n\
2351 #define INTMAX_C(v) (v ## LL)\n\
2352 #define UINTMAX_C(v) (v ## ULL)\n\
2356 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2358 * Description of Dec_Intern_Asm fix
2360 tSCC zDec_Intern_AsmName[] =
2364 * File name selection pattern
2366 tSCC zDec_Intern_AsmList[] =
2369 * Machine/OS name selection pattern
2371 #define apzDec_Intern_AsmMachs (const char**)NULL
2372 #define DEC_INTERN_ASM_TEST_CT 0
2373 #define aDec_Intern_AsmTests (tTestDesc*)NULL
2376 * Fix Command Arguments for Dec_Intern_Asm
2378 static const char* apzDec_Intern_AsmPatch[] = { sed_cmd_z,
2379 "-e", "/^[ \t]*float[ \t]*fasm/i\\\n\
2381 "-e", "/^[ \t]*#[ \t]*pragma[ \t]*intrinsic([ \t]*dasm/a\\\n\
2385 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2387 * Description of Djgpp_Wchar_H fix
2389 tSCC zDjgpp_Wchar_HName[] =
2393 * File name selection pattern
2395 #define zDjgpp_Wchar_HList (char*)NULL
2397 * Machine/OS name selection pattern
2399 #define apzDjgpp_Wchar_HMachs (const char**)NULL
2402 * content selection pattern - do fix if pattern found
2404 tSCC zDjgpp_Wchar_HSelect0[] =
2408 * content bypass pattern - skip fix if pattern found
2410 tSCC zDjgpp_Wchar_HBypass0[] =
2413 #define DJGPP_WCHAR_H_TEST_CT 2
2414 static tTestDesc aDjgpp_Wchar_HTests[] = {
2415 { TT_NEGREP, zDjgpp_Wchar_HBypass0, (regex_t*)NULL },
2416 { TT_EGREP, zDjgpp_Wchar_HSelect0, (regex_t*)NULL }, };
2419 * Fix Command Arguments for Djgpp_Wchar_H
2421 static const char* apzDjgpp_Wchar_HPatch[] = {
2424 #include <sys/djtypes.h>",
2425 "#include <stddef.h>",
2428 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2430 * Description of Ecd_Cursor fix
2432 tSCC zEcd_CursorName[] =
2436 * File name selection pattern
2438 tSCC zEcd_CursorList[] =
2439 "sunwindow/win_lock.h\0sunwindow/win_cursor.h\0";
2441 * Machine/OS name selection pattern
2443 #define apzEcd_CursorMachs (const char**)NULL
2446 * content selection pattern - do fix if pattern found
2448 tSCC zEcd_CursorSelect0[] =
2451 #define ECD_CURSOR_TEST_CT 1
2452 static tTestDesc aEcd_CursorTests[] = {
2453 { TT_EGREP, zEcd_CursorSelect0, (regex_t*)NULL }, };
2456 * Fix Command Arguments for Ecd_Cursor
2458 static const char* apzEcd_CursorPatch[] = {
2463 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2465 * Description of Freebsd_Gcc3_Breakage fix
2467 tSCC zFreebsd_Gcc3_BreakageName[] =
2468 "freebsd_gcc3_breakage";
2471 * File name selection pattern
2473 tSCC zFreebsd_Gcc3_BreakageList[] =
2476 * Machine/OS name selection pattern
2478 tSCC* apzFreebsd_Gcc3_BreakageMachs[] = {
2480 (const char*)NULL };
2483 * content selection pattern - do fix if pattern found
2485 tSCC zFreebsd_Gcc3_BreakageSelect0[] =
2486 "^#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7$";
2489 * content bypass pattern - skip fix if pattern found
2491 tSCC zFreebsd_Gcc3_BreakageBypass0[] =
2492 "__GNUC__[ \\t]*([>=]=[ \\t]*[3-9]|>[ \\t]*2)";
2494 #define FREEBSD_GCC3_BREAKAGE_TEST_CT 2
2495 static tTestDesc aFreebsd_Gcc3_BreakageTests[] = {
2496 { TT_NEGREP, zFreebsd_Gcc3_BreakageBypass0, (regex_t*)NULL },
2497 { TT_EGREP, zFreebsd_Gcc3_BreakageSelect0, (regex_t*)NULL }, };
2500 * Fix Command Arguments for Freebsd_Gcc3_Breakage
2502 static const char* apzFreebsd_Gcc3_BreakagePatch[] = {
2504 "%0 || __GNUC__ >= 3",
2507 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2509 * Description of Freebsd_Gcc4_Breakage fix
2511 tSCC zFreebsd_Gcc4_BreakageName[] =
2512 "freebsd_gcc4_breakage";
2515 * File name selection pattern
2517 tSCC zFreebsd_Gcc4_BreakageList[] =
2520 * Machine/OS name selection pattern
2522 tSCC* apzFreebsd_Gcc4_BreakageMachs[] = {
2524 (const char*)NULL };
2527 * content selection pattern - do fix if pattern found
2529 tSCC zFreebsd_Gcc4_BreakageSelect0[] =
2530 "^#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7 \\|\\| __GNUC__ == 3$";
2532 #define FREEBSD_GCC4_BREAKAGE_TEST_CT 1
2533 static tTestDesc aFreebsd_Gcc4_BreakageTests[] = {
2534 { TT_EGREP, zFreebsd_Gcc4_BreakageSelect0, (regex_t*)NULL }, };
2537 * Fix Command Arguments for Freebsd_Gcc4_Breakage
2539 static const char* apzFreebsd_Gcc4_BreakagePatch[] = {
2541 "#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7 || __GNUC__ >= 3",
2544 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2546 * Description of Glibc_C99_Inline_1 fix
2548 tSCC zGlibc_C99_Inline_1Name[] =
2549 "glibc_c99_inline_1";
2552 * File name selection pattern
2554 tSCC zGlibc_C99_Inline_1List[] =
2555 "features.h\0*/features.h\0";
2557 * Machine/OS name selection pattern
2559 #define apzGlibc_C99_Inline_1Machs (const char**)NULL
2562 * content selection pattern - do fix if pattern found
2564 tSCC zGlibc_C99_Inline_1Select0[] =
2565 "^ *&& !defined __OPTIMIZE_SIZE__ && !defined __NO_INLINE__$";
2567 #define GLIBC_C99_INLINE_1_TEST_CT 1
2568 static tTestDesc aGlibc_C99_Inline_1Tests[] = {
2569 { TT_EGREP, zGlibc_C99_Inline_1Select0, (regex_t*)NULL }, };
2572 * Fix Command Arguments for Glibc_C99_Inline_1
2574 static const char* apzGlibc_C99_Inline_1Patch[] = {
2576 "%0 && (defined __extern_inline || defined __GNUC_GNU_INLINE__)",
2579 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2581 * Description of Glibc_C99_Inline_1a fix
2583 tSCC zGlibc_C99_Inline_1aName[] =
2584 "glibc_c99_inline_1a";
2587 * File name selection pattern
2589 tSCC zGlibc_C99_Inline_1aList[] =
2590 "features.h\0*/features.h\0";
2592 * Machine/OS name selection pattern
2594 #define apzGlibc_C99_Inline_1aMachs (const char**)NULL
2597 * content selection pattern - do fix if pattern found
2599 tSCC zGlibc_C99_Inline_1aSelect0[] =
2600 "(\\) && defined __OPTIMIZE__ && !defined __OPTIMIZE_SIZE__)\n\
2601 (#[ \t]*define[ \t]*__USE_EXTERN_INLINES[ \t]*1)";
2603 #define GLIBC_C99_INLINE_1A_TEST_CT 1
2604 static tTestDesc aGlibc_C99_Inline_1aTests[] = {
2605 { TT_EGREP, zGlibc_C99_Inline_1aSelect0, (regex_t*)NULL }, };
2608 * Fix Command Arguments for Glibc_C99_Inline_1a
2610 static const char* apzGlibc_C99_Inline_1aPatch[] = {
2612 "%1 && (defined __extern_inline || defined __GNUC_GNU_INLINE__)\n\
2616 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2618 * Description of Glibc_C99_Inline_2 fix
2620 tSCC zGlibc_C99_Inline_2Name[] =
2621 "glibc_c99_inline_2";
2624 * File name selection pattern
2626 tSCC zGlibc_C99_Inline_2List[] =
2627 "sys/stat.h\0*/sys/stat.h\0";
2629 * Machine/OS name selection pattern
2631 #define apzGlibc_C99_Inline_2Machs (const char**)NULL
2634 * content selection pattern - do fix if pattern found
2636 tSCC zGlibc_C99_Inline_2Select0[] =
2637 "extern __inline__ int";
2639 #define GLIBC_C99_INLINE_2_TEST_CT 1
2640 static tTestDesc aGlibc_C99_Inline_2Tests[] = {
2641 { TT_EGREP, zGlibc_C99_Inline_2Select0, (regex_t*)NULL }, };
2644 * Fix Command Arguments for Glibc_C99_Inline_2
2646 static const char* apzGlibc_C99_Inline_2Patch[] = { sed_cmd_z,
2647 "-e", "s/extern int \\(stat\\)/#ifdef __GNUC_GNU_INLINE__\\\n\
2650 __inline__ int \\1/",
2651 "-e", "s/extern int \\([lf]stat\\)/#ifdef __GNUC_GNU_INLINE__\\\n\
2654 __inline__ int \\1/",
2655 "-e", "s/extern int \\(mknod\\)/#ifdef __GNUC_GNU_INLINE__\\\n\
2658 __inline__ int \\1/",
2659 "-e", "s/extern int __REDIRECT\\(_NTH\\)\\{0,1\\} (\\(stat\\)/#ifdef __GNUC_GNU_INLINE__\\\n\
2662 __inline__ int __REDIRECT\\1 (\\2/",
2663 "-e", "s/extern int __REDIRECT\\(_NTH\\)\\{0,1\\} (\\([lf]stat\\)/#ifdef __GNUC_GNU_INLINE__\\\n\
2666 __inline__ int __REDIRECT\\1 (\\2/",
2667 "-e", "s/^extern __inline__ int/#ifdef __GNUC_GNU_INLINE__\\\n\
2673 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2675 * Description of Glibc_C99_Inline_3 fix
2677 tSCC zGlibc_C99_Inline_3Name[] =
2678 "glibc_c99_inline_3";
2681 * File name selection pattern
2683 tSCC zGlibc_C99_Inline_3List[] =
2684 "bits/string2.h\0*/bits/string2.h\0";
2686 * Machine/OS name selection pattern
2688 #define apzGlibc_C99_Inline_3Machs (const char**)NULL
2691 * content selection pattern - do fix if pattern found
2693 tSCC zGlibc_C99_Inline_3Select0[] =
2697 * content bypass pattern - skip fix if pattern found
2699 tSCC zGlibc_C99_Inline_3Bypass0[] =
2700 "__extern_inline|__GNU_STDC_INLINE__";
2702 #define GLIBC_C99_INLINE_3_TEST_CT 2
2703 static tTestDesc aGlibc_C99_Inline_3Tests[] = {
2704 { TT_NEGREP, zGlibc_C99_Inline_3Bypass0, (regex_t*)NULL },
2705 { TT_EGREP, zGlibc_C99_Inline_3Select0, (regex_t*)NULL }, };
2708 * Fix Command Arguments for Glibc_C99_Inline_3
2710 static const char* apzGlibc_C99_Inline_3Patch[] = {
2712 "# if defined(__cplusplus) || defined(__GNUC_STDC_INLINE__)",
2713 "^# ifdef __cplusplus$",
2716 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2718 * Description of Glibc_C99_Inline_4 fix
2720 tSCC zGlibc_C99_Inline_4Name[] =
2721 "glibc_c99_inline_4";
2724 * File name selection pattern
2726 tSCC zGlibc_C99_Inline_4List[] =
2727 "sys/sysmacros.h\0*/sys/sysmacros.h\0wchar.h\0*/wchar.h\0";
2729 * Machine/OS name selection pattern
2731 #define apzGlibc_C99_Inline_4Machs (const char**)NULL
2734 * content selection pattern - do fix if pattern found
2736 tSCC zGlibc_C99_Inline_4Select0[] =
2737 "(^| )extern __inline";
2740 * content bypass pattern - skip fix if pattern found
2742 tSCC zGlibc_C99_Inline_4Bypass0[] =
2743 "__extern_inline|__gnu_inline__";
2745 #define GLIBC_C99_INLINE_4_TEST_CT 2
2746 static tTestDesc aGlibc_C99_Inline_4Tests[] = {
2747 { TT_NEGREP, zGlibc_C99_Inline_4Bypass0, (regex_t*)NULL },
2748 { TT_EGREP, zGlibc_C99_Inline_4Select0, (regex_t*)NULL }, };
2751 * Fix Command Arguments for Glibc_C99_Inline_4
2753 static const char* apzGlibc_C99_Inline_4Patch[] = {
2755 "%0 __attribute__ ((__gnu_inline__))",
2758 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2760 * Description of Glibc_Mutex_Init fix
2762 tSCC zGlibc_Mutex_InitName[] =
2766 * File name selection pattern
2768 tSCC zGlibc_Mutex_InitList[] =
2771 * Machine/OS name selection pattern
2773 #define apzGlibc_Mutex_InitMachs (const char**)NULL
2776 * content selection pattern - do fix if pattern found
2778 tSCC zGlibc_Mutex_InitSelect0[] =
2779 "\\{ *\\{ *0, *\\} *\\}";
2781 #define GLIBC_MUTEX_INIT_TEST_CT 1
2782 static tTestDesc aGlibc_Mutex_InitTests[] = {
2783 { TT_EGREP, zGlibc_Mutex_InitSelect0, (regex_t*)NULL }, };
2786 * Fix Command Arguments for Glibc_Mutex_Init
2788 static const char* apzGlibc_Mutex_InitPatch[] = { sed_cmd_z,
2789 "-e", "/define[ \t]\\{1,\\}PTHREAD_MUTEX_INITIALIZER[ \t]*\\\\/{\n\
2791 s/{ { 0, } }/{ { 0, 0, 0, 0, 0, 0 } }/\n\
2793 "-e", "s/{ \\(0, 0, 0, 0, PTHREAD_MUTEX_\\(RECURSIVE\\)_NP\\) }/{ \\1, 0 }/",
2794 "-e", "s/{ \\(0, 0, 0, 0, PTHREAD_MUTEX_\\(ERRORCHECK\\)_NP\\) }/{ \\1, 0 }/",
2795 "-e", "s/{ \\(0, 0, 0, 0, PTHREAD_MUTEX_\\(ADAPTIVE\\)_NP\\) }/{ \\1, 0 }/",
2796 "-e", "s/{ \\(0, 0, 0, PTHREAD_MUTEX_\\(RECURSIVE\\)_NP\\) }/{ \\1, 0, 0 }/",
2797 "-e", "s/{ \\(0, 0, 0, PTHREAD_MUTEX_\\(ERRORCHECK\\)_NP\\) }/{ \\1, 0, 0 }/",
2798 "-e", "s/{ \\(0, 0, 0, PTHREAD_MUTEX_\\(ADAPTIVE\\)_NP\\) }/{ \\1, 0, 0 }/",
2799 "-e", "/define[ \t]\\{1,\\}PTHREAD_RWLOCK_INITIALIZER[ \t]*\\\\/N;s/^[ \t]*#[ \t]*\\(define[ \t]\\{1,\\}PTHREAD_RWLOCK_INITIALIZER[ \t]*\\\\\\)\\n[ \t]*{ { 0, } }/# if __WORDSIZE == 64\\\n\
2801 { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } }\\\n\
2804 { { 0, 0, 0, 0, 0, 0, 0, 0 } }\\\n\
2806 "-e", "s/{ \\(0, 0, 0, 0, 0, 0, PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP\\) }/{ \\1, 0 }/",
2807 "-e", "/define[ \t]\\{1,\\}PTHREAD_COND_INITIALIZER/s/{ { 0, } }/{ { 0, 0, 0, 0, 0, (void *) 0, 0, 0 } }/",
2810 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2812 * Description of Glibc_Stdint fix
2814 tSCC zGlibc_StdintName[] =
2818 * File name selection pattern
2820 tSCC zGlibc_StdintList[] =
2823 * Machine/OS name selection pattern
2825 #define apzGlibc_StdintMachs (const char**)NULL
2828 * content selection pattern - do fix if pattern found
2830 tSCC zGlibc_StdintSelect0[] =
2833 #define GLIBC_STDINT_TEST_CT 1
2834 static tTestDesc aGlibc_StdintTests[] = {
2835 { TT_EGREP, zGlibc_StdintSelect0, (regex_t*)NULL }, };
2838 * Fix Command Arguments for Glibc_Stdint
2840 static const char* apzGlibc_StdintPatch[] = {
2842 "# define UINT8_C(c)\tc\n\
2843 # define UINT16_C(c)\tc",
2844 "# define UINT8_C\\(c\\)\tc ## U\n\
2845 # define UINT16_C\\(c\\)\tc ## U",
2848 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2850 * Description of Glibc_Strncpy fix
2852 tSCC zGlibc_StrncpyName[] =
2856 * File name selection pattern
2858 tSCC zGlibc_StrncpyList[] =
2861 * Machine/OS name selection pattern
2863 #define apzGlibc_StrncpyMachs (const char**)NULL
2866 * content bypass pattern - skip fix if pattern found
2868 tSCC zGlibc_StrncpyBypass0[] =
2869 "__builtin_strncpy";
2871 #define GLIBC_STRNCPY_TEST_CT 1
2872 static tTestDesc aGlibc_StrncpyTests[] = {
2873 { TT_NEGREP, zGlibc_StrncpyBypass0, (regex_t*)NULL }, };
2876 * Fix Command Arguments for Glibc_Strncpy
2878 static const char* apzGlibc_StrncpyPatch[] = {
2880 "# define strncpy(dest, src, n) __builtin_strncpy (dest, src, n)",
2881 "# define strncpy([^\n\
2887 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2889 * Description of Glibc_Tgmath fix
2891 tSCC zGlibc_TgmathName[] =
2895 * File name selection pattern
2897 tSCC zGlibc_TgmathList[] =
2900 * Machine/OS name selection pattern
2902 #define apzGlibc_TgmathMachs (const char**)NULL
2905 * content selection pattern - do fix if pattern found
2907 tSCC zGlibc_TgmathSelect0[] =
2908 "\\(\\(\\(type\\) 0.25\\) && \\(\\(type\\) 0.25 - 1\\)\\)";
2911 * content bypass pattern - skip fix if pattern found
2913 tSCC zGlibc_TgmathBypass0[] =
2914 "__floating_type\\(type\\) \\\\\n\
2915 .*__builtin_classify_type";
2917 #define GLIBC_TGMATH_TEST_CT 2
2918 static tTestDesc aGlibc_TgmathTests[] = {
2919 { TT_NEGREP, zGlibc_TgmathBypass0, (regex_t*)NULL },
2920 { TT_EGREP, zGlibc_TgmathSelect0, (regex_t*)NULL }, };
2923 * Fix Command Arguments for Glibc_Tgmath
2925 static const char* apzGlibc_TgmathPatch[] = {
2927 "(__builtin_classify_type ((type) 0) == 8 || (__builtin_classify_type ((type) 0) == 9 && __builtin_classify_type (__real__ ((type) 0)) == 8))",
2930 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2932 * Description of Gnu_Types fix
2934 tSCC zGnu_TypesName[] =
2938 * File name selection pattern
2940 tSCC zGnu_TypesList[] =
2941 "sys/types.h\0stdlib.h\0sys/stdtypes.h\0stddef.h\0memory.h\0unistd.h\0";
2943 * Machine/OS name selection pattern
2945 tSCC* apzGnu_TypesMachs[] = {
2946 "*-*-solaris2.1[0-9]*",
2947 (const char*)NULL };
2950 * content selection pattern - do fix if pattern found
2952 tSCC zGnu_TypesSelect0[] =
2953 "^[ \t]*typedef[ \t]+.*[ \t](ptrdiff|size|wchar)_t;";
2956 * content bypass pattern - skip fix if pattern found
2958 tSCC zGnu_TypesBypass0[] =
2959 "_GCC_(PTRDIFF|SIZE|WCHAR)_T";
2961 #define GNU_TYPES_TEST_CT 2
2962 static tTestDesc aGnu_TypesTests[] = {
2963 { TT_NEGREP, zGnu_TypesBypass0, (regex_t*)NULL },
2964 { TT_EGREP, zGnu_TypesSelect0, (regex_t*)NULL }, };
2967 * Fix Command Arguments for Gnu_Types
2969 static const char* apzGnu_TypesPatch[] = {
2973 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2975 * Description of Hp_Inline fix
2977 tSCC zHp_InlineName[] =
2981 * File name selection pattern
2983 tSCC zHp_InlineList[] =
2984 "sys/spinlock.h\0machine/machparam.h\0";
2986 * Machine/OS name selection pattern
2988 #define apzHp_InlineMachs (const char**)NULL
2991 * content selection pattern - do fix if pattern found
2993 tSCC zHp_InlineSelect0[] =
2994 "[ \t]*#[ \t]*include[ \t]+\"\\.\\./machine/";
2996 #define HP_INLINE_TEST_CT 1
2997 static tTestDesc aHp_InlineTests[] = {
2998 { TT_EGREP, zHp_InlineSelect0, (regex_t*)NULL }, };
3001 * Fix Command Arguments for Hp_Inline
3003 static const char* apzHp_InlinePatch[] = {
3006 "([ \t]*#[ \t]*include[ \t]+)\"\\.\\./machine/([a-z]+)\\.h\"",
3009 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3011 * Description of Hp_Sysfile fix
3013 tSCC zHp_SysfileName[] =
3017 * File name selection pattern
3019 tSCC zHp_SysfileList[] =
3022 * Machine/OS name selection pattern
3024 #define apzHp_SysfileMachs (const char**)NULL
3027 * content selection pattern - do fix if pattern found
3029 tSCC zHp_SysfileSelect0[] =
3032 #define HP_SYSFILE_TEST_CT 1
3033 static tTestDesc aHp_SysfileTests[] = {
3034 { TT_EGREP, zHp_SysfileSelect0, (regex_t*)NULL }, };
3037 * Fix Command Arguments for Hp_Sysfile
3039 static const char* apzHp_SysfilePatch[] = {
3041 "(struct file *, ...)",
3045 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3047 * Description of Hppa_Hpux_Fp_Macros fix
3049 tSCC zHppa_Hpux_Fp_MacrosName[] =
3050 "hppa_hpux_fp_macros";
3053 * File name selection pattern
3055 tSCC zHppa_Hpux_Fp_MacrosList[] =
3058 * Machine/OS name selection pattern
3060 tSCC* apzHppa_Hpux_Fp_MacrosMachs[] = {
3062 (const char*)NULL };
3065 * content selection pattern - do fix if pattern found
3067 tSCC zHppa_Hpux_Fp_MacrosSelect0[] =
3068 "#[ \t]*define[ \t]*FP_NORMAL.*\n\
3069 #[ \t]*define[ \t]*FP_ZERO.*\n\
3070 #[ \t]*define[ \t]*FP_INFINITE.*\n\
3071 #[ \t]*define[ \t]*FP_SUBNORMAL.*\n\
3072 #[ \t]*define[ \t]*FP_NAN.*\n";
3074 #define HPPA_HPUX_FP_MACROS_TEST_CT 1
3075 static tTestDesc aHppa_Hpux_Fp_MacrosTests[] = {
3076 { TT_EGREP, zHppa_Hpux_Fp_MacrosSelect0, (regex_t*)NULL }, };
3079 * Fix Command Arguments for Hppa_Hpux_Fp_Macros
3081 static const char* apzHppa_Hpux_Fp_MacrosPatch[] = {
3083 "#endif /* _INCLUDE_HPUX_SOURCE */\n\n\
3084 #if defined(_INCLUDE_HPUX_SOURCE) || \\\n\
3085 (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L))\n\
3087 #ifdef _INCLUDE_HPUX_SOURCE\n",
3090 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3092 * Description of Hpux10_Cpp_Pow_Inline fix
3094 tSCC zHpux10_Cpp_Pow_InlineName[] =
3095 "hpux10_cpp_pow_inline";
3098 * File name selection pattern
3100 tSCC zHpux10_Cpp_Pow_InlineList[] =
3101 "fixinc-test-limits.h\0math.h\0";
3103 * Machine/OS name selection pattern
3105 #define apzHpux10_Cpp_Pow_InlineMachs (const char**)NULL
3108 * content selection pattern - do fix if pattern found
3110 tSCC zHpux10_Cpp_Pow_InlineSelect0[] =
3111 "^# +ifdef +__cplusplus\n\
3113 +inline +double +pow\\(double +__d,int +__expon\\) +\\{\n\
3114 [ \t]+return +pow\\(__d,\\(double\\)__expon\\);\n\
3116 +extern +\"C\" +\\{\n\
3120 #define HPUX10_CPP_POW_INLINE_TEST_CT 1
3121 static tTestDesc aHpux10_Cpp_Pow_InlineTests[] = {
3122 { TT_EGREP, zHpux10_Cpp_Pow_InlineSelect0, (regex_t*)NULL }, };
3125 * Fix Command Arguments for Hpux10_Cpp_Pow_Inline
3127 static const char* apzHpux10_Cpp_Pow_InlinePatch[] = {
3132 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3134 * Description of Hpux11_Cpp_Pow_Inline fix
3136 tSCC zHpux11_Cpp_Pow_InlineName[] =
3137 "hpux11_cpp_pow_inline";
3140 * File name selection pattern
3142 tSCC zHpux11_Cpp_Pow_InlineList[] =
3145 * Machine/OS name selection pattern
3147 #define apzHpux11_Cpp_Pow_InlineMachs (const char**)NULL
3150 * content selection pattern - do fix if pattern found
3152 tSCC zHpux11_Cpp_Pow_InlineSelect0[] =
3153 " +inline double pow\\(double d,int expon\\) \\{\n\
3154 +return pow\\(d, \\(double\\)expon\\);\n\
3157 #define HPUX11_CPP_POW_INLINE_TEST_CT 1
3158 static tTestDesc aHpux11_Cpp_Pow_InlineTests[] = {
3159 { TT_EGREP, zHpux11_Cpp_Pow_InlineSelect0, (regex_t*)NULL }, };
3162 * Fix Command Arguments for Hpux11_Cpp_Pow_Inline
3164 static const char* apzHpux11_Cpp_Pow_InlinePatch[] = {
3169 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3171 * Description of Hpux10_Ctype_Declarations1 fix
3173 tSCC zHpux10_Ctype_Declarations1Name[] =
3174 "hpux10_ctype_declarations1";
3177 * File name selection pattern
3179 tSCC zHpux10_Ctype_Declarations1List[] =
3182 * Machine/OS name selection pattern
3184 #define apzHpux10_Ctype_Declarations1Machs (const char**)NULL
3187 * content selection pattern - do fix if pattern found
3189 tSCC zHpux10_Ctype_Declarations1Select0[] =
3190 "^#[ \t]*define _toupper\\(__c\\)[ \t]*__toupper\\(__c\\)";
3193 * content bypass pattern - skip fix if pattern found
3195 tSCC zHpux10_Ctype_Declarations1Bypass0[] =
3196 "^[ \t]*extern[ \t]*int[ \t]*__tolower[ \t]*\\(";
3198 #define HPUX10_CTYPE_DECLARATIONS1_TEST_CT 2
3199 static tTestDesc aHpux10_Ctype_Declarations1Tests[] = {
3200 { TT_NEGREP, zHpux10_Ctype_Declarations1Bypass0, (regex_t*)NULL },
3201 { TT_EGREP, zHpux10_Ctype_Declarations1Select0, (regex_t*)NULL }, };
3204 * Fix Command Arguments for Hpux10_Ctype_Declarations1
3206 static const char* apzHpux10_Ctype_Declarations1Patch[] = {
3208 "#ifdef _PROTOTYPES\n\
3209 extern int __tolower(int);\n\
3210 extern int __toupper(int);\n\
3211 #else /* NOT _PROTOTYPES */\n\
3212 extern int __tolower();\n\
3213 extern int __toupper();\n\
3214 #endif /* _PROTOTYPES */\n\n\
3218 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3220 * Description of Hpux10_Ctype_Declarations2 fix
3222 tSCC zHpux10_Ctype_Declarations2Name[] =
3223 "hpux10_ctype_declarations2";
3226 * File name selection pattern
3228 tSCC zHpux10_Ctype_Declarations2List[] =
3231 * Machine/OS name selection pattern
3233 #define apzHpux10_Ctype_Declarations2Machs (const char**)NULL
3236 * content selection pattern - do fix if pattern found
3238 tSCC zHpux10_Ctype_Declarations2Select0[] =
3239 "^# if defined\\(_SB_CTYPE_MACROS\\) && \\!defined\\(__lint\\)";
3242 * content bypass pattern - skip fix if pattern found
3244 tSCC zHpux10_Ctype_Declarations2Bypass0[] =
3245 "^[ \t]*extern[ \t]*int[ \t]*_isalnum[ \t]*\\(";
3247 #define HPUX10_CTYPE_DECLARATIONS2_TEST_CT 2
3248 static tTestDesc aHpux10_Ctype_Declarations2Tests[] = {
3249 { TT_NEGREP, zHpux10_Ctype_Declarations2Bypass0, (regex_t*)NULL },
3250 { TT_EGREP, zHpux10_Ctype_Declarations2Select0, (regex_t*)NULL }, };
3253 * Fix Command Arguments for Hpux10_Ctype_Declarations2
3255 static const char* apzHpux10_Ctype_Declarations2Patch[] = {
3258 #ifdef _PROTOTYPES\n\
3259 extern int _isalnum(int);\n\
3260 extern int _isalpha(int);\n\
3261 extern int _iscntrl(int);\n\
3262 extern int _isdigit(int);\n\
3263 extern int _isgraph(int);\n\
3264 extern int _islower(int);\n\
3265 extern int _isprint(int);\n\
3266 extern int _ispunct(int);\n\
3267 extern int _isspace(int);\n\
3268 extern int _isupper(int);\n\
3269 extern int _isxdigit(int);\n\
3270 # else /* not _PROTOTYPES */\n\
3271 extern int _isalnum();\n\
3272 extern int _isalpha();\n\
3273 extern int _iscntrl();\n\
3274 extern int _isdigit();\n\
3275 extern int _isgraph();\n\
3276 extern int _islower();\n\
3277 extern int _isprint();\n\
3278 extern int _ispunct();\n\
3279 extern int _isspace();\n\
3280 extern int _isupper();\n\
3281 extern int _isxdigit();\n\
3282 #endif /* _PROTOTYPES */\n",
3285 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3287 * Description of Hpux10_Stdio_Declarations fix
3289 tSCC zHpux10_Stdio_DeclarationsName[] =
3290 "hpux10_stdio_declarations";
3293 * File name selection pattern
3295 tSCC zHpux10_Stdio_DeclarationsList[] =
3298 * Machine/OS name selection pattern
3300 #define apzHpux10_Stdio_DeclarationsMachs (const char**)NULL
3303 * content selection pattern - do fix if pattern found
3305 tSCC zHpux10_Stdio_DeclarationsSelect0[] =
3306 "^#[ \t]*define _iob[ \t]*__iob";
3309 * content bypass pattern - skip fix if pattern found
3311 tSCC zHpux10_Stdio_DeclarationsBypass0[] =
3312 "^[ \t]*extern[ \t]*int[ \t]*vsnprintf[ \t]*\\(";
3314 #define HPUX10_STDIO_DECLARATIONS_TEST_CT 2
3315 static tTestDesc aHpux10_Stdio_DeclarationsTests[] = {
3316 { TT_NEGREP, zHpux10_Stdio_DeclarationsBypass0, (regex_t*)NULL },
3317 { TT_EGREP, zHpux10_Stdio_DeclarationsSelect0, (regex_t*)NULL }, };
3320 * Fix Command Arguments for Hpux10_Stdio_Declarations
3322 static const char* apzHpux10_Stdio_DeclarationsPatch[] = {
3325 # if defined(__STDC__) || defined(__cplusplus)\n\
3326 extern int snprintf(char *, size_t, const char *, ...);\n\
3327 extern int vsnprintf(char *, size_t, const char *, __va_list);\n\
3328 # else /* not __STDC__) || __cplusplus */\n\
3329 extern int snprintf();\n\
3330 extern int vsnprintf();\n\
3331 # endif /* __STDC__) || __cplusplus */\n",
3334 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3336 * Description of Hpux11_Abs fix
3338 tSCC zHpux11_AbsName[] =
3342 * File name selection pattern
3344 tSCC zHpux11_AbsList[] =
3347 * Machine/OS name selection pattern
3349 tSCC* apzHpux11_AbsMachs[] = {
3351 (const char*)NULL };
3354 * content selection pattern - do fix if pattern found
3356 tSCC zHpux11_AbsSelect0[] =
3357 "ifndef _MATH_INCLUDED";
3359 #define HPUX11_ABS_TEST_CT 1
3360 static tTestDesc aHpux11_AbsTests[] = {
3361 { TT_EGREP, zHpux11_AbsSelect0, (regex_t*)NULL }, };
3364 * Fix Command Arguments for Hpux11_Abs
3366 static const char* apzHpux11_AbsPatch[] = {
3368 "if !defined(_MATH_INCLUDED) || defined(__GNUG__)",
3371 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3373 * Description of Hpux11_Fabsf fix
3375 tSCC zHpux11_FabsfName[] =
3379 * File name selection pattern
3381 tSCC zHpux11_FabsfList[] =
3384 * Machine/OS name selection pattern
3386 #define apzHpux11_FabsfMachs (const char**)NULL
3389 * content selection pattern - do fix if pattern found
3391 tSCC zHpux11_FabsfSelect0[] =
3392 "^[ \t]*#[ \t]*define[ \t]+fabsf\\(.*";
3395 * content bypass pattern - skip fix if pattern found
3397 tSCC zHpux11_FabsfBypass0[] =
3400 #define HPUX11_FABSF_TEST_CT 2
3401 static tTestDesc aHpux11_FabsfTests[] = {
3402 { TT_NEGREP, zHpux11_FabsfBypass0, (regex_t*)NULL },
3403 { TT_EGREP, zHpux11_FabsfSelect0, (regex_t*)NULL }, };
3406 * Fix Command Arguments for Hpux11_Fabsf
3408 static const char* apzHpux11_FabsfPatch[] = {
3410 "#ifndef __cplusplus\n\
3415 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3417 * Description of Hpux11_Pthread_Const fix
3419 tSCC zHpux11_Pthread_ConstName[] =
3420 "hpux11_pthread_const";
3423 * File name selection pattern
3425 tSCC zHpux11_Pthread_ConstList[] =
3428 * Machine/OS name selection pattern
3430 tSCC* apzHpux11_Pthread_ConstMachs[] = {
3431 "*-hp-hpux11.[0-3]*",
3432 (const char*)NULL };
3435 * content selection pattern - do fix if pattern found
3437 tSCC zHpux11_Pthread_ConstSelect0[] =
3438 "^#define[ \t]*__POINTER_SET[ \t]*\\(\\(void \\*\\) 1LL\\)";
3440 #define HPUX11_PTHREAD_CONST_TEST_CT 1
3441 static tTestDesc aHpux11_Pthread_ConstTests[] = {
3442 { TT_EGREP, zHpux11_Pthread_ConstSelect0, (regex_t*)NULL }, };
3445 * Fix Command Arguments for Hpux11_Pthread_Const
3447 static const char* apzHpux11_Pthread_ConstPatch[] = {
3449 "#define __POINTER_SET\t\t((void *) 1L)",
3452 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3454 * Description of Hpux11_Size_T fix
3456 tSCC zHpux11_Size_TName[] =
3460 * File name selection pattern
3462 #define zHpux11_Size_TList (char*)NULL
3464 * Machine/OS name selection pattern
3466 tSCC* apzHpux11_Size_TMachs[] = {
3468 (const char*)NULL };
3471 * content selection pattern - do fix if pattern found
3473 tSCC zHpux11_Size_TSelect0[] =
3476 #define HPUX11_SIZE_T_TEST_CT 1
3477 static tTestDesc aHpux11_Size_TTests[] = {
3478 { TT_EGREP, zHpux11_Size_TSelect0, (regex_t*)NULL }, };
3481 * Fix Command Arguments for Hpux11_Size_T
3483 static const char* apzHpux11_Size_TPatch[] = {
3488 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3490 * Description of Hpux11_Snprintf fix
3492 tSCC zHpux11_SnprintfName[] =
3496 * File name selection pattern
3498 tSCC zHpux11_SnprintfList[] =
3501 * Machine/OS name selection pattern
3503 #define apzHpux11_SnprintfMachs (const char**)NULL
3506 * content selection pattern - do fix if pattern found
3508 tSCC zHpux11_SnprintfSelect0[] =
3509 "(extern int snprintf *\\(char *\\*, *(|__|_hpux_)size_t,) *(char *\\*, *\\.\\.\\.\\);)";
3511 #define HPUX11_SNPRINTF_TEST_CT 1
3512 static tTestDesc aHpux11_SnprintfTests[] = {
3513 { TT_EGREP, zHpux11_SnprintfSelect0, (regex_t*)NULL }, };
3516 * Fix Command Arguments for Hpux11_Snprintf
3518 static const char* apzHpux11_SnprintfPatch[] = {
3523 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3525 * Description of Hpux11_Vsnprintf fix
3527 tSCC zHpux11_VsnprintfName[] =
3531 * File name selection pattern
3533 tSCC zHpux11_VsnprintfList[] =
3536 * Machine/OS name selection pattern
3538 #define apzHpux11_VsnprintfMachs (const char**)NULL
3541 * content selection pattern - do fix if pattern found
3543 tSCC zHpux11_VsnprintfSelect0[] =
3544 "(extern int vsnprintf\\(char \\*, _[hpux]*_size_t, const char \\*,) __va__list\\);";
3546 #define HPUX11_VSNPRINTF_TEST_CT 1
3547 static tTestDesc aHpux11_VsnprintfTests[] = {
3548 { TT_EGREP, zHpux11_VsnprintfSelect0, (regex_t*)NULL }, };
3551 * Fix Command Arguments for Hpux11_Vsnprintf
3553 static const char* apzHpux11_VsnprintfPatch[] = {
3558 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3560 * Description of Hpux8_Bogus_Inlines fix
3562 tSCC zHpux8_Bogus_InlinesName[] =
3563 "hpux8_bogus_inlines";
3566 * File name selection pattern
3568 tSCC zHpux8_Bogus_InlinesList[] =
3571 * Machine/OS name selection pattern
3573 #define apzHpux8_Bogus_InlinesMachs (const char**)NULL
3576 * content selection pattern - do fix if pattern found
3578 tSCC zHpux8_Bogus_InlinesSelect0[] =
3582 * content bypass pattern - skip fix if pattern found
3584 tSCC zHpux8_Bogus_InlinesBypass0[] =
3587 #define HPUX8_BOGUS_INLINES_TEST_CT 2
3588 static tTestDesc aHpux8_Bogus_InlinesTests[] = {
3589 { TT_NEGREP, zHpux8_Bogus_InlinesBypass0, (regex_t*)NULL },
3590 { TT_EGREP, zHpux8_Bogus_InlinesSelect0, (regex_t*)NULL }, };
3593 * Fix Command Arguments for Hpux8_Bogus_Inlines
3595 static const char* apzHpux8_Bogus_InlinesPatch[] = { sed_cmd_z,
3596 "-e", "s@inline int abs(int [a-z][a-z]*) {.*}@extern \"C\" int abs(int);@",
3597 "-e", "s@inline double abs(double [a-z][a-z]*) {.*}@@",
3598 "-e", "s@inline int sqr(int [a-z][a-z]*) {.*}@@",
3599 "-e", "s@inline double sqr(double [a-z][a-z]*) {.*}@@",
3602 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3604 * Description of Hpux_Ctype_Macros fix
3606 tSCC zHpux_Ctype_MacrosName[] =
3607 "hpux_ctype_macros";
3610 * File name selection pattern
3612 tSCC zHpux_Ctype_MacrosList[] =
3615 * Machine/OS name selection pattern
3617 #define apzHpux_Ctype_MacrosMachs (const char**)NULL
3620 * content selection pattern - do fix if pattern found
3622 tSCC zHpux_Ctype_MacrosSelect0[] =
3623 "((: |\\()__SB_masks \\? )(__SB_masks\\[__(alnum|c)\\] & _IS)";
3625 #define HPUX_CTYPE_MACROS_TEST_CT 1
3626 static tTestDesc aHpux_Ctype_MacrosTests[] = {
3627 { TT_EGREP, zHpux_Ctype_MacrosSelect0, (regex_t*)NULL }, };
3630 * Fix Command Arguments for Hpux_Ctype_Macros
3632 static const char* apzHpux_Ctype_MacrosPatch[] = {
3637 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3639 * Description of Hpux_Htonl fix
3641 tSCC zHpux_HtonlName[] =
3645 * File name selection pattern
3647 tSCC zHpux_HtonlList[] =
3650 * Machine/OS name selection pattern
3652 #define apzHpux_HtonlMachs (const char**)NULL
3655 * content selection pattern - do fix if pattern found
3657 tSCC zHpux_HtonlSelect0[] =
3658 "#ifndef _XOPEN_SOURCE_EXTENDED\n\
3660 \\* Macros for number representation conversion\\.\n\
3664 #define HPUX_HTONL_TEST_CT 1
3665 static tTestDesc aHpux_HtonlTests[] = {
3666 { TT_EGREP, zHpux_HtonlSelect0, (regex_t*)NULL }, };
3669 * Fix Command Arguments for Hpux_Htonl
3671 static const char* apzHpux_HtonlPatch[] = {
3677 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3679 * Description of Hpux_Long_Double fix
3681 tSCC zHpux_Long_DoubleName[] =
3685 * File name selection pattern
3687 tSCC zHpux_Long_DoubleList[] =
3690 * Machine/OS name selection pattern
3692 tSCC* apzHpux_Long_DoubleMachs[] = {
3694 "*-*-hpux11.[012]*",
3695 (const char*)NULL };
3698 * content selection pattern - do fix if pattern found
3700 tSCC zHpux_Long_DoubleSelect0[] =
3701 "extern[ \t]long_double[ \t]strtold";
3704 * content bypass pattern - skip fix if pattern found
3706 tSCC zHpux_Long_DoubleBypass0[] =
3709 #define HPUX_LONG_DOUBLE_TEST_CT 2
3710 static tTestDesc aHpux_Long_DoubleTests[] = {
3711 { TT_NEGREP, zHpux_Long_DoubleBypass0, (regex_t*)NULL },
3712 { TT_EGREP, zHpux_Long_DoubleSelect0, (regex_t*)NULL }, };
3715 * Fix Command Arguments for Hpux_Long_Double
3717 static const char* apzHpux_Long_DoublePatch[] = { sed_cmd_z,
3718 "-e", "/^#[ \t]*ifndef _LONG_DOUBLE/,/\\/\\* _LONG_DOUBLE \\*\\//D",
3719 "-e", "s/long_double/long double/g",
3722 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3724 * Description of Hpux_Long_Double_2 fix
3726 tSCC zHpux_Long_Double_2Name[] =
3727 "hpux_long_double_2";
3730 * File name selection pattern
3732 tSCC zHpux_Long_Double_2List[] =
3735 * Machine/OS name selection pattern
3737 tSCC* apzHpux_Long_Double_2Machs[] = {
3738 "hppa*-*-hpux11.3*",
3739 (const char*)NULL };
3742 * content selection pattern - do fix if pattern found
3744 tSCC zHpux_Long_Double_2Select0[] =
3745 "#[ \t]*if[ \t]*!defined\\(__ia64\\) \\|\\| defined\\(_PROTOTYPES\\) \\|\\| defined\\(_LONG_DOUBLE_STRUCT\\)";
3747 #define HPUX_LONG_DOUBLE_2_TEST_CT 1
3748 static tTestDesc aHpux_Long_Double_2Tests[] = {
3749 { TT_EGREP, zHpux_Long_Double_2Select0, (regex_t*)NULL }, };
3752 * Fix Command Arguments for Hpux_Long_Double_2
3754 static const char* apzHpux_Long_Double_2Patch[] = {
3756 "# if !defined(_PROTOTYPES) || defined(_LONG_DOUBLE_STRUCT)",
3759 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3761 * Description of Hpux_Systime fix
3763 tSCC zHpux_SystimeName[] =
3767 * File name selection pattern
3769 tSCC zHpux_SystimeList[] =
3772 * Machine/OS name selection pattern
3774 #define apzHpux_SystimeMachs (const char**)NULL
3777 * content selection pattern - do fix if pattern found
3779 tSCC zHpux_SystimeSelect0[] =
3780 "^extern struct sigevent;";
3782 #define HPUX_SYSTIME_TEST_CT 1
3783 static tTestDesc aHpux_SystimeTests[] = {
3784 { TT_EGREP, zHpux_SystimeSelect0, (regex_t*)NULL }, };
3787 * Fix Command Arguments for Hpux_Systime
3789 static const char* apzHpux_SystimePatch[] = {
3794 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3796 * Description of Hpux_Spu_Info fix
3798 tSCC zHpux_Spu_InfoName[] =
3802 * File name selection pattern
3804 tSCC zHpux_Spu_InfoList[] =
3805 "ia64/sys/getppdp.h\0*/sys/getppdp.h\0";
3807 * Machine/OS name selection pattern
3809 tSCC* apzHpux_Spu_InfoMachs[] = {
3811 (const char*)NULL };
3814 * content selection pattern - do fix if pattern found
3816 tSCC zHpux_Spu_InfoSelect0[] =
3817 "^.*extern.*spu_info.*";
3819 #define HPUX_SPU_INFO_TEST_CT 1
3820 static tTestDesc aHpux_Spu_InfoTests[] = {
3821 { TT_EGREP, zHpux_Spu_InfoSelect0, (regex_t*)NULL }, };
3824 * Fix Command Arguments for Hpux_Spu_Info
3826 static const char* apzHpux_Spu_InfoPatch[] = {
3833 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3835 * Description of Hpux11_Extern_Sendfile fix
3837 tSCC zHpux11_Extern_SendfileName[] =
3838 "hpux11_extern_sendfile";
3841 * File name selection pattern
3843 tSCC zHpux11_Extern_SendfileList[] =
3846 * Machine/OS name selection pattern
3848 tSCC* apzHpux11_Extern_SendfileMachs[] = {
3849 "*-hp-hpux11.[12]*",
3850 (const char*)NULL };
3853 * content selection pattern - do fix if pattern found
3855 tSCC zHpux11_Extern_SendfileSelect0[] =
3856 "^[ \t]*extern sbsize_t sendfile.*\n\
3859 #define HPUX11_EXTERN_SENDFILE_TEST_CT 1
3860 static tTestDesc aHpux11_Extern_SendfileTests[] = {
3861 { TT_EGREP, zHpux11_Extern_SendfileSelect0, (regex_t*)NULL }, };
3864 * Fix Command Arguments for Hpux11_Extern_Sendfile
3866 static const char* apzHpux11_Extern_SendfilePatch[] = {
3868 "#ifndef _APP32_64BIT_OFF_T\n\
3872 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3874 * Description of Hpux11_Extern_Sendpath fix
3876 tSCC zHpux11_Extern_SendpathName[] =
3877 "hpux11_extern_sendpath";
3880 * File name selection pattern
3882 tSCC zHpux11_Extern_SendpathList[] =
3885 * Machine/OS name selection pattern
3887 tSCC* apzHpux11_Extern_SendpathMachs[] = {
3888 "*-hp-hpux11.[12]*",
3889 (const char*)NULL };
3892 * content selection pattern - do fix if pattern found
3894 tSCC zHpux11_Extern_SendpathSelect0[] =
3895 "^[ \t]*extern sbsize_t sendpath.*\n\
3898 #define HPUX11_EXTERN_SENDPATH_TEST_CT 1
3899 static tTestDesc aHpux11_Extern_SendpathTests[] = {
3900 { TT_EGREP, zHpux11_Extern_SendpathSelect0, (regex_t*)NULL }, };
3903 * Fix Command Arguments for Hpux11_Extern_Sendpath
3905 static const char* apzHpux11_Extern_SendpathPatch[] = {
3907 "#ifndef _APP32_64BIT_OFF_T\n\
3911 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3913 * Description of Hpux_Extern_Errno fix
3915 tSCC zHpux_Extern_ErrnoName[] =
3916 "hpux_extern_errno";
3919 * File name selection pattern
3921 tSCC zHpux_Extern_ErrnoList[] =
3924 * Machine/OS name selection pattern
3926 tSCC* apzHpux_Extern_ErrnoMachs[] = {
3928 "*-hp-hpux11.[0-2]*",
3929 (const char*)NULL };
3932 * content selection pattern - do fix if pattern found
3934 tSCC zHpux_Extern_ErrnoSelect0[] =
3935 "^[ \t]*extern int errno;$";
3937 #define HPUX_EXTERN_ERRNO_TEST_CT 1
3938 static tTestDesc aHpux_Extern_ErrnoTests[] = {
3939 { TT_EGREP, zHpux_Extern_ErrnoSelect0, (regex_t*)NULL }, };
3942 * Fix Command Arguments for Hpux_Extern_Errno
3944 static const char* apzHpux_Extern_ErrnoPatch[] = {
3946 "#ifdef __cplusplus\n\
3950 #ifdef __cplusplus\n\
3955 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3957 * Description of Hpux_Pthread_Initializers fix
3959 tSCC zHpux_Pthread_InitializersName[] =
3960 "hpux_pthread_initializers";
3963 * File name selection pattern
3965 tSCC zHpux_Pthread_InitializersList[] =
3968 * Machine/OS name selection pattern
3970 tSCC* apzHpux_Pthread_InitializersMachs[] = {
3971 "*-hp-hpux11.[0-3]*",
3972 (const char*)NULL };
3973 #define HPUX_PTHREAD_INITIALIZERS_TEST_CT 0
3974 #define aHpux_Pthread_InitializersTests (tTestDesc*)NULL
3977 * Fix Command Arguments for Hpux_Pthread_Initializers
3979 static const char* apzHpux_Pthread_InitializersPatch[] = { sed_cmd_z,
3980 "-e", "s@^[ \t]*1, 1, 1, 1,[ \t]*\\\\@\t{ 1, 1, 1, 1 },\t\t\t\t\t\t\t\\\\@",
3981 "-e", "s@^[ \t]*1,[ \t]*\\\\@\t{ 1, 0 }@",
3982 "-e", "/^[ \t]*0$/d",
3983 "-e", "s@__PTHREAD_MUTEX_VALID, 0@{ __PTHREAD_MUTEX_VALID, 0 }@",
3984 "-e", "s@^[ \t]*0, 0, -1, 0,[ \t]*\\\\@\t{ 0, 0, -1, 0 },\t\t\t\t\t\t\\\\@",
3985 "-e", "s@0, __LWP_MTX_VALID, 0, 1, 1, 1, 1,[ \t]*\\\\@{ 0, __LWP_MTX_VALID }, { 0, 1, 1, 1, 1 },\t\t\t\\\\@",
3986 "-e", "s@^[ \t]*__LWP_MTX_VALID, 0, 1, 1, 1, 1,[ \t]*\\\\@\t{ 0, __LWP_MTX_VALID }, { 0, 1, 1, 1, 1 },\t\t\t\\\\@",
3987 "-e", "s@^[ \t]*0, 0[ \t]*\\\\@\t{ 0, 0 }\t\t\t\t\t\t\t\\\\@",
3988 "-e", "s@__PTHREAD_COND_VALID, 0@{ __PTHREAD_COND_VALID, 0 }@",
3989 "-e", "s@__LWP_COND_VALID, 0,[ \t]*\\\\@{ __LWP_COND_VALID, 0 },\t\t\t\t\t\\\\@",
3990 "-e", "s@__PTHREAD_RWLOCK_VALID, 0@{ __PTHREAD_RWLOCK_VALID, 0 }@",
3991 "-e", "s@__LWP_RWLOCK_VALID, 0,[ \t]*\\\\@{ __LWP_RWLOCK_VALID, 0 },\t\t\t\t\t\\\\@",
3992 "-e", "s@^[ \t]*0, 0, 0, 0, 0, 0, 0[ \t]*\\\\@\t{ 0, 0, 0, 0, 0 }, { 0, 0}\t\t\t\t\t\\\\@",
3995 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3997 * Description of Hpux_C99_Intptr fix
3999 tSCC zHpux_C99_IntptrName[] =
4003 * File name selection pattern
4005 tSCC zHpux_C99_IntptrList[] =
4006 "stdint-hpux11.h\0stdint.h\0";
4008 * Machine/OS name selection pattern
4010 tSCC* apzHpux_C99_IntptrMachs[] = {
4012 (const char*)NULL };
4013 #define HPUX_C99_INTPTR_TEST_CT 0
4014 #define aHpux_C99_IntptrTests (tTestDesc*)NULL
4017 * Fix Command Arguments for Hpux_C99_Intptr
4019 static const char* apzHpux_C99_IntptrPatch[] = { sed_cmd_z,
4020 "-e", "s@^[ \t]*#[ \t]*define[ \t]*PTRDIFF_MAX[ \t]*INT32_MAX[ \t]*$@#define PTRDIFF_MAX (2147483647l)@",
4021 "-e", "s@^[ \t]*#[ \t]*define[ \t]*PTRDIFF_MIN[ \t]*INT32_MIN[ \t]*$@#define PTRDIFF_MIN (-PTRDIFF_MAX - 1)@",
4022 "-e", "s@^[ \t]*#[ \t]*define[ \t]*INTPTR_MAX[ \t]*INT32_MAX[ \t]*$@#define INTPTR_MAX (2147483647l)@",
4023 "-e", "s@^[ \t]*#[ \t]*define[ \t]*INTPTR_MIN[ \t]*INT32_MIN[ \t]*$@#define INTPTR_MIN (-INTPTR_MAX - 1)@",
4024 "-e", "s@^[ \t]*#[ \t]*define[ \t]*UINTPTR_MAX[ \t]*UINT32_MAX[ \t]*$@#define UINTPTR_MAX (4294967295ul)@",
4025 "-e", "s@^[ \t]*#[ \t]*define[ \t]*SIZE_MAX[ \t]*UINT32_MAX[ \t]*$@#define SIZE_MAX (4294967295ul)@",
4028 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4030 * Description of Hpux_C99_Inttypes fix
4032 tSCC zHpux_C99_InttypesName[] =
4033 "hpux_c99_inttypes";
4036 * File name selection pattern
4038 tSCC zHpux_C99_InttypesList[] =
4039 "inttypes.h\0stdint-hpux11.h\0stdint.h\0";
4041 * Machine/OS name selection pattern
4043 tSCC* apzHpux_C99_InttypesMachs[] = {
4044 "*-hp-hpux11.[23]*",
4045 (const char*)NULL };
4046 #define HPUX_C99_INTTYPES_TEST_CT 0
4047 #define aHpux_C99_InttypesTests (tTestDesc*)NULL
4050 * Fix Command Arguments for Hpux_C99_Inttypes
4052 static const char* apzHpux_C99_InttypesPatch[] = { sed_cmd_z,
4053 "-e", "s@^[ \t]*#[ \t]*define[ \t]*UINT8_C(__c)[ \t]*__CONCAT_U__(__c)[ \t]*$@#define UINT8_C(__c) (__c)@",
4054 "-e", "s@^[ \t]*#[ \t]*define[ \t]*UINT16_C(__c)[ \t]*__CONCAT_U__(__c)[ \t]*$@#define UINT16_C(__c) (__c)@",
4055 "-e", "s@^[ \t]*#[ \t]*define[ \t]*INT32_C(__c)[ \t]*__CONCAT__(__c,l)[ \t]*$@#define INT32_C(__c) (__c)@",
4056 "-e", "s@^[ \t]*#[ \t]*define[ \t]*UINT32_C(__c)[ \t].*$@#define UINT32_C(__c) __CONCAT__(__c,u)@",
4059 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4061 * Description of Hpux_C99_Inttypes2 fix
4063 tSCC zHpux_C99_Inttypes2Name[] =
4064 "hpux_c99_inttypes2";
4067 * File name selection pattern
4069 tSCC zHpux_C99_Inttypes2List[] =
4070 "stdint-hpux11.h\0stdint.h\0";
4072 * Machine/OS name selection pattern
4074 tSCC* apzHpux_C99_Inttypes2Machs[] = {
4076 (const char*)NULL };
4077 #define HPUX_C99_INTTYPES2_TEST_CT 0
4078 #define aHpux_C99_Inttypes2Tests (tTestDesc*)NULL
4081 * Fix Command Arguments for Hpux_C99_Inttypes2
4083 static const char* apzHpux_C99_Inttypes2Patch[] = { sed_cmd_z,
4084 "-e", "s@^[ \t]*#[ \t]*define[ \t]*INT8_C(__c)[ \t]*((signed char)(__c))[ \t]*$@#define INT8_C(__c) (__c)@",
4085 "-e", "s@^[ \t]*#[ \t]*define[ \t]*UINT8_C(__c)[ \t]*((unsigned char)(__c))[ \t]*$@#define UINT8_C(__c) (__c)@",
4086 "-e", "s@^[ \t]*#[ \t]*define[ \t]*INT16_C(__c)[ \t]*((short)(__c))[ \t]*$@#define INT16_C(__c) (__c)@",
4087 "-e", "s@^[ \t]*#[ \t]*define[ \t]*UINT16_C(__c)[ \t]*((unsigned short)(__c))[ \t]*$@#define UINT16_C(__c) (__c)@",
4090 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4092 * Description of Hpux_Stdint_Least_Fast fix
4094 tSCC zHpux_Stdint_Least_FastName[] =
4095 "hpux_stdint_least_fast";
4098 * File name selection pattern
4100 tSCC zHpux_Stdint_Least_FastList[] =
4101 "stdint-hpux11.h\0stdint.h\0";
4103 * Machine/OS name selection pattern
4105 tSCC* apzHpux_Stdint_Least_FastMachs[] = {
4107 (const char*)NULL };
4110 * content selection pattern - do fix if pattern found
4112 tSCC zHpux_Stdint_Least_FastSelect0[] =
4113 "^[ \t]*#[ \t]*define[ \t]+UINT_(LEAST|FAST)64_MAX[ \t]+ULLONG_MAX";
4115 #define HPUX_STDINT_LEAST_FAST_TEST_CT 1
4116 static tTestDesc aHpux_Stdint_Least_FastTests[] = {
4117 { TT_EGREP, zHpux_Stdint_Least_FastSelect0, (regex_t*)NULL }, };
4120 * Fix Command Arguments for Hpux_Stdint_Least_Fast
4122 static const char* apzHpux_Stdint_Least_FastPatch[] = {
4124 "# define\tUINT_%164_MAX\t__UINT64_MAX__",
4127 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4129 * Description of Hpux_Inttype_Int8_T fix
4131 tSCC zHpux_Inttype_Int8_TName[] =
4132 "hpux_inttype_int8_t";
4135 * File name selection pattern
4137 tSCC zHpux_Inttype_Int8_TList[] =
4138 "sys/_inttypes.h\0";
4140 * Machine/OS name selection pattern
4142 tSCC* apzHpux_Inttype_Int8_TMachs[] = {
4144 (const char*)NULL };
4147 * content selection pattern - do fix if pattern found
4149 tSCC zHpux_Inttype_Int8_TSelect0[] =
4150 "^[ \t]*typedef[ \t]*char[ \t]*int(_least){0,1}8_t.*";
4152 #define HPUX_INTTYPE_INT8_T_TEST_CT 1
4153 static tTestDesc aHpux_Inttype_Int8_TTests[] = {
4154 { TT_EGREP, zHpux_Inttype_Int8_TSelect0, (regex_t*)NULL }, };
4157 * Fix Command Arguments for Hpux_Inttype_Int8_T
4159 static const char* apzHpux_Inttype_Int8_TPatch[] = {
4161 "typedef signed char int%18_t;",
4164 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4166 * Description of Hpux_Imaginary_I fix
4168 tSCC zHpux_Imaginary_IName[] =
4172 * File name selection pattern
4174 tSCC zHpux_Imaginary_IList[] =
4177 * Machine/OS name selection pattern
4179 tSCC* apzHpux_Imaginary_IMachs[] = {
4181 (const char*)NULL };
4184 * content selection pattern - do fix if pattern found
4186 tSCC zHpux_Imaginary_ISelect0[] =
4187 "^[ \t]*#[ \t]*define[ \t]*_Complex_I.*";
4189 #define HPUX_IMAGINARY_I_TEST_CT 1
4190 static tTestDesc aHpux_Imaginary_ITests[] = {
4191 { TT_EGREP, zHpux_Imaginary_ISelect0, (regex_t*)NULL }, };
4194 * Fix Command Arguments for Hpux_Imaginary_I
4196 static const char* apzHpux_Imaginary_IPatch[] = {
4198 "#define _Complex_I (__extension__ 1.0iF)",
4201 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4203 * Description of Huge_Val_Hex fix
4205 tSCC zHuge_Val_HexName[] =
4209 * File name selection pattern
4211 tSCC zHuge_Val_HexList[] =
4212 "bits/huge_val.h\0";
4214 * Machine/OS name selection pattern
4216 #define apzHuge_Val_HexMachs (const char**)NULL
4219 * content selection pattern - do fix if pattern found
4221 tSCC zHuge_Val_HexSelect0[] =
4222 "^#[ \t]*define[ \t]*HUGE_VAL[ \t].*0x1\\.0p.*";
4225 * content bypass pattern - skip fix if pattern found
4227 tSCC zHuge_Val_HexBypass0[] =
4228 "__builtin_huge_val";
4230 #define HUGE_VAL_HEX_TEST_CT 2
4231 static tTestDesc aHuge_Val_HexTests[] = {
4232 { TT_NEGREP, zHuge_Val_HexBypass0, (regex_t*)NULL },
4233 { TT_EGREP, zHuge_Val_HexSelect0, (regex_t*)NULL }, };
4236 * Fix Command Arguments for Huge_Val_Hex
4238 static const char* apzHuge_Val_HexPatch[] = {
4240 "#define HUGE_VAL (__builtin_huge_val())\n",
4243 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4245 * Description of Huge_Valf_Hex fix
4247 tSCC zHuge_Valf_HexName[] =
4251 * File name selection pattern
4253 tSCC zHuge_Valf_HexList[] =
4254 "bits/huge_val.h\0";
4256 * Machine/OS name selection pattern
4258 #define apzHuge_Valf_HexMachs (const char**)NULL
4261 * content selection pattern - do fix if pattern found
4263 tSCC zHuge_Valf_HexSelect0[] =
4264 "^#[ \t]*define[ \t]*HUGE_VALF[ \t].*0x1\\.0p.*";
4267 * content bypass pattern - skip fix if pattern found
4269 tSCC zHuge_Valf_HexBypass0[] =
4270 "__builtin_huge_valf";
4272 #define HUGE_VALF_HEX_TEST_CT 2
4273 static tTestDesc aHuge_Valf_HexTests[] = {
4274 { TT_NEGREP, zHuge_Valf_HexBypass0, (regex_t*)NULL },
4275 { TT_EGREP, zHuge_Valf_HexSelect0, (regex_t*)NULL }, };
4278 * Fix Command Arguments for Huge_Valf_Hex
4280 static const char* apzHuge_Valf_HexPatch[] = {
4282 "#define HUGE_VALF (__builtin_huge_valf())\n",
4285 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4287 * Description of Huge_Vall_Hex fix
4289 tSCC zHuge_Vall_HexName[] =
4293 * File name selection pattern
4295 tSCC zHuge_Vall_HexList[] =
4296 "bits/huge_val.h\0";
4298 * Machine/OS name selection pattern
4300 #define apzHuge_Vall_HexMachs (const char**)NULL
4303 * content selection pattern - do fix if pattern found
4305 tSCC zHuge_Vall_HexSelect0[] =
4306 "^#[ \t]*define[ \t]*HUGE_VALL[ \t].*0x1\\.0p.*";
4309 * content bypass pattern - skip fix if pattern found
4311 tSCC zHuge_Vall_HexBypass0[] =
4312 "__builtin_huge_vall";
4314 #define HUGE_VALL_HEX_TEST_CT 2
4315 static tTestDesc aHuge_Vall_HexTests[] = {
4316 { TT_NEGREP, zHuge_Vall_HexBypass0, (regex_t*)NULL },
4317 { TT_EGREP, zHuge_Vall_HexSelect0, (regex_t*)NULL }, };
4320 * Fix Command Arguments for Huge_Vall_Hex
4322 static const char* apzHuge_Vall_HexPatch[] = {
4324 "#define HUGE_VALL (__builtin_huge_vall())\n",
4327 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4329 * Description of Int_Abort_Free_And_Exit fix
4331 tSCC zInt_Abort_Free_And_ExitName[] =
4332 "int_abort_free_and_exit";
4335 * File name selection pattern
4337 tSCC zInt_Abort_Free_And_ExitList[] =
4340 * Machine/OS name selection pattern
4342 #define apzInt_Abort_Free_And_ExitMachs (const char**)NULL
4345 * content selection pattern - do fix if pattern found
4347 tSCC zInt_Abort_Free_And_ExitSelect0[] =
4348 "int[ \t]+(abort|free|exit)[ \t]*\\(";
4351 * content bypass pattern - skip fix if pattern found
4353 tSCC zInt_Abort_Free_And_ExitBypass0[] =
4354 "_CLASSIC_ANSI_TYPES";
4356 #define INT_ABORT_FREE_AND_EXIT_TEST_CT 2
4357 static tTestDesc aInt_Abort_Free_And_ExitTests[] = {
4358 { TT_NEGREP, zInt_Abort_Free_And_ExitBypass0, (regex_t*)NULL },
4359 { TT_EGREP, zInt_Abort_Free_And_ExitSelect0, (regex_t*)NULL }, };
4362 * Fix Command Arguments for Int_Abort_Free_And_Exit
4364 static const char* apzInt_Abort_Free_And_ExitPatch[] = {
4369 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4371 * Description of Io_Quotes_Def fix
4373 tSCC zIo_Quotes_DefName[] =
4377 * File name selection pattern
4379 #define zIo_Quotes_DefList (char*)NULL
4381 * Machine/OS name selection pattern
4383 #define apzIo_Quotes_DefMachs (const char**)NULL
4386 * content selection pattern - do fix if pattern found
4388 tSCC zIo_Quotes_DefSelect0[] =
4389 "define[ \t]+[A-Z0-9_]+IO[A-Z]*\\([a-zA-Z][,)]";
4391 #define IO_QUOTES_DEF_TEST_CT 1
4392 static tTestDesc aIo_Quotes_DefTests[] = {
4393 { TT_EGREP, zIo_Quotes_DefSelect0, (regex_t*)NULL }, };
4396 * Fix Command Arguments for Io_Quotes_Def
4398 static const char* apzIo_Quotes_DefPatch[] = {
4403 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4405 * Description of Io_Quotes_Use fix
4407 tSCC zIo_Quotes_UseName[] =
4411 * File name selection pattern
4413 #define zIo_Quotes_UseList (char*)NULL
4415 * Machine/OS name selection pattern
4417 #define apzIo_Quotes_UseMachs (const char**)NULL
4420 * content selection pattern - do fix if pattern found
4422 tSCC zIo_Quotes_UseSelect0[] =
4423 "define[ \t]+[A-Z0-9_]+[ \t]+[A-Z0-9_]+IO[A-Z]*[ \t]*\\( *[^,']";
4425 #define IO_QUOTES_USE_TEST_CT 1
4426 static tTestDesc aIo_Quotes_UseTests[] = {
4427 { TT_EGREP, zIo_Quotes_UseSelect0, (regex_t*)NULL }, };
4430 * Fix Command Arguments for Io_Quotes_Use
4432 static const char* apzIo_Quotes_UsePatch[] = {
4437 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4439 * Description of Ip_Missing_Semi fix
4441 tSCC zIp_Missing_SemiName[] =
4445 * File name selection pattern
4447 tSCC zIp_Missing_SemiList[] =
4450 * Machine/OS name selection pattern
4452 #define apzIp_Missing_SemiMachs (const char**)NULL
4455 * content selection pattern - do fix if pattern found
4457 tSCC zIp_Missing_SemiSelect0[] =
4460 #define IP_MISSING_SEMI_TEST_CT 1
4461 static tTestDesc aIp_Missing_SemiTests[] = {
4462 { TT_EGREP, zIp_Missing_SemiSelect0, (regex_t*)NULL }, };
4465 * Fix Command Arguments for Ip_Missing_Semi
4467 static const char* apzIp_Missing_SemiPatch[] = { sed_cmd_z,
4468 "-e", "/^struct/,/^};/s/}$/};/",
4471 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4473 * Description of Irix___Restrict fix
4475 tSCC zIrix___RestrictName[] =
4479 * File name selection pattern
4481 tSCC zIrix___RestrictList[] =
4482 "internal/sgimacros.h\0";
4484 * Machine/OS name selection pattern
4486 tSCC* apzIrix___RestrictMachs[] = {
4488 (const char*)NULL };
4491 * content selection pattern - do fix if pattern found
4493 tSCC zIrix___RestrictSelect0[] =
4495 )(#[ \t]*define __restrict restrict)";
4497 #define IRIX___RESTRICT_TEST_CT 1
4498 static tTestDesc aIrix___RestrictTests[] = {
4499 { TT_EGREP, zIrix___RestrictSelect0, (regex_t*)NULL }, };
4502 * Fix Command Arguments for Irix___Restrict
4504 static const char* apzIrix___RestrictPatch[] = {
4506 "%1# ifndef __cplusplus\n\
4511 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4513 * Description of Irix___Generic1 fix
4515 tSCC zIrix___Generic1Name[] =
4519 * File name selection pattern
4521 tSCC zIrix___Generic1List[] =
4522 "internal/math_core.h\0";
4524 * Machine/OS name selection pattern
4526 tSCC* apzIrix___Generic1Machs[] = {
4528 (const char*)NULL };
4531 * content selection pattern - do fix if pattern found
4533 tSCC zIrix___Generic1Select0[] =
4534 "#define ([a-z]+)\\(x\\) *__generic.*";
4536 #define IRIX___GENERIC1_TEST_CT 1
4537 static tTestDesc aIrix___Generic1Tests[] = {
4538 { TT_EGREP, zIrix___Generic1Select0, (regex_t*)NULL }, };
4541 * Fix Command Arguments for Irix___Generic1
4543 static const char* apzIrix___Generic1Patch[] = {
4545 "extern int %1(double);\n\
4546 extern int %1f(float);\n\
4547 extern int %1l(long double);\n\
4548 #define %1(x) (sizeof(x) == sizeof(double) ? _%1(x) \\\n\
4549 : sizeof(x) == sizeof(float) ? _%1f(x) \\\n\