OSDN Git Service

gcc:
[pf3gnuchains/gcc-fork.git] / fixincludes / fixincl.x
1 /*  -*- buffer-read-only: t -*- vi: set ro:
2  * 
3  * DO NOT EDIT THIS FILE   (fixincl.x)
4  * 
5  * It has been AutoGen-ed  Sunday October 29, 2006 at 04:32:11 PM UTC
6  * From the definitions    inclhack.def
7  * and the template file   fixincl
8  */
9 /* DO NOT CVS-MERGE THIS FILE, EITHER Sun Oct 29 16:32:11 UTC 2006
10  *
11  * You must regenerate it.  Use the ./genfixes script.
12  *
13  *
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.
17  *
18  * This file contains 201 fixup descriptions.
19  *
20  * See README for more information.
21  *
22  *  inclhack copyright (c) 1998, 1999, 2000, 2001
23  *  The Free Software Foundation, Inc.
24  *
25   *  inclhack is free software.
26  *  
27  *  You may redistribute it and/or modify it under the terms of the
28  *  GNU General Public License, as published by the Free Software
29  *  Foundation; either version 2 of the License, or (at your option)
30  *  any later version.
31  *  
32  *  inclhack is distributed in the hope that it will be useful,
33  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
34  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
35  *  See the GNU General Public License for more details.
36  *  
37  *  You should have received a copy of the GNU General Public License
38  *  along with inclhack.  If not, write to:
39  *      The Free Software Foundation, Inc.,
40  *      51 Franklin Street, Fifth Floor
41  *      Boston, MA  02110-1301, USA.
42  */
43
44 /* * * * * * * * * * * * * * * * * * * * * * * * * *
45  *
46  *  Description of Aab_Darwin7_9_Long_Double_Funcs fix
47  */
48 tSCC zAab_Darwin7_9_Long_Double_FuncsName[] =
49      "AAB_darwin7_9_long_double_funcs";
50
51 /*
52  *  File name selection pattern
53  */
54 tSCC zAab_Darwin7_9_Long_Double_FuncsList[] =
55   "|architecture/ppc/math.h|";
56 /*
57  *  Machine/OS name selection pattern
58  */
59 tSCC* apzAab_Darwin7_9_Long_Double_FuncsMachs[] = {
60         "*-*-darwin7.9*",
61         (const char*)NULL };
62
63 /*
64  *  content bypass pattern - skip fix if pattern found
65  */
66 tSCC zAab_Darwin7_9_Long_Double_FuncsBypass0[] =
67        "powl";
68
69 #define    AAB_DARWIN7_9_LONG_DOUBLE_FUNCS_TEST_CT  1
70 static tTestDesc aAab_Darwin7_9_Long_Double_FuncsTests[] = {
71   { TT_NEGREP,   zAab_Darwin7_9_Long_Double_FuncsBypass0, (regex_t*)NULL }, };
72
73 /*
74  *  Fix Command Arguments for Aab_Darwin7_9_Long_Double_Funcs
75  */
76 static const char* apzAab_Darwin7_9_Long_Double_FuncsPatch[] = {
77 "/* This file prototypes the long double functions available on Mac OS\n\
78    10.3.9.  */\n\
79 #ifndef __MATH__\n\
80 # undef __APPLE_CC__\n\
81 # define __APPLE_CC__  1345\n\
82 # include_next <architecture/ppc/math.h>\n\
83 # undef __APPLE_CC__\n\
84 # define __APPLE_CC__ 1\n\
85 # ifndef __LIBMLDBL_COMPAT\n\
86 #  ifdef __LONG_DOUBLE_128__\n\
87 #   define __LIBMLDBL_COMPAT(sym) __asm(\"_\" #sym \"$LDBL128\")\n\
88 #  else\n\
89 #   define __LIBMLDBL_COMPAT(sym)\n\
90 #  endif /* __LONG_DOUBLE_128__ */\n\
91 # endif /* __LIBMLDBL_COMPAT */\n\
92 # ifdef __cplusplus\n\
93    extern \"C\" {\n\
94 # endif\n\
95   extern long double acosl( long double ) __LIBMLDBL_COMPAT(acosl);\n\
96   extern long double asinl( long double ) __LIBMLDBL_COMPAT(asinl);\n\
97   extern long double atanl( long double ) __LIBMLDBL_COMPAT(atanl);\n\
98   extern long double atan2l( long double, long double ) __LIBMLDBL_COMPAT(atan2l);\n\
99   extern long double cosl( long double ) __LIBMLDBL_COMPAT(cosl);\n\
100   extern long double sinl( long double ) __LIBMLDBL_COMPAT(sinl);\n\
101   extern long double tanl( long double ) __LIBMLDBL_COMPAT(tanl);\n\
102   extern long double acoshl( long double ) __LIBMLDBL_COMPAT(acoshl);\n\
103   extern long double asinhl( long double ) __LIBMLDBL_COMPAT(asinhl);\n\
104   extern long double atanhl( long double ) __LIBMLDBL_COMPAT(atanhl);\n\
105   extern long double coshl( long double ) __LIBMLDBL_COMPAT(coshl);\n\
106   extern long double sinhl( long double ) __LIBMLDBL_COMPAT(sinhl);\n\
107   extern long double tanhl( long double ) __LIBMLDBL_COMPAT(tanhl);\n\
108   extern long double expl( long double ) __LIBMLDBL_COMPAT(expl);\n\
109   extern long double exp2l( long double ) __LIBMLDBL_COMPAT(exp2l);\n\
110   extern long double expm1l( long double ) __LIBMLDBL_COMPAT(expm1l);\n\
111   extern long double logl( long double ) __LIBMLDBL_COMPAT(logl);\n\
112   extern long double log10l( long double ) __LIBMLDBL_COMPAT(log10l);\n\
113   extern long double log2l( long double ) __LIBMLDBL_COMPAT(log2l);\n\
114   extern long double log1pl( long double ) __LIBMLDBL_COMPAT(log1pl);\n\
115   extern long double logbl( long double ) __LIBMLDBL_COMPAT(logbl);\n\
116   extern long double modfl( long double, long double * ) __LIBMLDBL_COMPAT(modfl);\n\
117   extern long double ldexpl( long double, int ) __LIBMLDBL_COMPAT(ldexpl);\n\
118   extern long double frexpl( long double, int * ) __LIBMLDBL_COMPAT(frexpl);\n\
119   extern int ilogbl( long double ) __LIBMLDBL_COMPAT(ilogbl);\n\
120   extern long double scalbnl( long double, int ) __LIBMLDBL_COMPAT(scalbnl);\n\
121   extern long double scalblnl( long double, long int ) __LIBMLDBL_COMPAT(scalblnl);\n\
122   extern long double fabsl( long double ) __LIBMLDBL_COMPAT(fabsl);\n\
123   extern long double cbrtl( long double ) __LIBMLDBL_COMPAT(cbrtl);\n\
124   extern long double hypotl( long double, long double ) __LIBMLDBL_COMPAT(hypotl);\n\
125   extern long double powl( long double, long double ) __LIBMLDBL_COMPAT(powl);\n\
126   extern long double sqrtl( long double ) __LIBMLDBL_COMPAT(sqrtl);\n\
127   extern long double erfl( long double ) __LIBMLDBL_COMPAT(erfl);\n\
128   extern long double erfcl( long double ) __LIBMLDBL_COMPAT(erfcl);\n\
129   extern long double lgammal( long double ) __LIBMLDBL_COMPAT(lgammal);\n\
130   extern long double tgammal( long double ) __LIBMLDBL_COMPAT(tgammal);\n\
131   extern long double ceill( long double ) __LIBMLDBL_COMPAT(ceill);\n\
132   extern long double floorl( long double ) __LIBMLDBL_COMPAT(floorl);\n\
133   extern long double nearbyintl( long double ) __LIBMLDBL_COMPAT(nearbyintl);\n\
134   extern long double rintl( long double ) __LIBMLDBL_COMPAT(rintl);\n\
135   extern long int lrintl( long double ) __LIBMLDBL_COMPAT(lrintl);\n\
136   extern long long int llrintl( long double ) __LIBMLDBL_COMPAT(llrintl);\n\
137   extern long double roundl( long double ) __LIBMLDBL_COMPAT(roundl);\n\
138   extern long int lroundl( long double ) __LIBMLDBL_COMPAT(lroundl);\n\
139   extern long long int llroundl( long double ) __LIBMLDBL_COMPAT(llroundl);\n\
140   extern long double truncl( long double ) __LIBMLDBL_COMPAT(truncl);\n\
141   extern long double fmodl( long double, long double) __LIBMLDBL_COMPAT(fmodl);\n\
142   extern long double remainderl( long double, long double ) __LIBMLDBL_COMPAT(remainderl);\n\
143   extern long double remquol( long double, long double, int * ) __LIBMLDBL_COMPAT(remquol);\n\
144   extern long double copysignl( long double, long double ) __LIBMLDBL_COMPAT(copysignl);\n\
145   extern long double nanl( const char * ) __LIBMLDBL_COMPAT(nanl);\n\
146   extern long double nextafterl( long double, long double ) __LIBMLDBL_COMPAT(nextafterl);\n\
147   extern long double nexttowardl( long double, long double ) __LIBMLDBL_COMPAT(nexttowardl);\n\
148   extern long double fdiml( long double, long double ) __LIBMLDBL_COMPAT(fdiml);\n\
149   extern long double fmaxl( long double, long double ) __LIBMLDBL_COMPAT(fmaxl);\n\
150   extern long double fminl( long double, long double ) __LIBMLDBL_COMPAT(fminl);\n\
151   extern long double fmal( long double, long double, long double ) __LIBMLDBL_COMPAT(fmal);\n\
152 # ifdef __cplusplus\n\
153    }\n\
154 # endif\n\
155 #endif /* __MATH__ */",
156     (char*)NULL };
157
158 /* * * * * * * * * * * * * * * * * * * * * * * * * *
159  *
160  *  Description of Aab_Darwin7_9_Long_Double_Funcs_2 fix
161  */
162 tSCC zAab_Darwin7_9_Long_Double_Funcs_2Name[] =
163      "AAB_darwin7_9_long_double_funcs_2";
164
165 /*
166  *  File name selection pattern
167  */
168 tSCC zAab_Darwin7_9_Long_Double_Funcs_2List[] =
169   "|math.h|";
170 /*
171  *  Machine/OS name selection pattern
172  */
173 tSCC* apzAab_Darwin7_9_Long_Double_Funcs_2Machs[] = {
174         "*-*-darwin7.9*",
175         (const char*)NULL };
176
177 /*
178  *  content selection pattern - do fix if pattern found
179  */
180 tSCC zAab_Darwin7_9_Long_Double_Funcs_2Select0[] =
181        "#include[ \\t]+\\\"";
182
183 #define    AAB_DARWIN7_9_LONG_DOUBLE_FUNCS_2_TEST_CT  1
184 static tTestDesc aAab_Darwin7_9_Long_Double_Funcs_2Tests[] = {
185   { TT_EGREP,    zAab_Darwin7_9_Long_Double_Funcs_2Select0, (regex_t*)NULL }, };
186
187 /*
188  *  Fix Command Arguments for Aab_Darwin7_9_Long_Double_Funcs_2
189  */
190 static const char* apzAab_Darwin7_9_Long_Double_Funcs_2Patch[] = {
191     "format",
192     "%1<%2.h>",
193     "([ \\t]*#[ \\t]*include[ \\t]+)\"([a-z0-9/]+)\\.h\"",
194     (char*)NULL };
195
196 /* * * * * * * * * * * * * * * * * * * * * * * * * *
197  *
198  *  Description of Aab_Fd_Zero_Asm_Posix_Types_H fix
199  */
200 tSCC zAab_Fd_Zero_Asm_Posix_Types_HName[] =
201      "AAB_fd_zero_asm_posix_types_h";
202
203 /*
204  *  File name selection pattern
205  */
206 tSCC zAab_Fd_Zero_Asm_Posix_Types_HList[] =
207   "|asm/posix_types.h|";
208 /*
209  *  Machine/OS name selection pattern
210  */
211 tSCC* apzAab_Fd_Zero_Asm_Posix_Types_HMachs[] = {
212         "i[34567]86-*-linux*",
213         (const char*)NULL };
214
215 /*
216  *  content bypass pattern - skip fix if pattern found
217  */
218 tSCC zAab_Fd_Zero_Asm_Posix_Types_HBypass0[] =
219        "} while";
220 tSCC zAab_Fd_Zero_Asm_Posix_Types_HBypass1[] =
221        "x86_64";
222
223 #define    AAB_FD_ZERO_ASM_POSIX_TYPES_H_TEST_CT  2
224 static tTestDesc aAab_Fd_Zero_Asm_Posix_Types_HTests[] = {
225   { TT_NEGREP,   zAab_Fd_Zero_Asm_Posix_Types_HBypass0, (regex_t*)NULL },
226   { TT_NEGREP,   zAab_Fd_Zero_Asm_Posix_Types_HBypass1, (regex_t*)NULL }, };
227
228 /*
229  *  Fix Command Arguments for Aab_Fd_Zero_Asm_Posix_Types_H
230  */
231 static const char* apzAab_Fd_Zero_Asm_Posix_Types_HPatch[] = {
232 "/* This file fixes a bug in the __FD_ZERO macro\n\
233    for older versions of the Linux kernel. */\n\
234 #ifndef _POSIX_TYPES_H_WRAPPER\n\
235 #include <features.h>\n\
236  #include_next <asm/posix_types.h>\n\n\
237 #if defined(__FD_ZERO) && !defined(__GLIBC__)\n\
238 #undef __FD_ZERO\n\
239 #define __FD_ZERO(fdsetp) \\\n\
240   do { \\\n\
241     int __d0, __d1; \\\n\
242 __asm__ __volatile__(\"cld ; rep ; stosl\" \\\n\
243 : \"=&c\" (__d0), \"=&D\" (__d1) \\\n\
244 : \"a\" (0), \"0\" (__FDSET_LONGS), \\\n\
245   \"1\" ((__kernel_fd_set *) (fdsetp)) :\"memory\"); \\\n\
246   } while (0)\n\
247 #endif\n\n\
248 #define _POSIX_TYPES_H_WRAPPER\n\
249 #endif /* _POSIX_TYPES_H_WRAPPER */",
250     (char*)NULL };
251
252 /* * * * * * * * * * * * * * * * * * * * * * * * * *
253  *
254  *  Description of Aab_Fd_Zero_Gnu_Types_H fix
255  */
256 tSCC zAab_Fd_Zero_Gnu_Types_HName[] =
257      "AAB_fd_zero_gnu_types_h";
258
259 /*
260  *  File name selection pattern
261  */
262 tSCC zAab_Fd_Zero_Gnu_Types_HList[] =
263   "|gnu/types.h|";
264 /*
265  *  Machine/OS name selection pattern
266  */
267 tSCC* apzAab_Fd_Zero_Gnu_Types_HMachs[] = {
268         "i[34567]86-*-linux*",
269         (const char*)NULL };
270 #define AAB_FD_ZERO_GNU_TYPES_H_TEST_CT  0
271 #define aAab_Fd_Zero_Gnu_Types_HTests   (tTestDesc*)NULL
272
273 /*
274  *  Fix Command Arguments for Aab_Fd_Zero_Gnu_Types_H
275  */
276 static const char* apzAab_Fd_Zero_Gnu_Types_HPatch[] = {
277 "/* This file fixes a bug in the __FD_ZERO macro present in glibc 1.x. */\n\
278 #ifndef _TYPES_H_WRAPPER\n\
279 #include <features.h>\n\
280 #include_next <gnu/types.h>\n\n\
281 #if defined(__FD_ZERO) && !defined(__GLIBC__)\n\
282 #undef __FD_ZERO\n\
283 # define __FD_ZERO(fdsetp) \\\n\
284   do { \\\n\
285     int __d0, __d1; \\\n\
286         __asm__ __volatile__(\"cld ; rep ; stosl\" \\\n\
287         : \"=&c\" (__d0), \"=&D\" (__d1) \\\n\
288         : \"a\" (0), \"0\" (__FDSET_LONGS), \\\n\
289           \"1\" ((__fd_set *) (fdsetp)) :\"memory\"); \\\n\
290   } while (0)\n\
291 #endif\n\n\
292 #define _TYPES_H_WRAPPER\n\
293 #endif /* _TYPES_H_WRAPPER */",
294     (char*)NULL };
295
296 /* * * * * * * * * * * * * * * * * * * * * * * * * *
297  *
298  *  Description of Aab_Fd_Zero_Selectbits_H fix
299  */
300 tSCC zAab_Fd_Zero_Selectbits_HName[] =
301      "AAB_fd_zero_selectbits_h";
302
303 /*
304  *  File name selection pattern
305  */
306 tSCC zAab_Fd_Zero_Selectbits_HList[] =
307   "|selectbits.h|";
308 /*
309  *  Machine/OS name selection pattern
310  */
311 tSCC* apzAab_Fd_Zero_Selectbits_HMachs[] = {
312         "i[34567]86-*-linux*",
313         (const char*)NULL };
314 #define AAB_FD_ZERO_SELECTBITS_H_TEST_CT  0
315 #define aAab_Fd_Zero_Selectbits_HTests   (tTestDesc*)NULL
316
317 /*
318  *  Fix Command Arguments for Aab_Fd_Zero_Selectbits_H
319  */
320 static const char* apzAab_Fd_Zero_Selectbits_HPatch[] = {
321 "/* This file fixes a bug in the __FD_ZERO macro present in glibc 2.0.x. */\n\
322 #ifndef _SELECTBITS_H_WRAPPER\n\
323   #include <features.h>\n\
324   #include_next <selectbits.h>\n\n\
325   #if defined(__FD_ZERO) && defined(__GLIBC__) \\\\\n\
326   && defined(__GLIBC_MINOR__) && __GLIBC__ == 2 \\\\\n\
327   && __GLIBC_MINOR__ == 0\n\
328      #undef __FD_ZERO\n\
329      #define __FD_ZERO(fdsetp) \\\\\n\
330      do { \\\\\n\
331         int __d0, __d1; \\\\\n\
332       __asm__ __volatile__ (\"cld; rep; stosl\" \\\\\n\
333                         : \"=&c\" (__d0), \"=&D\" (__d1) \\\\\n\
334                         : \"a\" (0), \"0\" (sizeof (__fd_set) \\\\\n\
335                                         / sizeof (__fd_mask)), \\\\\n\
336                           \"1\" ((__fd_mask *) (fdsetp)) \\\\\n\
337                         : \"memory\"); \\\\\n\
338       } while (0)\n\
339   #endif\n\n\
340   #define _SELECTBITS_H_WRAPPER\n\
341 #endif /* _SELECTBITS_H_WRAPPER */",
342     (char*)NULL };
343
344 /* * * * * * * * * * * * * * * * * * * * * * * * * *
345  *
346  *  Description of Aab_Solaris_Sys_Varargs_H fix
347  */
348 tSCC zAab_Solaris_Sys_Varargs_HName[] =
349      "AAB_solaris_sys_varargs_h";
350
351 /*
352  *  File name selection pattern
353  */
354 tSCC zAab_Solaris_Sys_Varargs_HList[] =
355   "|sys/varargs.h|";
356 /*
357  *  Machine/OS name selection pattern
358  */
359 tSCC* apzAab_Solaris_Sys_Varargs_HMachs[] = {
360         "*-*-solaris*",
361         (const char*)NULL };
362 #define AAB_SOLARIS_SYS_VARARGS_H_TEST_CT  0
363 #define aAab_Solaris_Sys_Varargs_HTests   (tTestDesc*)NULL
364
365 /*
366  *  Fix Command Arguments for Aab_Solaris_Sys_Varargs_H
367  */
368 static const char* apzAab_Solaris_Sys_Varargs_HPatch[] = {
369 "#ifdef __STDC__\n\
370   #include <stdarg.h>\n\
371 #else\n\
372   #include <varargs.h>\n\
373 #endif",
374     (char*)NULL };
375
376 /* * * * * * * * * * * * * * * * * * * * * * * * * *
377  *
378  *  Description of Aab_Sun_Memcpy fix
379  */
380 tSCC zAab_Sun_MemcpyName[] =
381      "AAB_sun_memcpy";
382
383 /*
384  *  File name selection pattern
385  */
386 tSCC zAab_Sun_MemcpyList[] =
387   "|memory.h|";
388 /*
389  *  Machine/OS name selection pattern
390  */
391 #define apzAab_Sun_MemcpyMachs (const char**)NULL
392
393 /*
394  *  content selection pattern - do fix if pattern found
395  */
396 tSCC zAab_Sun_MemcpySelect0[] =
397        "/\\*\t@\\(#\\)(head/memory.h\t50.1\t |memory\\.h 1\\.[2-4] 8./../.. SMI; from S5R2 1\\.2\t)\\*/";
398
399 #define    AAB_SUN_MEMCPY_TEST_CT  1
400 static tTestDesc aAab_Sun_MemcpyTests[] = {
401   { TT_EGREP,    zAab_Sun_MemcpySelect0, (regex_t*)NULL }, };
402
403 /*
404  *  Fix Command Arguments for Aab_Sun_Memcpy
405  */
406 static const char* apzAab_Sun_MemcpyPatch[] = {
407 "/* This file was generated by fixincludes */\n\
408 #ifndef __memory_h__\n\
409   #define __memory_h__\n\n\
410   #ifdef __STDC__\n\
411     extern void *memccpy();\n\
412     extern void *memchr();\n\
413     extern void *memcpy();\n\
414     extern void *memset();\n\
415   #else\n\
416     extern char *memccpy();\n\
417     extern char *memchr();\n\
418     extern char *memcpy();\n\
419     extern char *memset();\n\
420   #endif /* __STDC__ */\n\n\
421   extern int memcmp();\n\n\
422 #endif /* __memory_h__ */\n\
423 _EndOfHeader;\n\
424 };\n\n\n\
425 /*\n\
426  *  Completely replace <sys/varargs.h> with a file that includes gcc's\n\
427  *  stdarg.h or varargs.h files as appropriate.\n\
428  */\n\
429 #ifdef SVR4\n\
430 fix = {\n\
431     hackname = AAB_svr4_no_varargs;\n\
432     files    = sys/varargs.h;\n\
433     replace  = \"/* This file was generated by fixincludes.  */\\n\"\n\
434                \"#ifndef _SYS_VARARGS_H\\n\"\n\
435                \"#define _SYS_VARARGS_H\\n\\n\"\n\n\
436                \"#ifdef __STDC__\\n\"\n\
437                \"#include <stdarg.h>\\n\"\n\
438                \"#else\\n\"\n\
439                \"#include <varargs.h>\\n\"\n\
440                \"#endif\\n\\n\"\n\n\
441                \"#endif  /* _SYS_VARARGS_H */\\n\";\n\
442 };\n\
443 #endif\n\n\n\
444 /*\n\
445  *  Completely replace <sys/byteorder.h> with a file that implements gcc's\n\
446  *  optimized byteswapping.  (The original probably implemented some\n\
447  *  incompatible optimized byteswapping.)\n\
448  */\n\
449 fix = {\n\
450     hackname = AAB_svr4_replace_byteorder;\n\
451     mach     = \"*-*-sysv4*\";\n\
452     mach     = \"i[34567]86-*-sysv5*\";\n\
453     mach     = \"i[34567]86-*-sco3.2v5*\";\n\
454     mach     = \"i[34567]86-*-udk*\";\n\
455     mach     = \"i[34567]86-*-solaris2.[0-4]\";\n\
456     mach     = \"powerpcle-*-solaris2.[0-4]\";\n\
457     mach     = \"sparc-*-solaris2.[0-4]\";\n\
458     mach     = \"i[34567]86-sequent-ptx*\";\n\
459     files    = sys/byteorder.h;\n\
460     replace  = <<-  _EndOfHeader_\n\
461 #ifndef _SYS_BYTEORDER_H\n\
462 #define _SYS_BYTEORDER_H\n\n\
463 /* Functions to convert `short' and `long' quantities from host byte order\n\
464    to (internet) network byte order (i.e. big-endian).\n\n\
465    Written by Ron Guilmette (rfg@ncd.com).\n\n\
466    This isn't actually used by GCC.  It is installed by fixinc.svr4.\n\n\
467    For big-endian machines these functions are essentially no-ops.\n\n\
468    For little-endian machines, we define the functions using specialized\n\
469    asm sequences in cases where doing so yields better code (e.g. i386).  */\n\n\
470 #if !defined (__GNUC__) && !defined (__GNUG__)\n\
471   #error You lose!  This file is only useful with GNU compilers.\n\
472 #endif\n\n\
473 #ifndef __BYTE_ORDER__\n\
474   /* Byte order defines.  These are as defined on UnixWare 1.1, but with\n\
475      double underscores added at the front and back.  */\n\
476   #define __LITTLE_ENDIAN__   1234\n\
477   #define __BIG_ENDIAN__      4321\n\
478   #define __PDP_ENDIAN__      3412\n\
479 #endif\n\n\
480 #ifdef __STDC__\n\
481   static __inline__ unsigned long htonl (unsigned long);\n\
482   static __inline__ unsigned short htons (unsigned int);\n\
483   static __inline__ unsigned long ntohl (unsigned long);\n\
484   static __inline__ unsigned short ntohs (unsigned int);\n\
485 #endif /* defined (__STDC__) */\n\n\
486 #if defined (__i386__)\n\n\
487   #ifndef __BYTE_ORDER__\n\
488     #define __BYTE_ORDER__ __LITTLE_ENDIAN__\n\
489   #endif\n\n\
490   /* Convert a host long to a network long.  */\n\n\
491   /* We must use a new-style function definition, so that this will also\n\
492      be valid for C++.  */\n\
493   static __inline__ unsigned long\n\
494   htonl (unsigned long __arg)\n\
495   {\n\
496     register unsigned long __result;\n\n\
497     __asm__ (\"xchg%B0 %b0,%h0\n\
498   ror%L0 $16,%0\n\
499   xchg%B0 %b0,%h0\" : \"=q\" (__result) : \"0\" (__arg));\n\
500     return __result;\n\
501   }\n\n\
502   /* Convert a host short to a network short.  */\n\n\
503   static __inline__ unsigned short\n\
504   htons (unsigned int __arg)\n\
505   {\n\
506     register unsigned short __result;\n\n\
507     __asm__ (\"xchg%B0 %b0,%h0\" : \"=q\" (__result) : \"0\" (__arg));\n\
508     return __result;\n\
509   }\n\n\
510 #elif (defined (__ns32k__) || defined (__vax__) || defined (__arm__))\n\n\
511   #ifndef __BYTE_ORDER__\n\
512     #define __BYTE_ORDER__ __LITTLE_ENDIAN__\n\
513   #endif\n\n\
514   /* For other little-endian machines, using C code is just as efficient as\n\
515      using assembly code.  */\n\n\
516   /* Convert a host long to a network long.  */\n\n\
517   static __inline__ unsigned long\n\
518   htonl (unsigned long __arg)\n\
519   {\n\
520     register unsigned long __result;\n\n\
521     __result = (__arg >> 24) & 0x000000ff;\n\
522     __result |= (__arg >> 8) & 0x0000ff00;\n\
523     __result |= (__arg << 8) & 0x00ff0000;\n\
524     __result |= (__arg << 24) & 0xff000000;\n\
525     return __result;\n\
526   }\n\n\
527   /* Convert a host short to a network short.  */\n\n\
528   static __inline__ unsigned short\n\
529   htons (unsigned int __arg)\n\
530   {\n\
531     register unsigned short __result;\n\n\
532     __result = (__arg << 8) & 0xff00;\n\
533     __result |= (__arg >> 8) & 0x00ff;\n\
534     return __result;\n\
535   }\n\n\
536 #else /* must be a big-endian machine */\n\n\
537   #ifndef __BYTE_ORDER__\n\
538     #define __BYTE_ORDER__ __BIG_ENDIAN__\n\
539   #endif\n\n\
540   /* Convert a host long to a network long.  */\n\n\
541   static __inline__ unsigned long\n\
542   htonl (unsigned long __arg)\n\
543   {\n\
544     return __arg;\n\
545   }\n\n\
546   /* Convert a host short to a network short.  */\n\n\
547   static __inline__ unsigned short\n\
548   htons (unsigned int __arg)\n\
549   {\n\
550     return __arg;\n\
551   }\n\n\
552 #endif /* big-endian */\n\n\
553 /* Convert a network long to a host long.  */\n\n\
554 static __inline__ unsigned long\n\
555 ntohl (unsigned long __arg)\n\
556 {\n\
557   return htonl (__arg);\n\
558 }\n\n\
559 /* Convert a network short to a host short.  */\n\n\
560 static __inline__ unsigned short\n\
561 ntohs (unsigned int __arg)\n\
562 {\n\
563   return htons (__arg);\n\
564 }\n\
565 #endif",
566     (char*)NULL };
567
568 /* * * * * * * * * * * * * * * * * * * * * * * * * *
569  *
570  *  Description of Aab_Ultrix_Ansi_Compat fix
571  */
572 tSCC zAab_Ultrix_Ansi_CompatName[] =
573      "AAB_ultrix_ansi_compat";
574
575 /*
576  *  File name selection pattern
577  */
578 tSCC zAab_Ultrix_Ansi_CompatList[] =
579   "|ansi_compat.h|";
580 /*
581  *  Machine/OS name selection pattern
582  */
583 #define apzAab_Ultrix_Ansi_CompatMachs (const char**)NULL
584
585 /*
586  *  content selection pattern - do fix if pattern found
587  */
588 tSCC zAab_Ultrix_Ansi_CompatSelect0[] =
589        "ULTRIX";
590
591 #define    AAB_ULTRIX_ANSI_COMPAT_TEST_CT  1
592 static tTestDesc aAab_Ultrix_Ansi_CompatTests[] = {
593   { TT_EGREP,    zAab_Ultrix_Ansi_CompatSelect0, (regex_t*)NULL }, };
594
595 /*
596  *  Fix Command Arguments for Aab_Ultrix_Ansi_Compat
597  */
598 static const char* apzAab_Ultrix_Ansi_CompatPatch[] = {
599 "/* This file intentionally left blank.  */\n",
600     (char*)NULL };
601
602 /* * * * * * * * * * * * * * * * * * * * * * * * * *
603  *
604  *  Description of Aab_Ultrix_Limits fix
605  */
606 tSCC zAab_Ultrix_LimitsName[] =
607      "AAB_ultrix_limits";
608
609 /*
610  *  File name selection pattern
611  */
612 tSCC zAab_Ultrix_LimitsList[] =
613   "|limits.h|";
614 /*
615  *  Machine/OS name selection pattern
616  */
617 tSCC* apzAab_Ultrix_LimitsMachs[] = {
618         "*-*-ultrix4.3",
619         (const char*)NULL };
620 #define AAB_ULTRIX_LIMITS_TEST_CT  0
621 #define aAab_Ultrix_LimitsTests   (tTestDesc*)NULL
622
623 /*
624  *  Fix Command Arguments for Aab_Ultrix_Limits
625  */
626 static const char* apzAab_Ultrix_LimitsPatch[] = {
627 "#ifndef _LIMITS_INCLUDED\n\
628   #define _LIMITS_INCLUDED\n\
629   #include <sys/limits.h>\n\
630 #endif /* _LIMITS_INCLUDED */",
631     (char*)NULL };
632
633 /* * * * * * * * * * * * * * * * * * * * * * * * * *
634  *
635  *  Description of Aab_Ultrix_Memory fix
636  */
637 tSCC zAab_Ultrix_MemoryName[] =
638      "AAB_ultrix_memory";
639
640 /*
641  *  File name selection pattern
642  */
643 tSCC zAab_Ultrix_MemoryList[] =
644   "|memory.h|";
645 /*
646  *  Machine/OS name selection pattern
647  */
648 tSCC* apzAab_Ultrix_MemoryMachs[] = {
649         "*-*-ultrix4.3",
650         (const char*)NULL };
651 #define AAB_ULTRIX_MEMORY_TEST_CT  0
652 #define aAab_Ultrix_MemoryTests   (tTestDesc*)NULL
653
654 /*
655  *  Fix Command Arguments for Aab_Ultrix_Memory
656  */
657 static const char* apzAab_Ultrix_MemoryPatch[] = {
658 "#ifndef _MEMORY_INCLUDED\n\
659   #define _MEMORY_INCLUDED\n\
660   #include <strings.h>\n\
661 #endif /* _MEMORY_INCLUDED */",
662     (char*)NULL };
663
664 /* * * * * * * * * * * * * * * * * * * * * * * * * *
665  *
666  *  Description of Aab_Ultrix_String fix
667  */
668 tSCC zAab_Ultrix_StringName[] =
669      "AAB_ultrix_string";
670
671 /*
672  *  File name selection pattern
673  */
674 tSCC zAab_Ultrix_StringList[] =
675   "|string.h|";
676 /*
677  *  Machine/OS name selection pattern
678  */
679 tSCC* apzAab_Ultrix_StringMachs[] = {
680         "*-*-ultrix4.3",
681         (const char*)NULL };
682 #define AAB_ULTRIX_STRING_TEST_CT  0
683 #define aAab_Ultrix_StringTests   (tTestDesc*)NULL
684
685 /*
686  *  Fix Command Arguments for Aab_Ultrix_String
687  */
688 static const char* apzAab_Ultrix_StringPatch[] = {
689 "#ifndef _STRING_INCLUDED\n\
690   #define _STRING_INCLUDED\n\
691   #include <strings.h>\n\
692 #endif /* _STRING_INCLUDED */",
693     (char*)NULL };
694
695 /* * * * * * * * * * * * * * * * * * * * * * * * * *
696  *
697  *  Description of Aix_Pthread fix
698  */
699 tSCC zAix_PthreadName[] =
700      "aix_pthread";
701
702 /*
703  *  File name selection pattern
704  */
705 tSCC zAix_PthreadList[] =
706   "|pthread.h|";
707 /*
708  *  Machine/OS name selection pattern
709  */
710 #define apzAix_PthreadMachs (const char**)NULL
711
712 /*
713  *  content selection pattern - do fix if pattern found
714  */
715 tSCC zAix_PthreadSelect0[] =
716        "(#define [A-Za-z_0-9]+)(\\\\\n\
717 [^A-Za-z_0-9 \t\n\
718 (])";
719
720 #define    AIX_PTHREAD_TEST_CT  1
721 static tTestDesc aAix_PthreadTests[] = {
722   { TT_EGREP,    zAix_PthreadSelect0, (regex_t*)NULL }, };
723
724 /*
725  *  Fix Command Arguments for Aix_Pthread
726  */
727 static const char* apzAix_PthreadPatch[] = {
728     "format",
729     "%1 %2",
730     (char*)NULL };
731
732 /* * * * * * * * * * * * * * * * * * * * * * * * * *
733  *
734  *  Description of Aix_Sysmachine fix
735  */
736 tSCC zAix_SysmachineName[] =
737      "aix_sysmachine";
738
739 /*
740  *  File name selection pattern
741  */
742 tSCC zAix_SysmachineList[] =
743   "|sys/machine.h|";
744 /*
745  *  Machine/OS name selection pattern
746  */
747 #define apzAix_SysmachineMachs (const char**)NULL
748
749 /*
750  *  content selection pattern - do fix if pattern found
751  */
752 tSCC zAix_SysmachineSelect0[] =
753        "\\\\ +\n";
754
755 #define    AIX_SYSMACHINE_TEST_CT  1
756 static tTestDesc aAix_SysmachineTests[] = {
757   { TT_EGREP,    zAix_SysmachineSelect0, (regex_t*)NULL }, };
758
759 /*
760  *  Fix Command Arguments for Aix_Sysmachine
761  */
762 static const char* apzAix_SysmachinePatch[] = {
763     "format",
764     "\\\n",
765     (char*)NULL };
766
767 /* * * * * * * * * * * * * * * * * * * * * * * * * *
768  *
769  *  Description of Aix_Syswait fix
770  */
771 tSCC zAix_SyswaitName[] =
772      "aix_syswait";
773
774 /*
775  *  File name selection pattern
776  */
777 tSCC zAix_SyswaitList[] =
778   "|sys/wait.h|";
779 /*
780  *  Machine/OS name selection pattern
781  */
782 #define apzAix_SyswaitMachs (const char**)NULL
783
784 /*
785  *  content selection pattern - do fix if pattern found
786  */
787 tSCC zAix_SyswaitSelect0[] =
788        "^extern pid_t wait3\\(\\);\n";
789 tSCC zAix_SyswaitSelect1[] =
790        "bos325,";
791
792 #define    AIX_SYSWAIT_TEST_CT  2
793 static tTestDesc aAix_SyswaitTests[] = {
794   { TT_EGREP,    zAix_SyswaitSelect0, (regex_t*)NULL },
795   { TT_EGREP,    zAix_SyswaitSelect1, (regex_t*)NULL }, };
796
797 /*
798  *  Fix Command Arguments for Aix_Syswait
799  */
800 static const char* apzAix_SyswaitPatch[] = {
801     "format",
802     "struct rusage;\n\
803 %0",
804     (char*)NULL };
805
806 /* * * * * * * * * * * * * * * * * * * * * * * * * *
807  *
808  *  Description of Aix_Syswait_2 fix
809  */
810 tSCC zAix_Syswait_2Name[] =
811      "aix_syswait_2";
812
813 /*
814  *  File name selection pattern
815  */
816 tSCC zAix_Syswait_2List[] =
817   "|sys/wait.h|";
818 /*
819  *  Machine/OS name selection pattern
820  */
821 #define apzAix_Syswait_2Machs (const char**)NULL
822
823 /*
824  *  content selection pattern - do fix if pattern found
825  */
826 tSCC zAix_Syswait_2Select0[] =
827        "\\? (\\(\\(\\(\\(unsigned[^)]*\\)[^)]*\\) >> [^)]*\\) \\& 0xff\\) : -1)";
828
829 #define    AIX_SYSWAIT_2_TEST_CT  1
830 static tTestDesc aAix_Syswait_2Tests[] = {
831   { TT_EGREP,    zAix_Syswait_2Select0, (regex_t*)NULL }, };
832
833 /*
834  *  Fix Command Arguments for Aix_Syswait_2
835  */
836 static const char* apzAix_Syswait_2Patch[] = {
837     "format",
838     "? (int)%1",
839     (char*)NULL };
840
841 /* * * * * * * * * * * * * * * * * * * * * * * * * *
842  *
843  *  Description of Aix_Volatile fix
844  */
845 tSCC zAix_VolatileName[] =
846      "aix_volatile";
847
848 /*
849  *  File name selection pattern
850  */
851 tSCC zAix_VolatileList[] =
852   "|sys/signal.h|";
853 /*
854  *  Machine/OS name selection pattern
855  */
856 #define apzAix_VolatileMachs (const char**)NULL
857
858 /*
859  *  content selection pattern - do fix if pattern found
860  */
861 tSCC zAix_VolatileSelect0[] =
862        "typedef volatile int sig_atomic_t";
863
864 #define    AIX_VOLATILE_TEST_CT  1
865 static tTestDesc aAix_VolatileTests[] = {
866   { TT_EGREP,    zAix_VolatileSelect0, (regex_t*)NULL }, };
867
868 /*
869  *  Fix Command Arguments for Aix_Volatile
870  */
871 static const char* apzAix_VolatilePatch[] = {
872     "format",
873     "typedef int sig_atomic_t",
874     (char*)NULL };
875
876 /* * * * * * * * * * * * * * * * * * * * * * * * * *
877  *
878  *  Description of Alpha___Assert fix
879  */
880 tSCC zAlpha___AssertName[] =
881      "alpha___assert";
882
883 /*
884  *  File name selection pattern
885  */
886 tSCC zAlpha___AssertList[] =
887   "|assert.h|";
888 /*
889  *  Machine/OS name selection pattern
890  */
891 #define apzAlpha___AssertMachs (const char**)NULL
892
893 /*
894  *  content selection pattern - do fix if pattern found
895  */
896 tSCC zAlpha___AssertSelect0[] =
897        "__assert\\(char \\*, char \\*, int\\)";
898
899 #define    ALPHA___ASSERT_TEST_CT  1
900 static tTestDesc aAlpha___AssertTests[] = {
901   { TT_EGREP,    zAlpha___AssertSelect0, (regex_t*)NULL }, };
902
903 /*
904  *  Fix Command Arguments for Alpha___Assert
905  */
906 static const char* apzAlpha___AssertPatch[] = {
907     "format",
908     "__assert(const char *, const char *, int)",
909     (char*)NULL };
910
911 /* * * * * * * * * * * * * * * * * * * * * * * * * *
912  *
913  *  Description of Alpha___Extern_Prefix fix
914  */
915 tSCC zAlpha___Extern_PrefixName[] =
916      "alpha___extern_prefix";
917
918 /*
919  *  File name selection pattern
920  */
921 #define zAlpha___Extern_PrefixList (char*)NULL
922 /*
923  *  Machine/OS name selection pattern
924  */
925 tSCC* apzAlpha___Extern_PrefixMachs[] = {
926         "alpha*-dec-osf*",
927         (const char*)NULL };
928
929 /*
930  *  content selection pattern - do fix if pattern found
931  */
932 tSCC zAlpha___Extern_PrefixSelect0[] =
933        "(.*)(defined\\(__DECC\\)|def[ \t]*__DECC)[ \t]*\n\
934 (#[ \t]*pragma[ \t]*extern_prefix.*)";
935
936 #define    ALPHA___EXTERN_PREFIX_TEST_CT  1
937 static tTestDesc aAlpha___Extern_PrefixTests[] = {
938   { TT_EGREP,    zAlpha___Extern_PrefixSelect0, (regex_t*)NULL }, };
939
940 /*
941  *  Fix Command Arguments for Alpha___Extern_Prefix
942  */
943 static const char* apzAlpha___Extern_PrefixPatch[] = {
944     "format",
945     "%1 (defined(__DECC) || defined(__PRAGMA_EXTERN_PREFIX))\n\
946 %3",
947     (char*)NULL };
948
949 /* * * * * * * * * * * * * * * * * * * * * * * * * *
950  *
951  *  Description of Alpha___Extern_Prefix_Standards fix
952  */
953 tSCC zAlpha___Extern_Prefix_StandardsName[] =
954      "alpha___extern_prefix_standards";
955
956 /*
957  *  File name selection pattern
958  */
959 tSCC zAlpha___Extern_Prefix_StandardsList[] =
960   "|standards.h|";
961 /*
962  *  Machine/OS name selection pattern
963  */
964 tSCC* apzAlpha___Extern_Prefix_StandardsMachs[] = {
965         "alpha*-dec-osf*",
966         (const char*)NULL };
967
968 /*
969  *  content selection pattern - do fix if pattern found
970  */
971 tSCC zAlpha___Extern_Prefix_StandardsSelect0[] =
972        ".*!defined\\(_LIBC_POLLUTION_H_\\) && !defined\\(__DECC\\)";
973
974 #define    ALPHA___EXTERN_PREFIX_STANDARDS_TEST_CT  1
975 static tTestDesc aAlpha___Extern_Prefix_StandardsTests[] = {
976   { TT_EGREP,    zAlpha___Extern_Prefix_StandardsSelect0, (regex_t*)NULL }, };
977
978 /*
979  *  Fix Command Arguments for Alpha___Extern_Prefix_Standards
980  */
981 static const char* apzAlpha___Extern_Prefix_StandardsPatch[] = {
982     "format",
983     "%0 && !defined(__PRAGMA_EXTERN_PREFIX)",
984     (char*)NULL };
985
986 /* * * * * * * * * * * * * * * * * * * * * * * * * *
987  *
988  *  Description of Alpha___Extern_Prefix_Sys_Stat fix
989  */
990 tSCC zAlpha___Extern_Prefix_Sys_StatName[] =
991      "alpha___extern_prefix_sys_stat";
992
993 /*
994  *  File name selection pattern
995  */
996 tSCC zAlpha___Extern_Prefix_Sys_StatList[] =
997   "|sys/stat.h|sys/mount.h|";
998 /*
999  *  Machine/OS name selection pattern
1000  */
1001 tSCC* apzAlpha___Extern_Prefix_Sys_StatMachs[] = {
1002         "alpha*-dec-osf5*",
1003         (const char*)NULL };
1004
1005 /*
1006  *  content selection pattern - do fix if pattern found
1007  */
1008 tSCC zAlpha___Extern_Prefix_Sys_StatSelect0[] =
1009        "#[ \t]*if[ \t]*defined\\(__DECC\\)";
1010
1011 #define    ALPHA___EXTERN_PREFIX_SYS_STAT_TEST_CT  1
1012 static tTestDesc aAlpha___Extern_Prefix_Sys_StatTests[] = {
1013   { TT_EGREP,    zAlpha___Extern_Prefix_Sys_StatSelect0, (regex_t*)NULL }, };
1014
1015 /*
1016  *  Fix Command Arguments for Alpha___Extern_Prefix_Sys_Stat
1017  */
1018 static const char* apzAlpha___Extern_Prefix_Sys_StatPatch[] = {
1019     "format",
1020     "%0 || defined(__PRAGMA_EXTERN_PREFIX)",
1021     (char*)NULL };
1022
1023 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1024  *
1025  *  Description of Alpha_Assert fix
1026  */
1027 tSCC zAlpha_AssertName[] =
1028      "alpha_assert";
1029
1030 /*
1031  *  File name selection pattern
1032  */
1033 tSCC zAlpha_AssertList[] =
1034   "|assert.h|";
1035 /*
1036  *  Machine/OS name selection pattern
1037  */
1038 #define apzAlpha_AssertMachs (const char**)NULL
1039
1040 /*
1041  *  content selection pattern - do fix if pattern found
1042  */
1043 tSCC zAlpha_AssertSelect0[] =
1044        "(#define assert\\(EX\\).*)\\(\\(int\\) \\(EX\\)\\)";
1045
1046 #define    ALPHA_ASSERT_TEST_CT  1
1047 static tTestDesc aAlpha_AssertTests[] = {
1048   { TT_EGREP,    zAlpha_AssertSelect0, (regex_t*)NULL }, };
1049
1050 /*
1051  *  Fix Command Arguments for Alpha_Assert
1052  */
1053 static const char* apzAlpha_AssertPatch[] = {
1054     "format",
1055     "%1(EX)",
1056     (char*)NULL };
1057
1058 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1059  *
1060  *  Description of Alpha_Bad_Lval fix
1061  */
1062 tSCC zAlpha_Bad_LvalName[] =
1063      "alpha_bad_lval";
1064
1065 /*
1066  *  File name selection pattern
1067  */
1068 #define zAlpha_Bad_LvalList (char*)NULL
1069 /*
1070  *  Machine/OS name selection pattern
1071  */
1072 tSCC* apzAlpha_Bad_LvalMachs[] = {
1073         "alpha*-dec-osf*",
1074         (const char*)NULL };
1075
1076 /*
1077  *  content selection pattern - do fix if pattern found
1078  */
1079 tSCC zAlpha_Bad_LvalSelect0[] =
1080        "^[ \t]*#[ \t]*pragma[ \t]+extern_prefix";
1081
1082 #define    ALPHA_BAD_LVAL_TEST_CT  1
1083 static tTestDesc aAlpha_Bad_LvalTests[] = {
1084   { TT_EGREP,    zAlpha_Bad_LvalSelect0, (regex_t*)NULL }, };
1085
1086 /*
1087  *  Fix Command Arguments for Alpha_Bad_Lval
1088  */
1089 static const char* apzAlpha_Bad_LvalPatch[] = { "sed",
1090     "-e", "s/^[ \t]*#[ \t]*define[ \t][ \t]*\\([^(]*\\)\\(([^)]*)\\)[ \t]*\\(_.*\\)\\1\\2[ \t]*$/#define \\1 \\3\\1/",
1091     (char*)NULL };
1092
1093 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1094  *
1095  *  Description of Alpha_Getopt fix
1096  */
1097 tSCC zAlpha_GetoptName[] =
1098      "alpha_getopt";
1099
1100 /*
1101  *  File name selection pattern
1102  */
1103 tSCC zAlpha_GetoptList[] =
1104   "|stdio.h|stdlib.h|";
1105 /*
1106  *  Machine/OS name selection pattern
1107  */
1108 #define apzAlpha_GetoptMachs (const char**)NULL
1109
1110 /*
1111  *  content selection pattern - do fix if pattern found
1112  */
1113 tSCC zAlpha_GetoptSelect0[] =
1114        "getopt\\(int, char \\*\\[\\], *char \\*\\)";
1115
1116 #define    ALPHA_GETOPT_TEST_CT  1
1117 static tTestDesc aAlpha_GetoptTests[] = {
1118   { TT_EGREP,    zAlpha_GetoptSelect0, (regex_t*)NULL }, };
1119
1120 /*
1121  *  Fix Command Arguments for Alpha_Getopt
1122  */
1123 static const char* apzAlpha_GetoptPatch[] = {
1124     "format",
1125     "getopt(int, char *const[], const char *)",
1126     (char*)NULL };
1127
1128 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1129  *
1130  *  Description of Alpha_Parens fix
1131  */
1132 tSCC zAlpha_ParensName[] =
1133      "alpha_parens";
1134
1135 /*
1136  *  File name selection pattern
1137  */
1138 tSCC zAlpha_ParensList[] =
1139   "|sym.h|";
1140 /*
1141  *  Machine/OS name selection pattern
1142  */
1143 #define apzAlpha_ParensMachs (const char**)NULL
1144
1145 /*
1146  *  content selection pattern - do fix if pattern found
1147  */
1148 tSCC zAlpha_ParensSelect0[] =
1149        "#ifndef\\(__mips64\\)";
1150
1151 #define    ALPHA_PARENS_TEST_CT  1
1152 static tTestDesc aAlpha_ParensTests[] = {
1153   { TT_EGREP,    zAlpha_ParensSelect0, (regex_t*)NULL }, };
1154
1155 /*
1156  *  Fix Command Arguments for Alpha_Parens
1157  */
1158 static const char* apzAlpha_ParensPatch[] = {
1159     "format",
1160     "#ifndef __mips64",
1161     (char*)NULL };
1162
1163 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1164  *
1165  *  Description of Alpha_Pthread fix
1166  */
1167 tSCC zAlpha_PthreadName[] =
1168      "alpha_pthread";
1169
1170 /*
1171  *  File name selection pattern
1172  */
1173 tSCC zAlpha_PthreadList[] =
1174   "|pthread.h|";
1175 /*
1176  *  Machine/OS name selection pattern
1177  */
1178 tSCC* apzAlpha_PthreadMachs[] = {
1179         "alpha*-dec-osf*",
1180         (const char*)NULL };
1181
1182 /*
1183  *  content selection pattern - do fix if pattern found
1184  */
1185 tSCC zAlpha_PthreadSelect0[] =
1186        "((#[ \t]*if)([ \t]*defined[ \t]*\\(_PTHREAD_ENV_DECC\\)|def _PTHREAD_ENV_DECC)(.*))\n\
1187 (#[ \t]*define _PTHREAD_USE_PTDNAM_)";
1188
1189 #define    ALPHA_PTHREAD_TEST_CT  1
1190 static tTestDesc aAlpha_PthreadTests[] = {
1191   { TT_EGREP,    zAlpha_PthreadSelect0, (regex_t*)NULL }, };
1192
1193 /*
1194  *  Fix Command Arguments for Alpha_Pthread
1195  */
1196 static const char* apzAlpha_PthreadPatch[] = {
1197     "format",
1198     "%2 defined (_PTHREAD_ENV_DECC)%4 || defined (__PRAGMA_EXTERN_PREFIX)\n\
1199 %5",
1200     (char*)NULL };
1201
1202 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1203  *
1204  *  Description of Alpha_Pthread_Gcc fix
1205  */
1206 tSCC zAlpha_Pthread_GccName[] =
1207      "alpha_pthread_gcc";
1208
1209 /*
1210  *  File name selection pattern
1211  */
1212 tSCC zAlpha_Pthread_GccList[] =
1213   "|pthread.h|";
1214 /*
1215  *  Machine/OS name selection pattern
1216  */
1217 tSCC* apzAlpha_Pthread_GccMachs[] = {
1218         "alpha*-dec-osf*",
1219         (const char*)NULL };
1220
1221 /*
1222  *  content selection pattern - do fix if pattern found
1223  */
1224 tSCC zAlpha_Pthread_GccSelect0[] =
1225        "#else\n\
1226 # error <pthread.h>: unrecognized compiler.";
1227
1228 #define    ALPHA_PTHREAD_GCC_TEST_CT  1
1229 static tTestDesc aAlpha_Pthread_GccTests[] = {
1230   { TT_EGREP,    zAlpha_Pthread_GccSelect0, (regex_t*)NULL }, };
1231
1232 /*
1233  *  Fix Command Arguments for Alpha_Pthread_Gcc
1234  */
1235 static const char* apzAlpha_Pthread_GccPatch[] = {
1236     "format",
1237     "#elif defined (__GNUC__)\n\
1238 # define _PTHREAD_ENV_GCC\n\
1239 %0",
1240     (char*)NULL };
1241
1242 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1243  *
1244  *  Description of Alpha_Pthread_Init fix
1245  */
1246 tSCC zAlpha_Pthread_InitName[] =
1247      "alpha_pthread_init";
1248
1249 /*
1250  *  File name selection pattern
1251  */
1252 tSCC zAlpha_Pthread_InitList[] =
1253   "|pthread.h|";
1254 /*
1255  *  Machine/OS name selection pattern
1256  */
1257 tSCC* apzAlpha_Pthread_InitMachs[] = {
1258         "alpha*-dec-osf*",
1259         (const char*)NULL };
1260
1261 /*
1262  *  content selection pattern - do fix if pattern found
1263  */
1264 tSCC zAlpha_Pthread_InitSelect0[] =
1265        " \\* @\\(#\\).RCSfile: pthread\\.h,v \\$ .Revision: 1\\.1\\.33\\.21 \\$ \\(DEC\\) .Date: 2000/08/15 15:30:13 \\$";
1266
1267 #define    ALPHA_PTHREAD_INIT_TEST_CT  1
1268 static tTestDesc aAlpha_Pthread_InitTests[] = {
1269   { TT_EGREP,    zAlpha_Pthread_InitSelect0, (regex_t*)NULL }, };
1270
1271 /*
1272  *  Fix Command Arguments for Alpha_Pthread_Init
1273  */
1274 static const char* apzAlpha_Pthread_InitPatch[] = { "sed",
1275     "-e", "s@MVALID\\(.*\\)A}@MVALID\\1A, 0, 0, 0, 0, 0, 0 }@\n\
1276 s@MVALID\\(.*\\)_}@MVALID\\1_, 0, 0, 0, 0 }@\n\
1277 s@CVALID\\(.*\\)A}@CVALID\\1A, 0, 0, 0, 0 }@\n\
1278 s@CVALID\\(.*\\)_}@CVALID\\1_, 0, 0 }@\n\
1279 s@WVALID\\(.*\\)A}@WVALID\\1A, 0, 0, 0, 0, 0, 0, 0, 0, 0 }@\n\
1280 s@WVALID\\(.*\\)_}@WVALID\\1_, 0, 0, 0, 0, 0, 0, 0 }@\n",
1281     (char*)NULL };
1282
1283 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1284  *
1285  *  Description of Alpha_Sbrk fix
1286  */
1287 tSCC zAlpha_SbrkName[] =
1288      "alpha_sbrk";
1289
1290 /*
1291  *  File name selection pattern
1292  */
1293 tSCC zAlpha_SbrkList[] =
1294   "|unistd.h|";
1295 /*
1296  *  Machine/OS name selection pattern
1297  */
1298 #define apzAlpha_SbrkMachs (const char**)NULL
1299
1300 /*
1301  *  content selection pattern - do fix if pattern found
1302  */
1303 tSCC zAlpha_SbrkSelect0[] =
1304        "char[ \t]*\\*[\t ]*sbrk[ \t]*\\(";
1305
1306 #define    ALPHA_SBRK_TEST_CT  1
1307 static tTestDesc aAlpha_SbrkTests[] = {
1308   { TT_EGREP,    zAlpha_SbrkSelect0, (regex_t*)NULL }, };
1309
1310 /*
1311  *  Fix Command Arguments for Alpha_Sbrk
1312  */
1313 static const char* apzAlpha_SbrkPatch[] = {
1314     "format",
1315     "void *sbrk(",
1316     (char*)NULL };
1317
1318 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1319  *
1320  *  Description of Alpha_Wchar fix
1321  */
1322 tSCC zAlpha_WcharName[] =
1323      "alpha_wchar";
1324
1325 /*
1326  *  File name selection pattern
1327  */
1328 tSCC zAlpha_WcharList[] =
1329   "|wchar.h|";
1330 /*
1331  *  Machine/OS name selection pattern
1332  */
1333 tSCC* apzAlpha_WcharMachs[] = {
1334         "alpha*-dec-osf4*",
1335         (const char*)NULL };
1336
1337 /*
1338  *  content selection pattern - do fix if pattern found
1339  */
1340 tSCC zAlpha_WcharSelect0[] =
1341        "#define wcstok wcstok_r";
1342
1343 #define    ALPHA_WCHAR_TEST_CT  1
1344 static tTestDesc aAlpha_WcharTests[] = {
1345   { TT_EGREP,    zAlpha_WcharSelect0, (regex_t*)NULL }, };
1346
1347 /*
1348  *  Fix Command Arguments for Alpha_Wchar
1349  */
1350 static const char* apzAlpha_WcharPatch[] = { "sed",
1351     "-e", "s@#define wcstok wcstok_r@extern wchar_t *wcstok __((wchar_t *, const wchar_t *, wchar_t **)) __asm__(\"wcstok_r\");@",
1352     "-e", "s@#define wcsftime __wcsftime_isoc@extern size_t   wcsftime __((wchar_t *, size_t, const wchar_t *, const struct tm *)) __asm__(\"__wcsftime_isoc\");@",
1353     (char*)NULL };
1354
1355 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1356  *
1357  *  Description of Avoid_Bool_Define fix
1358  */
1359 tSCC zAvoid_Bool_DefineName[] =
1360      "avoid_bool_define";
1361
1362 /*
1363  *  File name selection pattern
1364  */
1365 tSCC zAvoid_Bool_DefineList[] =
1366   "|curses.h|curses_colr/curses.h|term.h|tinfo.h|";
1367 /*
1368  *  Machine/OS name selection pattern
1369  */
1370 #define apzAvoid_Bool_DefineMachs (const char**)NULL
1371
1372 /*
1373  *  content selection pattern - do fix if pattern found
1374  */
1375 tSCC zAvoid_Bool_DefineSelect0[] =
1376        "#[ \t]*define[ \t]+bool[ \t]";
1377
1378 /*
1379  *  content bypass pattern - skip fix if pattern found
1380  */
1381 tSCC zAvoid_Bool_DefineBypass0[] =
1382        "__cplusplus";
1383
1384 #define    AVOID_BOOL_DEFINE_TEST_CT  2
1385 static tTestDesc aAvoid_Bool_DefineTests[] = {
1386   { TT_NEGREP,   zAvoid_Bool_DefineBypass0, (regex_t*)NULL },
1387   { TT_EGREP,    zAvoid_Bool_DefineSelect0, (regex_t*)NULL }, };
1388
1389 /*
1390  *  Fix Command Arguments for Avoid_Bool_Define
1391  */
1392 static const char* apzAvoid_Bool_DefinePatch[] = {
1393     "format",
1394     "#ifndef __cplusplus\n\
1395 %0\n\
1396 #endif",
1397     "^[ \t]*#[ \t]*define[ \t]+bool[ \t].*",
1398     (char*)NULL };
1399
1400 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1401  *
1402  *  Description of Avoid_Bool_Type fix
1403  */
1404 tSCC zAvoid_Bool_TypeName[] =
1405      "avoid_bool_type";
1406
1407 /*
1408  *  File name selection pattern
1409  */
1410 tSCC zAvoid_Bool_TypeList[] =
1411   "|curses.h|curses_colr/curses.h|term.h|tinfo.h|";
1412 /*
1413  *  Machine/OS name selection pattern
1414  */
1415 #define apzAvoid_Bool_TypeMachs (const char**)NULL
1416
1417 /*
1418  *  content selection pattern - do fix if pattern found
1419  */
1420 tSCC zAvoid_Bool_TypeSelect0[] =
1421        "^[ \t]*typedef[ \t].*[ \t]bool[ \t]*;";
1422
1423 /*
1424  *  content bypass pattern - skip fix if pattern found
1425  */
1426 tSCC zAvoid_Bool_TypeBypass0[] =
1427        "__cplusplus";
1428
1429 #define    AVOID_BOOL_TYPE_TEST_CT  2
1430 static tTestDesc aAvoid_Bool_TypeTests[] = {
1431   { TT_NEGREP,   zAvoid_Bool_TypeBypass0, (regex_t*)NULL },
1432   { TT_EGREP,    zAvoid_Bool_TypeSelect0, (regex_t*)NULL }, };
1433
1434 /*
1435  *  Fix Command Arguments for Avoid_Bool_Type
1436  */
1437 static const char* apzAvoid_Bool_TypePatch[] = {
1438     "format",
1439     "#ifndef __cplusplus\n\
1440 %0\n\
1441 #endif",
1442     (char*)NULL };
1443
1444 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1445  *
1446  *  Description of Avoid_Wchar_T_Type fix
1447  */
1448 tSCC zAvoid_Wchar_T_TypeName[] =
1449      "avoid_wchar_t_type";
1450
1451 /*
1452  *  File name selection pattern
1453  */
1454 #define zAvoid_Wchar_T_TypeList (char*)NULL
1455 /*
1456  *  Machine/OS name selection pattern
1457  */
1458 #define apzAvoid_Wchar_T_TypeMachs (const char**)NULL
1459
1460 /*
1461  *  content selection pattern - do fix if pattern found
1462  */
1463 tSCC zAvoid_Wchar_T_TypeSelect0[] =
1464        "^[ \t]*typedef[ \t].*[ \t]wchar_t[ \t]*;";
1465
1466 /*
1467  *  content bypass pattern - skip fix if pattern found
1468  */
1469 tSCC zAvoid_Wchar_T_TypeBypass0[] =
1470        "__cplusplus";
1471 tSCC zAvoid_Wchar_T_TypeBypass1[] =
1472        "_LINUX_NLS_H";
1473 tSCC zAvoid_Wchar_T_TypeBypass2[] =
1474        "XFree86: xc/lib/X11/Xlib\\.h";
1475
1476 #define    AVOID_WCHAR_T_TYPE_TEST_CT  4
1477 static tTestDesc aAvoid_Wchar_T_TypeTests[] = {
1478   { TT_NEGREP,   zAvoid_Wchar_T_TypeBypass0, (regex_t*)NULL },
1479   { TT_NEGREP,   zAvoid_Wchar_T_TypeBypass1, (regex_t*)NULL },
1480   { TT_NEGREP,   zAvoid_Wchar_T_TypeBypass2, (regex_t*)NULL },
1481   { TT_EGREP,    zAvoid_Wchar_T_TypeSelect0, (regex_t*)NULL }, };
1482
1483 /*
1484  *  Fix Command Arguments for Avoid_Wchar_T_Type
1485  */
1486 static const char* apzAvoid_Wchar_T_TypePatch[] = {
1487     "format",
1488     "#ifndef __cplusplus\n\
1489 %0\n\
1490 #endif",
1491     (char*)NULL };
1492
1493 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1494  *
1495  *  Description of Bad_Struct_Term fix
1496  */
1497 tSCC zBad_Struct_TermName[] =
1498      "bad_struct_term";
1499
1500 /*
1501  *  File name selection pattern
1502  */
1503 tSCC zBad_Struct_TermList[] =
1504   "|curses.h|";
1505 /*
1506  *  Machine/OS name selection pattern
1507  */
1508 #define apzBad_Struct_TermMachs (const char**)NULL
1509
1510 /*
1511  *  content selection pattern - do fix if pattern found
1512  */
1513 tSCC zBad_Struct_TermSelect0[] =
1514        "^[ \t]*typedef[ \t]+struct[ \t]+term[ \t]*;";
1515
1516 #define    BAD_STRUCT_TERM_TEST_CT  1
1517 static tTestDesc aBad_Struct_TermTests[] = {
1518   { TT_EGREP,    zBad_Struct_TermSelect0, (regex_t*)NULL }, };
1519
1520 /*
1521  *  Fix Command Arguments for Bad_Struct_Term
1522  */
1523 static const char* apzBad_Struct_TermPatch[] = {
1524     "format",
1525     "struct term;",
1526     (char*)NULL };
1527
1528 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1529  *
1530  *  Description of Badquote fix
1531  */
1532 tSCC zBadquoteName[] =
1533      "badquote";
1534
1535 /*
1536  *  File name selection pattern
1537  */
1538 tSCC zBadquoteList[] =
1539   "|sundev/vuid_event.h|";
1540 /*
1541  *  Machine/OS name selection pattern
1542  */
1543 #define apzBadquoteMachs (const char**)NULL
1544
1545 /*
1546  *  content selection pattern - do fix if pattern found
1547  */
1548 tSCC zBadquoteSelect0[] =
1549        "doesn't";
1550
1551 #define    BADQUOTE_TEST_CT  1
1552 static tTestDesc aBadquoteTests[] = {
1553   { TT_EGREP,    zBadquoteSelect0, (regex_t*)NULL }, };
1554
1555 /*
1556  *  Fix Command Arguments for Badquote
1557  */
1558 static const char* apzBadquotePatch[] = {
1559     "format",
1560     "does not",
1561     (char*)NULL };
1562
1563 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1564  *
1565  *  Description of Broken_Assert_Stdio fix
1566  */
1567 tSCC zBroken_Assert_StdioName[] =
1568      "broken_assert_stdio";
1569
1570 /*
1571  *  File name selection pattern
1572  */
1573 tSCC zBroken_Assert_StdioList[] =
1574   "|assert.h|";
1575 /*
1576  *  Machine/OS name selection pattern
1577  */
1578 #define apzBroken_Assert_StdioMachs (const char**)NULL
1579
1580 /*
1581  *  content selection pattern - do fix if pattern found
1582  */
1583 tSCC zBroken_Assert_StdioSelect0[] =
1584        "stderr";
1585
1586 /*
1587  *  content bypass pattern - skip fix if pattern found
1588  */
1589 tSCC zBroken_Assert_StdioBypass0[] =
1590        "include.*stdio\\.h";
1591
1592 #define    BROKEN_ASSERT_STDIO_TEST_CT  2
1593 static tTestDesc aBroken_Assert_StdioTests[] = {
1594   { TT_NEGREP,   zBroken_Assert_StdioBypass0, (regex_t*)NULL },
1595   { TT_EGREP,    zBroken_Assert_StdioSelect0, (regex_t*)NULL }, };
1596
1597 /*
1598  *  Fix Command Arguments for Broken_Assert_Stdio
1599  */
1600 static const char* apzBroken_Assert_StdioPatch[] = {
1601     "wrap",
1602     "#include <stdio.h>\n",
1603     (char*)NULL };
1604
1605 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1606  *
1607  *  Description of Broken_Assert_Stdlib fix
1608  */
1609 tSCC zBroken_Assert_StdlibName[] =
1610      "broken_assert_stdlib";
1611
1612 /*
1613  *  File name selection pattern
1614  */
1615 tSCC zBroken_Assert_StdlibList[] =
1616   "|assert.h|";
1617 /*
1618  *  Machine/OS name selection pattern
1619  */
1620 #define apzBroken_Assert_StdlibMachs (const char**)NULL
1621
1622 /*
1623  *  content selection pattern - do fix if pattern found
1624  */
1625 tSCC zBroken_Assert_StdlibSelect0[] =
1626        "exit *\\(|abort *\\(";
1627
1628 /*
1629  *  content bypass pattern - skip fix if pattern found
1630  */
1631 tSCC zBroken_Assert_StdlibBypass0[] =
1632        "include.*stdlib\\.h";
1633
1634 #define    BROKEN_ASSERT_STDLIB_TEST_CT  2
1635 static tTestDesc aBroken_Assert_StdlibTests[] = {
1636   { TT_NEGREP,   zBroken_Assert_StdlibBypass0, (regex_t*)NULL },
1637   { TT_EGREP,    zBroken_Assert_StdlibSelect0, (regex_t*)NULL }, };
1638
1639 /*
1640  *  Fix Command Arguments for Broken_Assert_Stdlib
1641  */
1642 static const char* apzBroken_Assert_StdlibPatch[] = {
1643     "wrap",
1644     "#ifdef __cplusplus\n\
1645 #include <stdlib.h>\n\
1646 #endif\n",
1647     (char*)NULL };
1648
1649 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1650  *
1651  *  Description of Broken_Cabs fix
1652  */
1653 tSCC zBroken_CabsName[] =
1654      "broken_cabs";
1655
1656 /*
1657  *  File name selection pattern
1658  */
1659 tSCC zBroken_CabsList[] =
1660   "|math.h|architecture/ppc/math.h|architecture/i386/math.h|";
1661 /*
1662  *  Machine/OS name selection pattern
1663  */
1664 #define apzBroken_CabsMachs (const char**)NULL
1665
1666 /*
1667  *  content selection pattern - do fix if pattern found
1668  */
1669 tSCC zBroken_CabsSelect0[] =
1670        "^extern[ \t]+double[ \t]+cabs";
1671
1672 #define    BROKEN_CABS_TEST_CT  1
1673 static tTestDesc aBroken_CabsTests[] = {
1674   { TT_EGREP,    zBroken_CabsSelect0, (regex_t*)NULL }, };
1675
1676 /*
1677  *  Fix Command Arguments for Broken_Cabs
1678  */
1679 static const char* apzBroken_CabsPatch[] = {
1680     "format",
1681     "",
1682     "^extern[ \t]+double[ \t]+cabs[ \t]*\\([^\\)]*\\);",
1683     (char*)NULL };
1684
1685 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1686  *
1687  *  Description of Broken_Nan fix
1688  */
1689 tSCC zBroken_NanName[] =
1690      "broken_nan";
1691
1692 /*
1693  *  File name selection pattern
1694  */
1695 tSCC zBroken_NanList[] =
1696   "|architecture/ppc/math.h|architecture/i386/math.h|";
1697 /*
1698  *  Machine/OS name selection pattern
1699  */
1700 #define apzBroken_NanMachs (const char**)NULL
1701
1702 /*
1703  *  content selection pattern - do fix if pattern found
1704  */
1705 tSCC zBroken_NanSelect0[] =
1706        "#if defined(__APPLE_CC__) && (__APPLE_CC__ >= 1345)";
1707
1708 /*
1709  *  content bypass pattern - skip fix if pattern found
1710  */
1711 tSCC zBroken_NanBypass0[] =
1712        "powl";
1713
1714 #define    BROKEN_NAN_TEST_CT  2
1715 static tTestDesc aBroken_NanTests[] = {
1716   { TT_NEGREP,   zBroken_NanBypass0, (regex_t*)NULL },
1717   { TT_EGREP,    zBroken_NanSelect0, (regex_t*)NULL }, };
1718
1719 /*
1720  *  Fix Command Arguments for Broken_Nan
1721  */
1722 static const char* apzBroken_NanPatch[] = {
1723     "format",
1724     "#if 1",
1725     (char*)NULL };
1726
1727 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1728  *
1729  *  Description of Bsd_Stdio_Attrs_Conflict fix
1730  */
1731 tSCC zBsd_Stdio_Attrs_ConflictName[] =
1732      "bsd_stdio_attrs_conflict";
1733
1734 /*
1735  *  File name selection pattern
1736  */
1737 tSCC zBsd_Stdio_Attrs_ConflictList[] =
1738   "|stdio.h|";
1739 /*
1740  *  Machine/OS name selection pattern
1741  */
1742 tSCC* apzBsd_Stdio_Attrs_ConflictMachs[] = {
1743         "*-*-*bsd*",
1744         "*-*-*darwin*",
1745         (const char*)NULL };
1746
1747 /*
1748  *  content selection pattern - do fix if pattern found
1749  */
1750 tSCC zBsd_Stdio_Attrs_ConflictSelect0[] =
1751        "^#define[ \t]*vfscanf[ \t]*__svfscanf[ \t]*$";
1752
1753 #define    BSD_STDIO_ATTRS_CONFLICT_TEST_CT  1
1754 static tTestDesc aBsd_Stdio_Attrs_ConflictTests[] = {
1755   { TT_EGREP,    zBsd_Stdio_Attrs_ConflictSelect0, (regex_t*)NULL }, };
1756
1757 /*
1758  *  Fix Command Arguments for Bsd_Stdio_Attrs_Conflict
1759  */
1760 static const char* apzBsd_Stdio_Attrs_ConflictPatch[] = {
1761     "format",
1762     "#define _BSD_STRING(_BSD_X) _BSD_STRINGX(_BSD_X)\n\
1763 #define _BSD_STRINGX(_BSD_X) #_BSD_X\n\
1764 int vfscanf(FILE *, const char *, __builtin_va_list) __asm__ (_BSD_STRING(__USER_LABEL_PREFIX__) \"__svfscanf\");",
1765     (char*)NULL };
1766
1767 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1768  *
1769  *  Description of Ctrl_Quotes_Def fix
1770  */
1771 tSCC zCtrl_Quotes_DefName[] =
1772      "ctrl_quotes_def";
1773
1774 /*
1775  *  File name selection pattern
1776  */
1777 #define zCtrl_Quotes_DefList (char*)NULL
1778 /*
1779  *  Machine/OS name selection pattern
1780  */
1781 #define apzCtrl_Quotes_DefMachs (const char**)NULL
1782
1783 /*
1784  *  content selection pattern - do fix if pattern found
1785  */
1786 tSCC zCtrl_Quotes_DefSelect0[] =
1787        "define[ \t]+[A-Z0-9_]+CTRL\\([a-zA-Z][,)]";
1788
1789 #define    CTRL_QUOTES_DEF_TEST_CT  1
1790 static tTestDesc aCtrl_Quotes_DefTests[] = {
1791   { TT_EGREP,    zCtrl_Quotes_DefSelect0, (regex_t*)NULL }, };
1792
1793 /*
1794  *  Fix Command Arguments for Ctrl_Quotes_Def
1795  */
1796 static const char* apzCtrl_Quotes_DefPatch[] = {
1797     "char_macro_def",
1798     "CTRL",
1799     (char*)NULL };
1800
1801 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1802  *
1803  *  Description of Ctrl_Quotes_Use fix
1804  */
1805 tSCC zCtrl_Quotes_UseName[] =
1806      "ctrl_quotes_use";
1807
1808 /*
1809  *  File name selection pattern
1810  */
1811 #define zCtrl_Quotes_UseList (char*)NULL
1812 /*
1813  *  Machine/OS name selection pattern
1814  */
1815 #define apzCtrl_Quotes_UseMachs (const char**)NULL
1816
1817 /*
1818  *  content selection pattern - do fix if pattern found
1819  */
1820 tSCC zCtrl_Quotes_UseSelect0[] =
1821        "define[ \t]+[A-Z0-9_]+[ \t]+[A-Z0-9_]+CTRL[ \t]*\\( *[^,']";
1822
1823 #define    CTRL_QUOTES_USE_TEST_CT  1
1824 static tTestDesc aCtrl_Quotes_UseTests[] = {
1825   { TT_EGREP,    zCtrl_Quotes_UseSelect0, (regex_t*)NULL }, };
1826
1827 /*
1828  *  Fix Command Arguments for Ctrl_Quotes_Use
1829  */
1830 static const char* apzCtrl_Quotes_UsePatch[] = {
1831     "char_macro_use",
1832     "CTRL",
1833     (char*)NULL };
1834
1835 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1836  *
1837  *  Description of Cxx_Unready fix
1838  */
1839 tSCC zCxx_UnreadyName[] =
1840      "cxx_unready";
1841
1842 /*
1843  *  File name selection pattern
1844  */
1845 tSCC zCxx_UnreadyList[] =
1846   "|sys/mman.h|rpc/types.h|";
1847 /*
1848  *  Machine/OS name selection pattern
1849  */
1850 #define apzCxx_UnreadyMachs (const char**)NULL
1851
1852 /*
1853  *  content selection pattern - do fix if pattern found
1854  */
1855 tSCC zCxx_UnreadySelect0[] =
1856        "[^#]+malloc.*;";
1857
1858 /*
1859  *  content bypass pattern - skip fix if pattern found
1860  */
1861 tSCC zCxx_UnreadyBypass0[] =
1862        "\"C\"|__BEGIN_DECLS";
1863
1864 #define    CXX_UNREADY_TEST_CT  2
1865 static tTestDesc aCxx_UnreadyTests[] = {
1866   { TT_NEGREP,   zCxx_UnreadyBypass0, (regex_t*)NULL },
1867   { TT_EGREP,    zCxx_UnreadySelect0, (regex_t*)NULL }, };
1868
1869 /*
1870  *  Fix Command Arguments for Cxx_Unready
1871  */
1872 static const char* apzCxx_UnreadyPatch[] = {
1873     "wrap",
1874     "#ifdef __cplusplus\n\
1875 extern \"C\" {\n\
1876 #endif\n",
1877     "#ifdef __cplusplus\n\
1878 }\n\
1879 #endif\n",
1880     (char*)NULL };
1881
1882 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1883  *
1884  *  Description of Darwin_Gcc4_Breakage fix
1885  */
1886 tSCC zDarwin_Gcc4_BreakageName[] =
1887      "darwin_gcc4_breakage";
1888
1889 /*
1890  *  File name selection pattern
1891  */
1892 tSCC zDarwin_Gcc4_BreakageList[] =
1893   "|AvailabilityMacros.h|";
1894 /*
1895  *  Machine/OS name selection pattern
1896  */
1897 tSCC* apzDarwin_Gcc4_BreakageMachs[] = {
1898         "*-*-darwin*",
1899         (const char*)NULL };
1900
1901 /*
1902  *  content selection pattern - do fix if pattern found
1903  */
1904 tSCC zDarwin_Gcc4_BreakageSelect0[] =
1905        "\\(__GNUC__ >= 3\\) && \\(__GNUC_MINOR__ >= 1\\)";
1906
1907 #define    DARWIN_GCC4_BREAKAGE_TEST_CT  1
1908 static tTestDesc aDarwin_Gcc4_BreakageTests[] = {
1909   { TT_EGREP,    zDarwin_Gcc4_BreakageSelect0, (regex_t*)NULL }, };
1910
1911 /*
1912  *  Fix Command Arguments for Darwin_Gcc4_Breakage
1913  */
1914 static const char* apzDarwin_Gcc4_BreakagePatch[] = {
1915     "format",
1916     "((__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1))",
1917     (char*)NULL };
1918
1919 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1920  *
1921  *  Description of Darwin_Private_Extern fix
1922  */
1923 tSCC zDarwin_Private_ExternName[] =
1924      "darwin_private_extern";
1925
1926 /*
1927  *  File name selection pattern
1928  */
1929 tSCC zDarwin_Private_ExternList[] =
1930   "|mach-o/dyld.h|";
1931 /*
1932  *  Machine/OS name selection pattern
1933  */
1934 tSCC* apzDarwin_Private_ExternMachs[] = {
1935         "*-*-darwin*",
1936         (const char*)NULL };
1937
1938 /*
1939  *  content selection pattern - do fix if pattern found
1940  */
1941 tSCC zDarwin_Private_ExternSelect0[] =
1942        "__private_extern__ [a-z_]+ _dyld_";
1943
1944 #define    DARWIN_PRIVATE_EXTERN_TEST_CT  1
1945 static tTestDesc aDarwin_Private_ExternTests[] = {
1946   { TT_EGREP,    zDarwin_Private_ExternSelect0, (regex_t*)NULL }, };
1947
1948 /*
1949  *  Fix Command Arguments for Darwin_Private_Extern
1950  */
1951 static const char* apzDarwin_Private_ExternPatch[] = {
1952     "format",
1953     "extern",
1954     "__private_extern__",
1955     (char*)NULL };
1956
1957 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1958  *
1959  *  Description of Dec_Intern_Asm fix
1960  */
1961 tSCC zDec_Intern_AsmName[] =
1962      "dec_intern_asm";
1963
1964 /*
1965  *  File name selection pattern
1966  */
1967 tSCC zDec_Intern_AsmList[] =
1968   "|c_asm.h|";
1969 /*
1970  *  Machine/OS name selection pattern
1971  */
1972 #define apzDec_Intern_AsmMachs (const char**)NULL
1973 #define DEC_INTERN_ASM_TEST_CT  0
1974 #define aDec_Intern_AsmTests   (tTestDesc*)NULL
1975
1976 /*
1977  *  Fix Command Arguments for Dec_Intern_Asm
1978  */
1979 static const char* apzDec_Intern_AsmPatch[] = { "sed",
1980     "-e", "/^[ \t]*float[ \t]*fasm/i\\\n\
1981 #ifdef __DECC\n",
1982     "-e", "/^[ \t]*#[ \t]*pragma[ \t]*intrinsic([ \t]*dasm/a\\\n\
1983 #endif\n",
1984     (char*)NULL };
1985
1986 /* * * * * * * * * * * * * * * * * * * * * * * * * *
1987  *
1988  *  Description of Djgpp_Wchar_H fix
1989  */
1990 tSCC zDjgpp_Wchar_HName[] =
1991      "djgpp_wchar_h";
1992
1993 /*
1994  *  File name selection pattern
1995  */
1996 #define zDjgpp_Wchar_HList (char*)NULL
1997 /*
1998  *  Machine/OS name selection pattern
1999  */
2000 #define apzDjgpp_Wchar_HMachs (const char**)NULL
2001
2002 /*
2003  *  content selection pattern - do fix if pattern found
2004  */
2005 tSCC zDjgpp_Wchar_HSelect0[] =
2006        "__DJ_wint_t";
2007
2008 /*
2009  *  content bypass pattern - skip fix if pattern found
2010  */
2011 tSCC zDjgpp_Wchar_HBypass0[] =
2012        "sys/djtypes.h";
2013
2014 #define    DJGPP_WCHAR_H_TEST_CT  2
2015 static tTestDesc aDjgpp_Wchar_HTests[] = {
2016   { TT_NEGREP,   zDjgpp_Wchar_HBypass0, (regex_t*)NULL },
2017   { TT_EGREP,    zDjgpp_Wchar_HSelect0, (regex_t*)NULL }, };
2018
2019 /*
2020  *  Fix Command Arguments for Djgpp_Wchar_H
2021  */
2022 static const char* apzDjgpp_Wchar_HPatch[] = {
2023     "format",
2024     "%0\n\
2025 #include <sys/djtypes.h>",
2026     "#include <stddef.h>",
2027     (char*)NULL };
2028
2029 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2030  *
2031  *  Description of Ecd_Cursor fix
2032  */
2033 tSCC zEcd_CursorName[] =
2034      "ecd_cursor";
2035
2036 /*
2037  *  File name selection pattern
2038  */
2039 tSCC zEcd_CursorList[] =
2040   "|sunwindow/win_lock.h|sunwindow/win_cursor.h|";
2041 /*
2042  *  Machine/OS name selection pattern
2043  */
2044 #define apzEcd_CursorMachs (const char**)NULL
2045
2046 /*
2047  *  content selection pattern - do fix if pattern found
2048  */
2049 tSCC zEcd_CursorSelect0[] =
2050        "ecd\\.cursor";
2051
2052 #define    ECD_CURSOR_TEST_CT  1
2053 static tTestDesc aEcd_CursorTests[] = {
2054   { TT_EGREP,    zEcd_CursorSelect0, (regex_t*)NULL }, };
2055
2056 /*
2057  *  Fix Command Arguments for Ecd_Cursor
2058  */
2059 static const char* apzEcd_CursorPatch[] = {
2060     "format",
2061     "ecd_cursor",
2062     (char*)NULL };
2063
2064 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2065  *
2066  *  Description of Exception_Structure fix
2067  */
2068 tSCC zException_StructureName[] =
2069      "exception_structure";
2070
2071 /*
2072  *  File name selection pattern
2073  */
2074 tSCC zException_StructureList[] =
2075   "|math.h|";
2076 /*
2077  *  Machine/OS name selection pattern
2078  */
2079 #define apzException_StructureMachs (const char**)NULL
2080
2081 /*
2082  *  content selection pattern - do fix if pattern found
2083  */
2084 tSCC zException_StructureSelect0[] =
2085        "matherr";
2086
2087 /*
2088  *  content bypass pattern - skip fix if pattern found
2089  */
2090 tSCC zException_StructureBypass0[] =
2091        "matherr.*(struct exception|__MATH_EXCEPTION|[ \\t]*__FP_EXCEPTION[ \\t]*\\*[ \\t]*)";
2092
2093 #define    EXCEPTION_STRUCTURE_TEST_CT  2
2094 static tTestDesc aException_StructureTests[] = {
2095   { TT_NEGREP,   zException_StructureBypass0, (regex_t*)NULL },
2096   { TT_EGREP,    zException_StructureSelect0, (regex_t*)NULL }, };
2097
2098 /*
2099  *  Fix Command Arguments for Exception_Structure
2100  */
2101 static const char* apzException_StructurePatch[] = {
2102     "wrap",
2103     "struct exception;\n",
2104     (char*)NULL };
2105
2106 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2107  *
2108  *  Description of Freebsd_Gcc3_Breakage fix
2109  */
2110 tSCC zFreebsd_Gcc3_BreakageName[] =
2111      "freebsd_gcc3_breakage";
2112
2113 /*
2114  *  File name selection pattern
2115  */
2116 tSCC zFreebsd_Gcc3_BreakageList[] =
2117   "|sys/cdefs.h|";
2118 /*
2119  *  Machine/OS name selection pattern
2120  */
2121 tSCC* apzFreebsd_Gcc3_BreakageMachs[] = {
2122         "*-*-freebsd*",
2123         (const char*)NULL };
2124
2125 /*
2126  *  content selection pattern - do fix if pattern found
2127  */
2128 tSCC zFreebsd_Gcc3_BreakageSelect0[] =
2129        "^#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7$";
2130
2131 /*
2132  *  content bypass pattern - skip fix if pattern found
2133  */
2134 tSCC zFreebsd_Gcc3_BreakageBypass0[] =
2135        "__GNUC__[ \\t]*([>=]=[ \\t]*[3-9]|>[ \\t]*2)";
2136
2137 #define    FREEBSD_GCC3_BREAKAGE_TEST_CT  2
2138 static tTestDesc aFreebsd_Gcc3_BreakageTests[] = {
2139   { TT_NEGREP,   zFreebsd_Gcc3_BreakageBypass0, (regex_t*)NULL },
2140   { TT_EGREP,    zFreebsd_Gcc3_BreakageSelect0, (regex_t*)NULL }, };
2141
2142 /*
2143  *  Fix Command Arguments for Freebsd_Gcc3_Breakage
2144  */
2145 static const char* apzFreebsd_Gcc3_BreakagePatch[] = {
2146     "format",
2147     "%0 || __GNUC__ >= 3",
2148     (char*)NULL };
2149
2150 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2151  *
2152  *  Description of Freebsd_Gcc4_Breakage fix
2153  */
2154 tSCC zFreebsd_Gcc4_BreakageName[] =
2155      "freebsd_gcc4_breakage";
2156
2157 /*
2158  *  File name selection pattern
2159  */
2160 tSCC zFreebsd_Gcc4_BreakageList[] =
2161   "|sys/cdefs.h|";
2162 /*
2163  *  Machine/OS name selection pattern
2164  */
2165 tSCC* apzFreebsd_Gcc4_BreakageMachs[] = {
2166         "*-*-freebsd*",
2167         (const char*)NULL };
2168
2169 /*
2170  *  content selection pattern - do fix if pattern found
2171  */
2172 tSCC zFreebsd_Gcc4_BreakageSelect0[] =
2173        "^#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7 \\|\\| __GNUC__ == 3$";
2174
2175 #define    FREEBSD_GCC4_BREAKAGE_TEST_CT  1
2176 static tTestDesc aFreebsd_Gcc4_BreakageTests[] = {
2177   { TT_EGREP,    zFreebsd_Gcc4_BreakageSelect0, (regex_t*)NULL }, };
2178
2179 /*
2180  *  Fix Command Arguments for Freebsd_Gcc4_Breakage
2181  */
2182 static const char* apzFreebsd_Gcc4_BreakagePatch[] = {
2183     "format",
2184     "#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7 || __GNUC__ >= 3",
2185     (char*)NULL };
2186
2187 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2188  *
2189  *  Description of Glibc_Mutex_Init fix
2190  */
2191 tSCC zGlibc_Mutex_InitName[] =
2192      "glibc_mutex_init";
2193
2194 /*
2195  *  File name selection pattern
2196  */
2197 tSCC zGlibc_Mutex_InitList[] =
2198   "|pthread.h|";
2199 /*
2200  *  Machine/OS name selection pattern
2201  */
2202 #define apzGlibc_Mutex_InitMachs (const char**)NULL
2203
2204 /*
2205  *  content selection pattern - do fix if pattern found
2206  */
2207 tSCC zGlibc_Mutex_InitSelect0[] =
2208        "\\{ *\\{ *0, *\\} *\\}";
2209
2210 #define    GLIBC_MUTEX_INIT_TEST_CT  1
2211 static tTestDesc aGlibc_Mutex_InitTests[] = {
2212   { TT_EGREP,    zGlibc_Mutex_InitSelect0, (regex_t*)NULL }, };
2213
2214 /*
2215  *  Fix Command Arguments for Glibc_Mutex_Init
2216  */
2217 static const char* apzGlibc_Mutex_InitPatch[] = { "sed",
2218     "-e", "/define[ \t]\\+PTHREAD_MUTEX_INITIALIZER[ \t]*\\\\/,+1s/{ { 0, } }/{ { 0, 0, 0, 0, 0, 0 } }/",
2219     "-e", "s/{ \\(0, 0, 0, 0, PTHREAD_MUTEX_\\(RECURSIVE\\|ERRORCHECK\\|ADAPTIVE\\)_NP\\) }/{ \\1, 0 }/",
2220     "-e", "s/{ \\(0, 0, 0, PTHREAD_MUTEX_\\(RECURSIVE\\|ERRORCHECK\\|ADAPTIVE\\)_NP\\) }/{ \\1, 0, 0 }/",
2221     "-e", "/define[ \t]\\+PTHREAD_RWLOCK_INITIALIZER[ \t]*\\\\/N;s/^[ \t]*#[ \t]*\\(define[ \t]\\+PTHREAD_RWLOCK_INITIALIZER[ \t]*\\\\\\)\\n[ \t]*{ { 0, } }/# if __WORDSIZE == 64\\n#  \\1\\n  { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } }\\n# else\\n#  \\1\\n  { { 0, 0, 0, 0, 0, 0, 0, 0 } }\\n# endif/",
2222     "-e", "s/{ \\(0, 0, 0, 0, 0, 0, PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP\\) }/{ \\1, 0 }/",
2223     "-e", "/define[ \t]\\+PTHREAD_COND_INITIALIZER/s/{ { 0, } }/{ { 0, 0, 0, 0, 0, (void *) 0, 0, 0 } }/",
2224     (char*)NULL };
2225
2226 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2227  *
2228  *  Description of Gnu_Types fix
2229  */
2230 tSCC zGnu_TypesName[] =
2231      "gnu_types";
2232
2233 /*
2234  *  File name selection pattern
2235  */
2236 tSCC zGnu_TypesList[] =
2237   "|sys/types.h|stdlib.h|sys/stdtypes.h|stddef.h|memory.h|unistd.h|";
2238 /*
2239  *  Machine/OS name selection pattern
2240  */
2241 tSCC* apzGnu_TypesMachs[] = {
2242         "*-*-solaris2.1[0-9]*",
2243         (const char*)NULL };
2244
2245 /*
2246  *  content selection pattern - do fix if pattern found
2247  */
2248 tSCC zGnu_TypesSelect0[] =
2249        "^[ \t]*typedef[ \t]+.*[ \t](ptrdiff|size|wchar)_t;";
2250
2251 /*
2252  *  content bypass pattern - skip fix if pattern found
2253  */
2254 tSCC zGnu_TypesBypass0[] =
2255        "_GCC_(PTRDIFF|SIZE|WCHAR)_T";
2256
2257 #define    GNU_TYPES_TEST_CT  2
2258 static tTestDesc aGnu_TypesTests[] = {
2259   { TT_NEGREP,   zGnu_TypesBypass0, (regex_t*)NULL },
2260   { TT_EGREP,    zGnu_TypesSelect0, (regex_t*)NULL }, };
2261
2262 /*
2263  *  Fix Command Arguments for Gnu_Types
2264  */
2265 static const char* apzGnu_TypesPatch[] = {
2266     "gnu_type",
2267     (char*)NULL };
2268
2269 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2270  *
2271  *  Description of Hp_Inline fix
2272  */
2273 tSCC zHp_InlineName[] =
2274      "hp_inline";
2275
2276 /*
2277  *  File name selection pattern
2278  */
2279 tSCC zHp_InlineList[] =
2280   "|sys/spinlock.h|machine/machparam.h|";
2281 /*
2282  *  Machine/OS name selection pattern
2283  */
2284 #define apzHp_InlineMachs (const char**)NULL
2285
2286 /*
2287  *  content selection pattern - do fix if pattern found
2288  */
2289 tSCC zHp_InlineSelect0[] =
2290        "[ \t]*#[ \t]*include[ \t]+\"\\.\\./machine/";
2291
2292 #define    HP_INLINE_TEST_CT  1
2293 static tTestDesc aHp_InlineTests[] = {
2294   { TT_EGREP,    zHp_InlineSelect0, (regex_t*)NULL }, };
2295
2296 /*
2297  *  Fix Command Arguments for Hp_Inline
2298  */
2299 static const char* apzHp_InlinePatch[] = {
2300     "format",
2301     "%1<machine/%2.h>",
2302     "([ \t]*#[ \t]*include[ \t]+)\"\\.\\./machine/([a-z]+)\\.h\"",
2303     (char*)NULL };
2304
2305 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2306  *
2307  *  Description of Hp_Sysfile fix
2308  */
2309 tSCC zHp_SysfileName[] =
2310      "hp_sysfile";
2311
2312 /*
2313  *  File name selection pattern
2314  */
2315 tSCC zHp_SysfileList[] =
2316   "|sys/file.h|";
2317 /*
2318  *  Machine/OS name selection pattern
2319  */
2320 #define apzHp_SysfileMachs (const char**)NULL
2321
2322 /*
2323  *  content selection pattern - do fix if pattern found
2324  */
2325 tSCC zHp_SysfileSelect0[] =
2326        "HPUX_SOURCE";
2327
2328 #define    HP_SYSFILE_TEST_CT  1
2329 static tTestDesc aHp_SysfileTests[] = {
2330   { TT_EGREP,    zHp_SysfileSelect0, (regex_t*)NULL }, };
2331
2332 /*
2333  *  Fix Command Arguments for Hp_Sysfile
2334  */
2335 static const char* apzHp_SysfilePatch[] = {
2336     "format",
2337     "(struct file *, ...)",
2338     "\\(\\.\\.\\.\\)",
2339     (char*)NULL };
2340
2341 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2342  *
2343  *  Description of Hpux10_Cpp_Pow_Inline fix
2344  */
2345 tSCC zHpux10_Cpp_Pow_InlineName[] =
2346      "hpux10_cpp_pow_inline";
2347
2348 /*
2349  *  File name selection pattern
2350  */
2351 tSCC zHpux10_Cpp_Pow_InlineList[] =
2352   "|fixinc-test-limits.h|math.h|";
2353 /*
2354  *  Machine/OS name selection pattern
2355  */
2356 #define apzHpux10_Cpp_Pow_InlineMachs (const char**)NULL
2357
2358 /*
2359  *  content selection pattern - do fix if pattern found
2360  */
2361 tSCC zHpux10_Cpp_Pow_InlineSelect0[] =
2362        "^# +ifdef +__cplusplus\n\
2363  +\\}\n\
2364  +inline +double +pow\\(double +__d,int +__expon\\) +\\{\n\
2365 [ \t]+return +pow\\(__d,\\(double\\)__expon\\);\n\
2366  +\\}\n\
2367  +extern +\"C\" +\\{\n\
2368 #else\n\
2369 # +endif";
2370
2371 #define    HPUX10_CPP_POW_INLINE_TEST_CT  1
2372 static tTestDesc aHpux10_Cpp_Pow_InlineTests[] = {
2373   { TT_EGREP,    zHpux10_Cpp_Pow_InlineSelect0, (regex_t*)NULL }, };
2374
2375 /*
2376  *  Fix Command Arguments for Hpux10_Cpp_Pow_Inline
2377  */
2378 static const char* apzHpux10_Cpp_Pow_InlinePatch[] = {
2379     "format",
2380     "",
2381     (char*)NULL };
2382
2383 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2384  *
2385  *  Description of Hpux11_Cpp_Pow_Inline fix
2386  */
2387 tSCC zHpux11_Cpp_Pow_InlineName[] =
2388      "hpux11_cpp_pow_inline";
2389
2390 /*
2391  *  File name selection pattern
2392  */
2393 tSCC zHpux11_Cpp_Pow_InlineList[] =
2394   "|math.h|";
2395 /*
2396  *  Machine/OS name selection pattern
2397  */
2398 #define apzHpux11_Cpp_Pow_InlineMachs (const char**)NULL
2399
2400 /*
2401  *  content selection pattern - do fix if pattern found
2402  */
2403 tSCC zHpux11_Cpp_Pow_InlineSelect0[] =
2404        " +inline double pow\\(double d,int expon\\) \\{\n\
2405  +return pow\\(d, \\(double\\)expon\\);\n\
2406  +\\}\n";
2407
2408 #define    HPUX11_CPP_POW_INLINE_TEST_CT  1
2409 static tTestDesc aHpux11_Cpp_Pow_InlineTests[] = {
2410   { TT_EGREP,    zHpux11_Cpp_Pow_InlineSelect0, (regex_t*)NULL }, };
2411
2412 /*
2413  *  Fix Command Arguments for Hpux11_Cpp_Pow_Inline
2414  */
2415 static const char* apzHpux11_Cpp_Pow_InlinePatch[] = {
2416     "format",
2417     "",
2418     (char*)NULL };
2419
2420 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2421  *
2422  *  Description of Hpux10_Ctype_Declarations1 fix
2423  */
2424 tSCC zHpux10_Ctype_Declarations1Name[] =
2425      "hpux10_ctype_declarations1";
2426
2427 /*
2428  *  File name selection pattern
2429  */
2430 tSCC zHpux10_Ctype_Declarations1List[] =
2431   "|ctype.h|";
2432 /*
2433  *  Machine/OS name selection pattern
2434  */
2435 #define apzHpux10_Ctype_Declarations1Machs (const char**)NULL
2436
2437 /*
2438  *  content selection pattern - do fix if pattern found
2439  */
2440 tSCC zHpux10_Ctype_Declarations1Select0[] =
2441        "^#[ \t]*define _toupper\\(__c\\)[ \t]*__toupper\\(__c\\)";
2442
2443 /*
2444  *  content bypass pattern - skip fix if pattern found
2445  */
2446 tSCC zHpux10_Ctype_Declarations1Bypass0[] =
2447        "^[ \t]*extern[ \t]*int[ \t]*__tolower[ \t]*\\(";
2448
2449 #define    HPUX10_CTYPE_DECLARATIONS1_TEST_CT  2
2450 static tTestDesc aHpux10_Ctype_Declarations1Tests[] = {
2451   { TT_NEGREP,   zHpux10_Ctype_Declarations1Bypass0, (regex_t*)NULL },
2452   { TT_EGREP,    zHpux10_Ctype_Declarations1Select0, (regex_t*)NULL }, };
2453
2454 /*
2455  *  Fix Command Arguments for Hpux10_Ctype_Declarations1
2456  */
2457 static const char* apzHpux10_Ctype_Declarations1Patch[] = {
2458     "format",
2459     "#ifdef _PROTOTYPES\n\
2460 extern int __tolower(int);\n\
2461 extern int __toupper(int);\n\
2462 #else /* NOT _PROTOTYPES */\n\
2463 extern int __tolower();\n\
2464 extern int __toupper();\n\
2465 #endif /* _PROTOTYPES */\n\n\
2466 %0\n",
2467     (char*)NULL };
2468
2469 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2470  *
2471  *  Description of Hpux10_Ctype_Declarations2 fix
2472  */
2473 tSCC zHpux10_Ctype_Declarations2Name[] =
2474      "hpux10_ctype_declarations2";
2475
2476 /*
2477  *  File name selection pattern
2478  */
2479 tSCC zHpux10_Ctype_Declarations2List[] =
2480   "|ctype.h|";
2481 /*
2482  *  Machine/OS name selection pattern
2483  */
2484 #define apzHpux10_Ctype_Declarations2Machs (const char**)NULL
2485
2486 /*
2487  *  content selection pattern - do fix if pattern found
2488  */
2489 tSCC zHpux10_Ctype_Declarations2Select0[] =
2490        "^#  if defined\\(_SB_CTYPE_MACROS\\) && \\!defined\\(__lint\\)";
2491
2492 /*
2493  *  content bypass pattern - skip fix if pattern found
2494  */
2495 tSCC zHpux10_Ctype_Declarations2Bypass0[] =
2496        "^[ \t]*extern[ \t]*int[ \t]*_isalnum[ \t]*\\(";
2497
2498 #define    HPUX10_CTYPE_DECLARATIONS2_TEST_CT  2
2499 static tTestDesc aHpux10_Ctype_Declarations2Tests[] = {
2500   { TT_NEGREP,   zHpux10_Ctype_Declarations2Bypass0, (regex_t*)NULL },
2501   { TT_EGREP,    zHpux10_Ctype_Declarations2Select0, (regex_t*)NULL }, };
2502
2503 /*
2504  *  Fix Command Arguments for Hpux10_Ctype_Declarations2
2505  */
2506 static const char* apzHpux10_Ctype_Declarations2Patch[] = {
2507     "format",
2508     "%0\n\n\
2509 #ifdef _PROTOTYPES\n\
2510      extern int _isalnum(int);\n\
2511      extern int _isalpha(int);\n\
2512      extern int _iscntrl(int);\n\
2513      extern int _isdigit(int);\n\
2514      extern int _isgraph(int);\n\
2515      extern int _islower(int);\n\
2516      extern int _isprint(int);\n\
2517      extern int _ispunct(int);\n\
2518      extern int _isspace(int);\n\
2519      extern int _isupper(int);\n\
2520      extern int _isxdigit(int);\n\
2521 #  else /* not _PROTOTYPES */\n\
2522      extern int _isalnum();\n\
2523      extern int _isalpha();\n\
2524      extern int _iscntrl();\n\
2525      extern int _isdigit();\n\
2526      extern int _isgraph();\n\
2527      extern int _islower();\n\
2528      extern int _isprint();\n\
2529      extern int _ispunct();\n\
2530      extern int _isspace();\n\
2531      extern int _isupper();\n\
2532      extern int _isxdigit();\n\
2533 #endif /* _PROTOTYPES */\n",
2534     (char*)NULL };
2535
2536 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2537  *
2538  *  Description of Hpux10_Stdio_Declarations fix
2539  */
2540 tSCC zHpux10_Stdio_DeclarationsName[] =
2541      "hpux10_stdio_declarations";
2542
2543 /*
2544  *  File name selection pattern
2545  */
2546 tSCC zHpux10_Stdio_DeclarationsList[] =
2547   "|stdio.h|";
2548 /*
2549  *  Machine/OS name selection pattern
2550  */
2551 #define apzHpux10_Stdio_DeclarationsMachs (const char**)NULL
2552
2553 /*
2554  *  content selection pattern - do fix if pattern found
2555  */
2556 tSCC zHpux10_Stdio_DeclarationsSelect0[] =
2557        "^#[ \t]*define _iob[ \t]*__iob";
2558
2559 /*
2560  *  content bypass pattern - skip fix if pattern found
2561  */
2562 tSCC zHpux10_Stdio_DeclarationsBypass0[] =
2563        "^[ \t]*extern[ \t]*int[ \t]*vsnprintf[ \t]*\\(";
2564
2565 #define    HPUX10_STDIO_DECLARATIONS_TEST_CT  2
2566 static tTestDesc aHpux10_Stdio_DeclarationsTests[] = {
2567   { TT_NEGREP,   zHpux10_Stdio_DeclarationsBypass0, (regex_t*)NULL },
2568   { TT_EGREP,    zHpux10_Stdio_DeclarationsSelect0, (regex_t*)NULL }, };
2569
2570 /*
2571  *  Fix Command Arguments for Hpux10_Stdio_Declarations
2572  */
2573 static const char* apzHpux10_Stdio_DeclarationsPatch[] = {
2574     "format",
2575     "%0\n\n\
2576 #  if defined(__STDC__) || defined(__cplusplus)\n\
2577      extern int snprintf(char *, size_t, const char *, ...);\n\
2578      extern int vsnprintf(char *, size_t, const char *, __va_list);\n\
2579 #  else /* not __STDC__) || __cplusplus */\n\
2580      extern int snprintf();\n\
2581      extern int vsnprintf();\n\
2582 #  endif /* __STDC__) || __cplusplus */\n",
2583     (char*)NULL };
2584
2585 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2586  *
2587  *  Description of Hpux11_Abs fix
2588  */
2589 tSCC zHpux11_AbsName[] =
2590      "hpux11_abs";
2591
2592 /*
2593  *  File name selection pattern
2594  */
2595 tSCC zHpux11_AbsList[] =
2596   "|stdlib.h|";
2597 /*
2598  *  Machine/OS name selection pattern
2599  */
2600 tSCC* apzHpux11_AbsMachs[] = {
2601         "ia64-hp-hpux11*",
2602         (const char*)NULL };
2603
2604 /*
2605  *  content selection pattern - do fix if pattern found
2606  */
2607 tSCC zHpux11_AbsSelect0[] =
2608        "ifndef _MATH_INCLUDED";
2609
2610 #define    HPUX11_ABS_TEST_CT  1
2611 static tTestDesc aHpux11_AbsTests[] = {
2612   { TT_EGREP,    zHpux11_AbsSelect0, (regex_t*)NULL }, };
2613
2614 /*
2615  *  Fix Command Arguments for Hpux11_Abs
2616  */
2617 static const char* apzHpux11_AbsPatch[] = {
2618     "format",
2619     "if !defined(_MATH_INCLUDED) || defined(__GNUG__)",
2620     (char*)NULL };
2621
2622 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2623  *
2624  *  Description of Hpux11_Fabsf fix
2625  */
2626 tSCC zHpux11_FabsfName[] =
2627      "hpux11_fabsf";
2628
2629 /*
2630  *  File name selection pattern
2631  */
2632 tSCC zHpux11_FabsfList[] =
2633   "|math.h|";
2634 /*
2635  *  Machine/OS name selection pattern
2636  */
2637 #define apzHpux11_FabsfMachs (const char**)NULL
2638
2639 /*
2640  *  content selection pattern - do fix if pattern found
2641  */
2642 tSCC zHpux11_FabsfSelect0[] =
2643        "^[ \t]*#[ \t]*define[ \t]+fabsf\\(.*";
2644
2645 /*
2646  *  content bypass pattern - skip fix if pattern found
2647  */
2648 tSCC zHpux11_FabsfBypass0[] =
2649        "__cplusplus";
2650
2651 #define    HPUX11_FABSF_TEST_CT  2
2652 static tTestDesc aHpux11_FabsfTests[] = {
2653   { TT_NEGREP,   zHpux11_FabsfBypass0, (regex_t*)NULL },
2654   { TT_EGREP,    zHpux11_FabsfSelect0, (regex_t*)NULL }, };
2655
2656 /*
2657  *  Fix Command Arguments for Hpux11_Fabsf
2658  */
2659 static const char* apzHpux11_FabsfPatch[] = {
2660     "format",
2661     "#ifndef __cplusplus\n\
2662 %0\n\
2663 #endif",
2664     (char*)NULL };
2665
2666 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2667  *
2668  *  Description of Hpux11_Size_T fix
2669  */
2670 tSCC zHpux11_Size_TName[] =
2671      "hpux11_size_t";
2672
2673 /*
2674  *  File name selection pattern
2675  */
2676 #define zHpux11_Size_TList (char*)NULL
2677 /*
2678  *  Machine/OS name selection pattern
2679  */
2680 tSCC* apzHpux11_Size_TMachs[] = {
2681         "*-hp-hpux11*",
2682         (const char*)NULL };
2683
2684 /*
2685  *  content selection pattern - do fix if pattern found
2686  */
2687 tSCC zHpux11_Size_TSelect0[] =
2688        "__size_t";
2689
2690 #define    HPUX11_SIZE_T_TEST_CT  1
2691 static tTestDesc aHpux11_Size_TTests[] = {
2692   { TT_EGREP,    zHpux11_Size_TSelect0, (regex_t*)NULL }, };
2693
2694 /*
2695  *  Fix Command Arguments for Hpux11_Size_T
2696  */
2697 static const char* apzHpux11_Size_TPatch[] = {
2698     "format",
2699     "_hpux_size_t",
2700     (char*)NULL };
2701
2702 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2703  *
2704  *  Description of Hpux11_Snprintf fix
2705  */
2706 tSCC zHpux11_SnprintfName[] =
2707      "hpux11_snprintf";
2708
2709 /*
2710  *  File name selection pattern
2711  */
2712 tSCC zHpux11_SnprintfList[] =
2713   "|stdio.h|";
2714 /*
2715  *  Machine/OS name selection pattern
2716  */
2717 #define apzHpux11_SnprintfMachs (const char**)NULL
2718
2719 /*
2720  *  content selection pattern - do fix if pattern found
2721  */
2722 tSCC zHpux11_SnprintfSelect0[] =
2723        "(extern int snprintf *\\(char *\\*, *(|__|_hpux_)size_t,) *(char *\\*, *\\.\\.\\.\\);)";
2724
2725 #define    HPUX11_SNPRINTF_TEST_CT  1
2726 static tTestDesc aHpux11_SnprintfTests[] = {
2727   { TT_EGREP,    zHpux11_SnprintfSelect0, (regex_t*)NULL }, };
2728
2729 /*
2730  *  Fix Command Arguments for Hpux11_Snprintf
2731  */
2732 static const char* apzHpux11_SnprintfPatch[] = {
2733     "format",
2734     "%1 const %3",
2735     (char*)NULL };
2736
2737 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2738  *
2739  *  Description of Hpux11_Uint32_C fix
2740  */
2741 tSCC zHpux11_Uint32_CName[] =
2742      "hpux11_uint32_c";
2743
2744 /*
2745  *  File name selection pattern
2746  */
2747 tSCC zHpux11_Uint32_CList[] =
2748   "|inttypes.h|";
2749 /*
2750  *  Machine/OS name selection pattern
2751  */
2752 #define apzHpux11_Uint32_CMachs (const char**)NULL
2753
2754 /*
2755  *  content selection pattern - do fix if pattern found
2756  */
2757 tSCC zHpux11_Uint32_CSelect0[] =
2758        "^#define UINT32_C\\(__c\\)[ \t]*__CONCAT__\\(__CONCAT_U__\\(__c\\),l\\)";
2759
2760 #define    HPUX11_UINT32_C_TEST_CT  1
2761 static tTestDesc aHpux11_Uint32_CTests[] = {
2762   { TT_EGREP,    zHpux11_Uint32_CSelect0, (regex_t*)NULL }, };
2763
2764 /*
2765  *  Fix Command Arguments for Hpux11_Uint32_C
2766  */
2767 static const char* apzHpux11_Uint32_CPatch[] = {
2768     "format",
2769     "#define UINT32_C(__c) __CONCAT__(__c,ul)",
2770     (char*)NULL };
2771
2772 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2773  *
2774  *  Description of Hpux11_Vsnprintf fix
2775  */
2776 tSCC zHpux11_VsnprintfName[] =
2777      "hpux11_vsnprintf";
2778
2779 /*
2780  *  File name selection pattern
2781  */
2782 tSCC zHpux11_VsnprintfList[] =
2783   "|stdio.h|";
2784 /*
2785  *  Machine/OS name selection pattern
2786  */
2787 #define apzHpux11_VsnprintfMachs (const char**)NULL
2788
2789 /*
2790  *  content selection pattern - do fix if pattern found
2791  */
2792 tSCC zHpux11_VsnprintfSelect0[] =
2793        "(extern int vsnprintf\\(char \\*, _[hpux]*_size_t, const char \\*,) __va__list\\);";
2794
2795 #define    HPUX11_VSNPRINTF_TEST_CT  1
2796 static tTestDesc aHpux11_VsnprintfTests[] = {
2797   { TT_EGREP,    zHpux11_VsnprintfSelect0, (regex_t*)NULL }, };
2798
2799 /*
2800  *  Fix Command Arguments for Hpux11_Vsnprintf
2801  */
2802 static const char* apzHpux11_VsnprintfPatch[] = {
2803     "format",
2804     "%1 __va_list);",
2805     (char*)NULL };
2806
2807 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2808  *
2809  *  Description of Hpux8_Bogus_Inlines fix
2810  */
2811 tSCC zHpux8_Bogus_InlinesName[] =
2812      "hpux8_bogus_inlines";
2813
2814 /*
2815  *  File name selection pattern
2816  */
2817 tSCC zHpux8_Bogus_InlinesList[] =
2818   "|math.h|";
2819 /*
2820  *  Machine/OS name selection pattern
2821  */
2822 #define apzHpux8_Bogus_InlinesMachs (const char**)NULL
2823
2824 /*
2825  *  content selection pattern - do fix if pattern found
2826  */
2827 tSCC zHpux8_Bogus_InlinesSelect0[] =
2828        "inline";
2829
2830 /*
2831  *  content bypass pattern - skip fix if pattern found
2832  */
2833 tSCC zHpux8_Bogus_InlinesBypass0[] =
2834        "__GNUG__";
2835
2836 #define    HPUX8_BOGUS_INLINES_TEST_CT  2
2837 static tTestDesc aHpux8_Bogus_InlinesTests[] = {
2838   { TT_NEGREP,   zHpux8_Bogus_InlinesBypass0, (regex_t*)NULL },
2839   { TT_EGREP,    zHpux8_Bogus_InlinesSelect0, (regex_t*)NULL }, };
2840
2841 /*
2842  *  Fix Command Arguments for Hpux8_Bogus_Inlines
2843  */
2844 static const char* apzHpux8_Bogus_InlinesPatch[] = { "sed",
2845     "-e", "s@inline int abs(int [a-z][a-z]*) {.*}@extern \"C\" int abs(int);@",
2846     "-e", "s@inline double abs(double [a-z][a-z]*) {.*}@@",
2847     "-e", "s@inline int sqr(int [a-z][a-z]*) {.*}@@",
2848     "-e", "s@inline double sqr(double [a-z][a-z]*) {.*}@@",
2849     (char*)NULL };
2850
2851 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2852  *
2853  *  Description of Hpux_Ctype_Macros fix
2854  */
2855 tSCC zHpux_Ctype_MacrosName[] =
2856      "hpux_ctype_macros";
2857
2858 /*
2859  *  File name selection pattern
2860  */
2861 tSCC zHpux_Ctype_MacrosList[] =
2862   "|ctype.h|";
2863 /*
2864  *  Machine/OS name selection pattern
2865  */
2866 #define apzHpux_Ctype_MacrosMachs (const char**)NULL
2867
2868 /*
2869  *  content selection pattern - do fix if pattern found
2870  */
2871 tSCC zHpux_Ctype_MacrosSelect0[] =
2872        "((: |\\()__SB_masks \\? )(__SB_masks\\[__(alnum|c)\\] & _IS)";
2873
2874 #define    HPUX_CTYPE_MACROS_TEST_CT  1
2875 static tTestDesc aHpux_Ctype_MacrosTests[] = {
2876   { TT_EGREP,    zHpux_Ctype_MacrosSelect0, (regex_t*)NULL }, };
2877
2878 /*
2879  *  Fix Command Arguments for Hpux_Ctype_Macros
2880  */
2881 static const char* apzHpux_Ctype_MacrosPatch[] = {
2882     "format",
2883     "%1(int)%3",
2884     (char*)NULL };
2885
2886 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2887  *
2888  *  Description of Hpux_Htonl fix
2889  */
2890 tSCC zHpux_HtonlName[] =
2891      "hpux_htonl";
2892
2893 /*
2894  *  File name selection pattern
2895  */
2896 tSCC zHpux_HtonlList[] =
2897   "|netinet/in.h|";
2898 /*
2899  *  Machine/OS name selection pattern
2900  */
2901 #define apzHpux_HtonlMachs (const char**)NULL
2902
2903 /*
2904  *  content selection pattern - do fix if pattern found
2905  */
2906 tSCC zHpux_HtonlSelect0[] =
2907        "#ifndef _XOPEN_SOURCE_EXTENDED\n\
2908 (/\\*\n\
2909  \\* Macros for number representation conversion\\.\n\
2910  \\*/\n\
2911 #ifndef ntohl)";
2912
2913 #define    HPUX_HTONL_TEST_CT  1
2914 static tTestDesc aHpux_HtonlTests[] = {
2915   { TT_EGREP,    zHpux_HtonlSelect0, (regex_t*)NULL }, };
2916
2917 /*
2918  *  Fix Command Arguments for Hpux_Htonl
2919  */
2920 static const char* apzHpux_HtonlPatch[] = {
2921     "format",
2922     "#if 1\n\
2923 %1",
2924     (char*)NULL };
2925
2926 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2927  *
2928  *  Description of Hpux_Long_Double fix
2929  */
2930 tSCC zHpux_Long_DoubleName[] =
2931      "hpux_long_double";
2932
2933 /*
2934  *  File name selection pattern
2935  */
2936 tSCC zHpux_Long_DoubleList[] =
2937   "|stdlib.h|";
2938 /*
2939  *  Machine/OS name selection pattern
2940  */
2941 #define apzHpux_Long_DoubleMachs (const char**)NULL
2942
2943 /*
2944  *  content selection pattern - do fix if pattern found
2945  */
2946 tSCC zHpux_Long_DoubleSelect0[] =
2947        "extern[ \t]long_double[ \t]strtold";
2948
2949 /*
2950  *  content bypass pattern - skip fix if pattern found
2951  */
2952 tSCC zHpux_Long_DoubleBypass0[] =
2953        "long_double_t";
2954
2955 #define    HPUX_LONG_DOUBLE_TEST_CT  2
2956 static tTestDesc aHpux_Long_DoubleTests[] = {
2957   { TT_NEGREP,   zHpux_Long_DoubleBypass0, (regex_t*)NULL },
2958   { TT_EGREP,    zHpux_Long_DoubleSelect0, (regex_t*)NULL }, };
2959
2960 /*
2961  *  Fix Command Arguments for Hpux_Long_Double
2962  */
2963 static const char* apzHpux_Long_DoublePatch[] = { "sed",
2964     "-e", "/^#[ \t]*ifndef _LONG_DOUBLE/,/\\/\\* _LONG_DOUBLE \\*\\//D",
2965     "-e", "s/long_double/long double/g",
2966     (char*)NULL };
2967
2968 /* * * * * * * * * * * * * * * * * * * * * * * * * *
2969  *
2970  *  Description of Hpux_Systime fix
2971  */
2972 tSCC zHpux_SystimeName[] =
2973      "hpux_systime";
2974
2975 /*
2976  *  File name selection pattern
2977  */
2978 tSCC zHpux_SystimeList[] =
2979   "|sys/time.h|";
2980 /*
2981  *  Machine/OS name selection pattern
2982  */
2983 #define apzHpux_SystimeMachs (const char**)NULL
2984
2985 /*
2986  *  content selection pattern - do fix if pattern found
2987  */
2988 tSCC zHpux_SystimeSelect0[] =
2989        "^extern struct sigevent;";
2990
2991 #define    HPUX_SYSTIME_TEST_CT  1
2992 static tTestDesc aHpux_SystimeTests[] = {
2993   { TT_EGREP,    zHpux_SystimeSelect0, (regex_t*)NULL }, };
2994
2995 /*
2996  *  Fix Command Arguments for Hpux_Systime
2997  */
2998 static const char* apzHpux_SystimePatch[] = {
2999     "format",
3000     "struct sigevent;",
3001     (char*)NULL };
3002
3003 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3004  *
3005  *  Description of Hpux_Spu_Info fix
3006  */
3007 tSCC zHpux_Spu_InfoName[] =
3008      "hpux_spu_info";
3009
3010 /*
3011  *  File name selection pattern
3012  */
3013 tSCC zHpux_Spu_InfoList[] =
3014   "|ia64/sys/getppdp.h|";
3015 /*
3016  *  Machine/OS name selection pattern
3017  */
3018 tSCC* apzHpux_Spu_InfoMachs[] = {
3019         "*-hp-hpux*",
3020         (const char*)NULL };
3021
3022 /*
3023  *  content selection pattern - do fix if pattern found
3024  */
3025 tSCC zHpux_Spu_InfoSelect0[] =
3026        "^.*extern.*spu_info.*";
3027
3028 #define    HPUX_SPU_INFO_TEST_CT  1
3029 static tTestDesc aHpux_Spu_InfoTests[] = {
3030   { TT_EGREP,    zHpux_Spu_InfoSelect0, (regex_t*)NULL }, };
3031
3032 /*
3033  *  Fix Command Arguments for Hpux_Spu_Info
3034  */
3035 static const char* apzHpux_Spu_InfoPatch[] = {
3036     "format",
3037     "#ifdef _KERNEL\n\
3038 %0\n\
3039 #endif",
3040     (char*)NULL };
3041
3042 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3043  *
3044  *  Description of Hpux_Extern_Errno fix
3045  */
3046 tSCC zHpux_Extern_ErrnoName[] =
3047      "hpux_extern_errno";
3048
3049 /*
3050  *  File name selection pattern
3051  */
3052 tSCC zHpux_Extern_ErrnoList[] =
3053   "|errno.h|";
3054 /*
3055  *  Machine/OS name selection pattern
3056  */
3057 tSCC* apzHpux_Extern_ErrnoMachs[] = {
3058         "*-hp-hpux10.*",
3059         "*-hp-hpux11.[0-2]*",
3060         (const char*)NULL };
3061
3062 /*
3063  *  content selection pattern - do fix if pattern found
3064  */
3065 tSCC zHpux_Extern_ErrnoSelect0[] =
3066        "^[ \t]*extern int errno;$";
3067
3068 #define    HPUX_EXTERN_ERRNO_TEST_CT  1
3069 static tTestDesc aHpux_Extern_ErrnoTests[] = {
3070   { TT_EGREP,    zHpux_Extern_ErrnoSelect0, (regex_t*)NULL }, };
3071
3072 /*
3073  *  Fix Command Arguments for Hpux_Extern_Errno
3074  */
3075 static const char* apzHpux_Extern_ErrnoPatch[] = {
3076     "format",
3077     "#ifdef __cplusplus\n\
3078 extern \"C\" {\n\
3079 #endif\n\
3080 %0\n\
3081 #ifdef __cplusplus\n\
3082 }\n\
3083 #endif",
3084     (char*)NULL };
3085
3086 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3087  *
3088  *  Description of Hpux_Pthread_Initializers fix
3089  */
3090 tSCC zHpux_Pthread_InitializersName[] =
3091      "hpux_pthread_initializers";
3092
3093 /*
3094  *  File name selection pattern
3095  */
3096 tSCC zHpux_Pthread_InitializersList[] =
3097   "|sys/pthread.h|";
3098 /*
3099  *  Machine/OS name selection pattern
3100  */
3101 tSCC* apzHpux_Pthread_InitializersMachs[] = {
3102         "*-hp-hpux11.[0-3]*",
3103         (const char*)NULL };
3104 #define HPUX_PTHREAD_INITIALIZERS_TEST_CT  0
3105 #define aHpux_Pthread_InitializersTests   (tTestDesc*)NULL
3106
3107 /*
3108  *  Fix Command Arguments for Hpux_Pthread_Initializers
3109  */
3110 static const char* apzHpux_Pthread_InitializersPatch[] = { "sed",
3111     "-e", "s@^[ \t]*1, 1, 1, 1,[ \t]*\\\\@\t{ 1, 1, 1, 1 },\t\t\t\t\t\t\t\\\\@",
3112     "-e", "s@^[ \t]*1,[ \t]*\\\\@\t{ 1, 0 }@",
3113     "-e", "/^[ \t]*0$/d",
3114     "-e", "s@__PTHREAD_MUTEX_VALID, 0@{ __PTHREAD_MUTEX_VALID, 0 }@",
3115     "-e", "s@^[ \t]*0, 0, -1, 0,[ \t]*\\\\@\t{ 0, 0, -1, 0 },\t\t\t\t\t\t\\\\@",
3116     "-e", "s@0, __LWP_MTX_VALID, 0, 1, 1, 1, 1,[ \t]*\\\\@{ 0, __LWP_MTX_VALID }, { 0, 1, 1, 1, 1 },\t\t\t\\\\@",
3117     "-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\\\\@",
3118     "-e", "s@^[ \t]*0, 0[ \t]*\\\\@\t{ 0, 0 }\t\t\t\t\t\t\t\\\\@",
3119     "-e", "s@__PTHREAD_COND_VALID, 0@{ __PTHREAD_COND_VALID, 0 }@",
3120     "-e", "s@__LWP_COND_VALID, 0,[ \t]*\\\\@{ __LWP_COND_VALID, 0 },\t\t\t\t\t\\\\@",
3121     "-e", "s@__PTHREAD_RWLOCK_VALID, 0@{ __PTHREAD_RWLOCK_VALID, 0 }@",
3122     "-e", "s@__LWP_RWLOCK_VALID, 0,[ \t]*\\\\@{ __LWP_RWLOCK_VALID, 0 },\t\t\t\t\t\\\\@",
3123     "-e", "s@^[ \t]*0, 0, 0, 0, 0, 0, 0[ \t]*\\\\@\t{ 0, 0, 0, 0, 0 }, { 0, 0}\t\t\t\t\t\\\\@",
3124     (char*)NULL };
3125
3126 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3127  *
3128  *  Description of Huge_Val_Hex fix
3129  */
3130 tSCC zHuge_Val_HexName[] =
3131      "huge_val_hex";
3132
3133 /*
3134  *  File name selection pattern
3135  */
3136 tSCC zHuge_Val_HexList[] =
3137   "|bits/huge_val.h|";
3138 /*
3139  *  Machine/OS name selection pattern
3140  */
3141 #define apzHuge_Val_HexMachs (const char**)NULL
3142
3143 /*
3144  *  content selection pattern - do fix if pattern found
3145  */
3146 tSCC zHuge_Val_HexSelect0[] =
3147        "^#[ \t]*define[ \t]*HUGE_VAL[ \t].*0x1\\.0p.*";
3148
3149 /*
3150  *  content bypass pattern - skip fix if pattern found
3151  */
3152 tSCC zHuge_Val_HexBypass0[] =
3153        "__builtin_huge_val";
3154
3155 #define    HUGE_VAL_HEX_TEST_CT  2
3156 static tTestDesc aHuge_Val_HexTests[] = {
3157   { TT_NEGREP,   zHuge_Val_HexBypass0, (regex_t*)NULL },
3158   { TT_EGREP,    zHuge_Val_HexSelect0, (regex_t*)NULL }, };
3159
3160 /*
3161  *  Fix Command Arguments for Huge_Val_Hex
3162  */
3163 static const char* apzHuge_Val_HexPatch[] = {
3164     "format",
3165     "#define HUGE_VAL (__builtin_huge_val())\n",
3166     (char*)NULL };
3167
3168 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3169  *
3170  *  Description of Huge_Valf_Hex fix
3171  */
3172 tSCC zHuge_Valf_HexName[] =
3173      "huge_valf_hex";
3174
3175 /*
3176  *  File name selection pattern
3177  */
3178 tSCC zHuge_Valf_HexList[] =
3179   "|bits/huge_val.h|";
3180 /*
3181  *  Machine/OS name selection pattern
3182  */
3183 #define apzHuge_Valf_HexMachs (const char**)NULL
3184
3185 /*
3186  *  content selection pattern - do fix if pattern found
3187  */
3188 tSCC zHuge_Valf_HexSelect0[] =
3189        "^#[ \t]*define[ \t]*HUGE_VALF[ \t].*0x1\\.0p.*";
3190
3191 /*
3192  *  content bypass pattern - skip fix if pattern found
3193  */
3194 tSCC zHuge_Valf_HexBypass0[] =
3195        "__builtin_huge_valf";
3196
3197 #define    HUGE_VALF_HEX_TEST_CT  2
3198 static tTestDesc aHuge_Valf_HexTests[] = {
3199   { TT_NEGREP,   zHuge_Valf_HexBypass0, (regex_t*)NULL },
3200   { TT_EGREP,    zHuge_Valf_HexSelect0, (regex_t*)NULL }, };
3201
3202 /*
3203  *  Fix Command Arguments for Huge_Valf_Hex
3204  */
3205 static const char* apzHuge_Valf_HexPatch[] = {
3206     "format",
3207     "#define HUGE_VALF (__builtin_huge_valf())\n",
3208     (char*)NULL };
3209
3210 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3211  *
3212  *  Description of Huge_Vall_Hex fix
3213  */
3214 tSCC zHuge_Vall_HexName[] =
3215      "huge_vall_hex";
3216
3217 /*
3218  *  File name selection pattern
3219  */
3220 tSCC zHuge_Vall_HexList[] =
3221   "|bits/huge_val.h|";
3222 /*
3223  *  Machine/OS name selection pattern
3224  */
3225 #define apzHuge_Vall_HexMachs (const char**)NULL
3226
3227 /*
3228  *  content selection pattern - do fix if pattern found
3229  */
3230 tSCC zHuge_Vall_HexSelect0[] =
3231        "^#[ \t]*define[ \t]*HUGE_VALL[ \t].*0x1\\.0p.*";
3232
3233 /*
3234  *  content bypass pattern - skip fix if pattern found
3235  */
3236 tSCC zHuge_Vall_HexBypass0[] =
3237        "__builtin_huge_vall";
3238
3239 #define    HUGE_VALL_HEX_TEST_CT  2
3240 static tTestDesc aHuge_Vall_HexTests[] = {
3241   { TT_NEGREP,   zHuge_Vall_HexBypass0, (regex_t*)NULL },
3242   { TT_EGREP,    zHuge_Vall_HexSelect0, (regex_t*)NULL }, };
3243
3244 /*
3245  *  Fix Command Arguments for Huge_Vall_Hex
3246  */
3247 static const char* apzHuge_Vall_HexPatch[] = {
3248     "format",
3249     "#define HUGE_VALL (__builtin_huge_vall())\n",
3250     (char*)NULL };
3251
3252 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3253  *
3254  *  Description of Int_Abort_Free_And_Exit fix
3255  */
3256 tSCC zInt_Abort_Free_And_ExitName[] =
3257      "int_abort_free_and_exit";
3258
3259 /*
3260  *  File name selection pattern
3261  */
3262 tSCC zInt_Abort_Free_And_ExitList[] =
3263   "|stdlib.h|";
3264 /*
3265  *  Machine/OS name selection pattern
3266  */
3267 #define apzInt_Abort_Free_And_ExitMachs (const char**)NULL
3268
3269 /*
3270  *  content selection pattern - do fix if pattern found
3271  */
3272 tSCC zInt_Abort_Free_And_ExitSelect0[] =
3273        "int[ \t]+(abort|free|exit)[ \t]*\\(";
3274
3275 /*
3276  *  content bypass pattern - skip fix if pattern found
3277  */
3278 tSCC zInt_Abort_Free_And_ExitBypass0[] =
3279        "_CLASSIC_ANSI_TYPES";
3280
3281 #define    INT_ABORT_FREE_AND_EXIT_TEST_CT  2
3282 static tTestDesc aInt_Abort_Free_And_ExitTests[] = {
3283   { TT_NEGREP,   zInt_Abort_Free_And_ExitBypass0, (regex_t*)NULL },
3284   { TT_EGREP,    zInt_Abort_Free_And_ExitSelect0, (regex_t*)NULL }, };
3285
3286 /*
3287  *  Fix Command Arguments for Int_Abort_Free_And_Exit
3288  */
3289 static const char* apzInt_Abort_Free_And_ExitPatch[] = {
3290     "format",
3291     "void\t%1(",
3292     (char*)NULL };
3293
3294 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3295  *
3296  *  Description of Io_Quotes_Def fix
3297  */
3298 tSCC zIo_Quotes_DefName[] =
3299      "io_quotes_def";
3300
3301 /*
3302  *  File name selection pattern
3303  */
3304 #define zIo_Quotes_DefList (char*)NULL
3305 /*
3306  *  Machine/OS name selection pattern
3307  */
3308 #define apzIo_Quotes_DefMachs (const char**)NULL
3309
3310 /*
3311  *  content selection pattern - do fix if pattern found
3312  */
3313 tSCC zIo_Quotes_DefSelect0[] =
3314        "define[ \t]+[A-Z0-9_]+IO[A-Z]*\\([a-zA-Z][,)]";
3315
3316 #define    IO_QUOTES_DEF_TEST_CT  1
3317 static tTestDesc aIo_Quotes_DefTests[] = {
3318   { TT_EGREP,    zIo_Quotes_DefSelect0, (regex_t*)NULL }, };
3319
3320 /*
3321  *  Fix Command Arguments for Io_Quotes_Def
3322  */
3323 static const char* apzIo_Quotes_DefPatch[] = {
3324     "char_macro_def",
3325     "IO",
3326     (char*)NULL };
3327
3328 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3329  *
3330  *  Description of Io_Quotes_Use fix
3331  */
3332 tSCC zIo_Quotes_UseName[] =
3333      "io_quotes_use";
3334
3335 /*
3336  *  File name selection pattern
3337  */
3338 #define zIo_Quotes_UseList (char*)NULL
3339 /*
3340  *  Machine/OS name selection pattern
3341  */
3342 #define apzIo_Quotes_UseMachs (const char**)NULL
3343
3344 /*
3345  *  content selection pattern - do fix if pattern found
3346  */
3347 tSCC zIo_Quotes_UseSelect0[] =
3348        "define[ \t]+[A-Z0-9_]+[ \t]+[A-Z0-9_]+IO[A-Z]*[ \t]*\\( *[^,']";
3349
3350 #define    IO_QUOTES_USE_TEST_CT  1
3351 static tTestDesc aIo_Quotes_UseTests[] = {
3352   { TT_EGREP,    zIo_Quotes_UseSelect0, (regex_t*)NULL }, };
3353
3354 /*
3355  *  Fix Command Arguments for Io_Quotes_Use
3356  */
3357 static const char* apzIo_Quotes_UsePatch[] = {
3358     "char_macro_use",
3359     "IO",
3360     (char*)NULL };
3361
3362 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3363  *
3364  *  Description of Ip_Missing_Semi fix
3365  */
3366 tSCC zIp_Missing_SemiName[] =
3367      "ip_missing_semi";
3368
3369 /*
3370  *  File name selection pattern
3371  */
3372 tSCC zIp_Missing_SemiList[] =
3373   "|netinet/ip.h|";
3374 /*
3375  *  Machine/OS name selection pattern
3376  */
3377 #define apzIp_Missing_SemiMachs (const char**)NULL
3378
3379 /*
3380  *  content selection pattern - do fix if pattern found
3381  */
3382 tSCC zIp_Missing_SemiSelect0[] =
3383        "}$";
3384
3385 #define    IP_MISSING_SEMI_TEST_CT  1
3386 static tTestDesc aIp_Missing_SemiTests[] = {
3387   { TT_EGREP,    zIp_Missing_SemiSelect0, (regex_t*)NULL }, };
3388
3389 /*
3390  *  Fix Command Arguments for Ip_Missing_Semi
3391  */
3392 static const char* apzIp_Missing_SemiPatch[] = { "sed",
3393     "-e", "/^struct/,/^};/s/}$/};/",
3394     (char*)NULL };
3395
3396 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3397  *
3398  *  Description of Irix___Restrict fix
3399  */
3400 tSCC zIrix___RestrictName[] =
3401      "irix___restrict";
3402
3403 /*
3404  *  File name selection pattern
3405  */
3406 tSCC zIrix___RestrictList[] =
3407   "|internal/sgimacros.h|";
3408 /*
3409  *  Machine/OS name selection pattern
3410  */
3411 tSCC* apzIrix___RestrictMachs[] = {
3412         "mips-sgi-irix6.5",
3413         (const char*)NULL };
3414
3415 /*
3416  *  content selection pattern - do fix if pattern found
3417  */
3418 tSCC zIrix___RestrictSelect0[] =
3419        "(#ifdef __c99\n\
3420 )(#[ \t]*define __restrict restrict)";
3421
3422 #define    IRIX___RESTRICT_TEST_CT  1
3423 static tTestDesc aIrix___RestrictTests[] = {
3424   { TT_EGREP,    zIrix___RestrictSelect0, (regex_t*)NULL }, };
3425
3426 /*
3427  *  Fix Command Arguments for Irix___Restrict
3428  */
3429 static const char* apzIrix___RestrictPatch[] = {
3430     "format",
3431     "%1#  ifndef __cplusplus\n\
3432 %2\n\
3433 #  endif",
3434     (char*)NULL };
3435
3436 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3437  *
3438  *  Description of Irix___Generic1 fix
3439  */
3440 tSCC zIrix___Generic1Name[] =
3441      "irix___generic1";
3442
3443 /*
3444  *  File name selection pattern
3445  */
3446 tSCC zIrix___Generic1List[] =
3447   "|internal/math_core.h|";
3448 /*
3449  *  Machine/OS name selection pattern
3450  */
3451 tSCC* apzIrix___Generic1Machs[] = {
3452         "mips-sgi-irix6.5",
3453         (const char*)NULL };
3454
3455 /*
3456  *  content selection pattern - do fix if pattern found
3457  */
3458 tSCC zIrix___Generic1Select0[] =
3459        "#define ([a-z]+)\\(x\\) *__generic.*";
3460
3461 #define    IRIX___GENERIC1_TEST_CT  1
3462 static tTestDesc aIrix___Generic1Tests[] = {
3463   { TT_EGREP,    zIrix___Generic1Select0, (regex_t*)NULL }, };
3464
3465 /*
3466  *  Fix Command Arguments for Irix___Generic1
3467  */
3468 static const char* apzIrix___Generic1Patch[] = {
3469     "format",
3470     "extern int %1(double);\n\
3471 extern int %1f(float);\n\
3472 extern int %1l(long double);\n\
3473 #define %1(x) (sizeof(x) == sizeof(double) ? _%1(x) \\\n\
3474                : sizeof(x) == sizeof(float) ? _%1f(x) \\\n\
3475                : _%1l(x))\n",
3476     (char*)NULL };
3477
3478 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3479  *
3480  *  Description of Irix___Generic2 fix
3481  */
3482 tSCC zIrix___Generic2Name[] =
3483      "irix___generic2";
3484
3485 /*
3486  *  File name selection pattern
3487  */
3488 tSCC zIrix___Generic2List[] =
3489   "|internal/math_core.h|";
3490 /*
3491  *  Machine/OS name selection pattern
3492  */
3493 tSCC* apzIrix___Generic2Machs[] = {
3494         "mips-sgi-irix6.5",
3495         (const char*)NULL };
3496
3497 /*
3498  *  content selection pattern - do fix if pattern found
3499  */
3500 tSCC zIrix___Generic2Select0[] =
3501        "#define ([a-z]+)\\(x,y\\) *__generic.*";
3502
3503 #define    IRIX___GENERIC2_TEST_CT  1
3504 static tTestDesc aIrix___Generic2Tests[] = {
3505   { TT_EGREP,    zIrix___Generic2Select0, (regex_t*)NULL }, };
3506
3507 /*
3508  *  Fix Command Arguments for Irix___Generic2
3509  */
3510 static const char* apzIrix___Generic2Patch[] = {
3511     "format",
3512     "#define %1(x,y) \\\n\
3513   ((sizeof(x)<=4 && sizeof(y)<=4) ? _%1f(x,y) \\\n\
3514    : (sizeof(x)<=8 && sizeof(y)<=8) ? _%1(x,y) \\\n\
3515    : _%1l(x,y))\n",
3516     (char*)NULL };
3517
3518 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3519  *
3520  *  Description of Irix_Asm_Apostrophe fix
3521  */
3522 tSCC zIrix_Asm_ApostropheName[] =
3523      "irix_asm_apostrophe";
3524
3525 /*
3526  *  File name selection pattern
3527  */
3528 tSCC zIrix_Asm_ApostropheList[] =
3529   "|sys/asm.h|";
3530 /*
3531  *  Machine/OS name selection pattern
3532  */
3533 #define apzIrix_Asm_ApostropheMachs (const char**)NULL
3534
3535 /*
3536  *  content selection pattern - do fix if pattern found
3537  */
3538 tSCC zIrix_Asm_ApostropheSelect0[] =
3539        "^[ \t]*#.*[Ww]e're";
3540
3541 #define    IRIX_ASM_APOSTROPHE_TEST_CT  1
3542 static tTestDesc aIrix_Asm_ApostropheTests[] = {
3543   { TT_EGREP,    zIrix_Asm_ApostropheSelect0, (regex_t*)NULL }, };
3544
3545 /*
3546  *  Fix Command Arguments for Irix_Asm_Apostrophe
3547  */
3548 static const char* apzIrix_Asm_ApostrophePatch[] = {
3549     "format",
3550     "%1 are",
3551     "^([ \t]*#.*[Ww]e)'re",
3552     (char*)NULL };
3553
3554 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3555  *
3556  *  Description of Irix_Limits_Const fix
3557  */
3558 tSCC zIrix_Limits_ConstName[] =
3559      "irix_limits_const";
3560
3561 /*
3562  *  File name selection pattern
3563  */
3564 tSCC zIrix_Limits_ConstList[] =
3565   "|fixinc-test-limits.h|limits.h|";
3566 /*
3567  *  Machine/OS name selection pattern
3568  */
3569 #define apzIrix_Limits_ConstMachs (const char**)NULL
3570
3571 /*
3572  *  content selection pattern - do fix if pattern found
3573  */
3574 tSCC zIrix_Limits_ConstSelect0[] =
3575        "^extern const ";
3576
3577 #define    IRIX_LIMITS_CONST_TEST_CT  1
3578 static tTestDesc aIrix_Limits_ConstTests[] = {
3579   { TT_EGREP,    zIrix_Limits_ConstSelect0, (regex_t*)NULL }, };
3580
3581 /*
3582  *  Fix Command Arguments for Irix_Limits_Const
3583  */
3584 static const char* apzIrix_Limits_ConstPatch[] = {
3585     "format",
3586     "extern __const ",
3587     (char*)NULL };
3588
3589 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3590  *
3591  *  Description of Irix_Socklen_T fix
3592  */
3593 tSCC zIrix_Socklen_TName[] =
3594      "irix_socklen_t";
3595
3596 /*
3597  *  File name selection pattern
3598  */
3599 tSCC zIrix_Socklen_TList[] =
3600   "|sys/socket.h|";
3601 /*
3602  *  Machine/OS name selection pattern
3603  */
3604 tSCC* apzIrix_Socklen_TMachs[] = {
3605         "mips-sgi-irix6.5",
3606         (const char*)NULL };
3607
3608 /*
3609  *  content selection pattern - do fix if pattern found
3610  */
3611 tSCC zIrix_Socklen_TSelect0[] =
3612        "(#define _SOCKLEN_T\n\
3613 )(typedef u_int32_t socklen_t;)";
3614
3615 #define    IRIX_SOCKLEN_T_TEST_CT  1
3616 static tTestDesc aIrix_Socklen_TTests[] = {
3617   { TT_EGREP,    zIrix_Socklen_TSelect0, (regex_t*)NULL }, };
3618
3619 /*
3620  *  Fix Command Arguments for Irix_Socklen_T
3621  */
3622 static const char* apzIrix_Socklen_TPatch[] = {
3623     "format",
3624     "%1#if _NO_XOPEN4 && _NO_XOPEN5\n\
3625 typedef int socklen_t;\n\
3626 #else\n\
3627 %2\n\
3628 #endif /* _NO_XOPEN4 && _NO_XOPEN5 */",
3629     (char*)NULL };
3630
3631 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3632  *
3633  *  Description of Irix_Stdio_Va_List fix
3634  */
3635 tSCC zIrix_Stdio_Va_ListName[] =
3636      "irix_stdio_va_list";
3637
3638 /*
3639  *  File name selection pattern
3640  */
3641 tSCC zIrix_Stdio_Va_ListList[] =
3642   "|stdio.h|internal/stdio_core.h|";
3643 /*
3644  *  Machine/OS name selection pattern
3645  */
3646 #define apzIrix_Stdio_Va_ListMachs (const char**)NULL
3647
3648 /*
3649  *  content selection pattern - do fix if pattern found
3650  */
3651 tSCC zIrix_Stdio_Va_ListSelect0[] =
3652        "/\\* va_list \\*/ char \\*";
3653
3654 #define    IRIX_STDIO_VA_LIST_TEST_CT  1
3655 static tTestDesc aIrix_Stdio_Va_ListTests[] = {
3656   { TT_EGREP,    zIrix_Stdio_Va_ListSelect0, (regex_t*)NULL }, };
3657
3658 /*
3659  *  Fix Command Arguments for Irix_Stdio_Va_List
3660  */
3661 static const char* apzIrix_Stdio_Va_ListPatch[] = {
3662     "format",
3663     "__gnuc_va_list",
3664     (char*)NULL };
3665
3666 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3667  *
3668  *  Description of Irix_Wcsftime fix
3669  */
3670 tSCC zIrix_WcsftimeName[] =
3671      "irix_wcsftime";
3672
3673 /*
3674  *  File name selection pattern
3675  */
3676 tSCC zIrix_WcsftimeList[] =
3677   "|internal/wchar_core.h|";
3678 /*
3679  *  Machine/OS name selection pattern
3680  */
3681 tSCC* apzIrix_WcsftimeMachs[] = {
3682         "mips-sgi-irix6.5",
3683         (const char*)NULL };
3684
3685 /*
3686  *  content selection pattern - do fix if pattern found
3687  */
3688 tSCC zIrix_WcsftimeSelect0[] =
3689        "#if _NO_XOPEN5\n\
3690 (extern size_t[ \t]+wcsftime.*const char *.*)";
3691
3692 #define    IRIX_WCSFTIME_TEST_CT  1
3693 static tTestDesc aIrix_WcsftimeTests[] = {
3694   { TT_EGREP,    zIrix_WcsftimeSelect0, (regex_t*)NULL }, };
3695
3696 /*
3697  *  Fix Command Arguments for Irix_Wcsftime
3698  */
3699 static const char* apzIrix_WcsftimePatch[] = {
3700     "format",
3701     "#if _NO_XOPEN5 && !defined(__c99)\n\
3702 %1",
3703     (char*)NULL };
3704
3705 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3706  *
3707  *  Description of Isc_Fmod fix
3708  */
3709 tSCC zIsc_FmodName[] =
3710      "isc_fmod";
3711
3712 /*
3713  *  File name selection pattern
3714  */
3715 tSCC zIsc_FmodList[] =
3716   "|math.h|";
3717 /*
3718  *  Machine/OS name selection pattern
3719  */
3720 #define apzIsc_FmodMachs (const char**)NULL
3721
3722 /*
3723  *  content selection pattern - do fix if pattern found
3724  */
3725 tSCC zIsc_FmodSelect0[] =
3726        "fmod\\(double\\)";
3727
3728 #define    ISC_FMOD_TEST_CT  1
3729 static tTestDesc aIsc_FmodTests[] = {
3730   { TT_EGREP,    zIsc_FmodSelect0, (regex_t*)NULL }, };
3731
3732 /*
3733  *  Fix Command Arguments for Isc_Fmod
3734  */
3735 static const char* apzIsc_FmodPatch[] = {
3736     "format",
3737     "fmod(double, double)",
3738     (char*)NULL };
3739
3740 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3741  *
3742  *  Description of Isc_Omits_With_Stdc fix
3743  */
3744 tSCC zIsc_Omits_With_StdcName[] =
3745      "isc_omits_with_stdc";
3746
3747 /*
3748  *  File name selection pattern
3749  */
3750 tSCC zIsc_Omits_With_StdcList[] =
3751   "|stdio.h|math.h|ctype.h|sys/limits.h|sys/fcntl.h|sys/dirent.h|";
3752 /*
3753  *  Machine/OS name selection pattern
3754  */
3755 #define apzIsc_Omits_With_StdcMachs (const char**)NULL
3756
3757 /*
3758  *  content selection pattern - do fix if pattern found
3759  */
3760 tSCC zIsc_Omits_With_StdcSelect0[] =
3761        "!defined\\(__STDC__\\) && !defined\\(_POSIX_SOURCE\\)";
3762
3763 #define    ISC_OMITS_WITH_STDC_TEST_CT  1
3764 static tTestDesc aIsc_Omits_With_StdcTests[] = {
3765   { TT_EGREP,    zIsc_Omits_With_StdcSelect0, (regex_t*)NULL }, };
3766
3767 /*
3768  *  Fix Command Arguments for Isc_Omits_With_Stdc
3769  */
3770 static const char* apzIsc_Omits_With_StdcPatch[] = {
3771     "format",
3772     "!defined(_POSIX_SOURCE)",
3773     (char*)NULL };
3774
3775 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3776  *
3777  *  Description of Kandr_Concat fix
3778  */
3779 tSCC zKandr_ConcatName[] =
3780      "kandr_concat";
3781
3782 /*
3783  *  File name selection pattern
3784  */
3785 tSCC zKandr_ConcatList[] =
3786   "|sparc/asm_linkage.h|sun3/asm_linkage.h|sun3x/asm_linkage.h|sun4/asm_linkage.h|sun4c/asm_linkage.h|sun4m/asm_linkage.h|sun4c/debug/asm_linkage.h|sun4m/debug/asm_linkage.h|arm/as_support.h|arm/mc_type.h|arm/xcb.h|dev/chardefmac.h|dev/ps_irq.h|dev/screen.h|dev/scsi.h|sys/tty.h|Xm.acorn/XmP.h|bsd43/bsd43_.h|";
3787 /*
3788  *  Machine/OS name selection pattern
3789  */
3790 #define apzKandr_ConcatMachs (const char**)NULL
3791
3792 /*
3793  *  content selection pattern - do fix if pattern found
3794  */
3795 tSCC zKandr_ConcatSelect0[] =
3796        "/\\*\\*/";
3797
3798 #define    KANDR_CONCAT_TEST_CT  1
3799 static tTestDesc aKandr_ConcatTests[] = {
3800   { TT_EGREP,    zKandr_ConcatSelect0, (regex_t*)NULL }, };
3801
3802 /*
3803  *  Fix Command Arguments for Kandr_Concat
3804  */
3805 static const char* apzKandr_ConcatPatch[] = {
3806     "format",
3807     "##",
3808     (char*)NULL };
3809
3810 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3811  *
3812  *  Description of Libc1_G_Va_List fix
3813  */
3814 tSCC zLibc1_G_Va_ListName[] =
3815      "libc1_G_va_list";
3816
3817 /*
3818  *  File name selection pattern
3819  */
3820 tSCC zLibc1_G_Va_ListList[] =
3821   "|_G_config.h|";
3822 /*
3823  *  Machine/OS name selection pattern
3824  */
3825 tSCC* apzLibc1_G_Va_ListMachs[] = {
3826         "*-*-linux*libc1",
3827         (const char*)NULL };
3828
3829 /*
3830  *  content selection pattern - do fix if pattern found
3831  */
3832 tSCC zLibc1_G_Va_ListSelect0[] =
3833        "typedef void \\* _G_va_list;";
3834
3835 #define    LIBC1_G_VA_LIST_TEST_CT  1
3836 static tTestDesc aLibc1_G_Va_ListTests[] = {
3837   { TT_EGREP,    zLibc1_G_Va_ListSelect0, (regex_t*)NULL }, };
3838
3839 /*
3840  *  Fix Command Arguments for Libc1_G_Va_List
3841  */
3842 static const char* apzLibc1_G_Va_ListPatch[] = {
3843     "format",
3844     "typedef __builtin_va_list _G_va_list;",
3845     (char*)NULL };
3846
3847 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3848  *
3849  *  Description of Libc1_Ifdefd_Memx fix
3850  */
3851 tSCC zLibc1_Ifdefd_MemxName[] =
3852      "libc1_ifdefd_memx";
3853
3854 /*
3855  *  File name selection pattern
3856  */
3857 tSCC zLibc1_Ifdefd_MemxList[] =
3858   "|testing.h|string.h|";
3859 /*
3860  *  Machine/OS name selection pattern
3861  */
3862 #define apzLibc1_Ifdefd_MemxMachs (const char**)NULL
3863
3864 /*
3865  *  content selection pattern - do fix if pattern found
3866  */
3867 tSCC zLibc1_Ifdefd_MemxSelect0[] =
3868        "' is a built-in function for gcc 2\\.x\\. \\*/";
3869
3870 /*
3871  *  content bypass pattern - skip fix if pattern found
3872  */
3873 tSCC zLibc1_Ifdefd_MemxBypass0[] =
3874        "__cplusplus";
3875
3876 #define    LIBC1_IFDEFD_MEMX_TEST_CT  2
3877 static tTestDesc aLibc1_Ifdefd_MemxTests[] = {
3878   { TT_NEGREP,   zLibc1_Ifdefd_MemxBypass0, (regex_t*)NULL },
3879   { TT_EGREP,    zLibc1_Ifdefd_MemxSelect0, (regex_t*)NULL }, };
3880
3881 /*
3882  *  Fix Command Arguments for Libc1_Ifdefd_Memx
3883  */
3884 static const char* apzLibc1_Ifdefd_MemxPatch[] = {
3885     "format",
3886     "%1",
3887     "/\\* `mem...' is a built-in function for gcc 2\\.x\\. \\*/\n\
3888 #if defined\\(__STDC__\\) && __GNUC__ < 2\n\
3889 (/\\* .* \\*/\n\
3890 extern [a-z_]+ mem.*(\n\
3891 [^#].*)*;)\n\
3892 #endif",
3893     (char*)NULL };
3894
3895 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3896  *
3897  *  Description of Linux_Ia64_Ucontext fix
3898  */
3899 tSCC zLinux_Ia64_UcontextName[] =
3900      "linux_ia64_ucontext";
3901
3902 /*
3903  *  File name selection pattern
3904  */
3905 tSCC zLinux_Ia64_UcontextList[] =
3906   "|sys/ucontext.h|";
3907 /*
3908  *  Machine/OS name selection pattern
3909  */
3910 tSCC* apzLinux_Ia64_UcontextMachs[] = {
3911         "ia64-*-linux*",
3912         (const char*)NULL };
3913
3914 /*
3915  *  content selection pattern - do fix if pattern found
3916  */
3917 tSCC zLinux_Ia64_UcontextSelect0[] =
3918        "\\(\\(\\(char \\*\\) &\\(\\(struct sigcontext \\*\\) 0\\)->sc_gr\\[0\\]\\) - \\(char \\*\\) 0\\)";
3919
3920 #define    LINUX_IA64_UCONTEXT_TEST_CT  1
3921 static tTestDesc aLinux_Ia64_UcontextTests[] = {
3922   { TT_EGREP,    zLinux_Ia64_UcontextSelect0, (regex_t*)NULL }, };
3923
3924 /*
3925  *  Fix Command Arguments for Linux_Ia64_Ucontext
3926  */
3927 static const char* apzLinux_Ia64_UcontextPatch[] = {
3928     "format",
3929     "__builtin_offsetof (struct sigcontext, sc_gr[0])",
3930     (char*)NULL };
3931
3932 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3933  *
3934  *  Description of Lynxos_No_Warning_In_Sys_Time_H fix
3935  */
3936 tSCC zLynxos_No_Warning_In_Sys_Time_HName[] =
3937      "lynxos_no_warning_in_sys_time_h";
3938
3939 /*
3940  *  File name selection pattern
3941  */
3942 tSCC zLynxos_No_Warning_In_Sys_Time_HList[] =
3943   "|sys/time.h|";
3944 /*
3945  *  Machine/OS name selection pattern
3946  */
3947 #define apzLynxos_No_Warning_In_Sys_Time_HMachs (const char**)NULL
3948
3949 /*
3950  *  content selection pattern - do fix if pattern found
3951  */
3952 tSCC zLynxos_No_Warning_In_Sys_Time_HSelect0[] =
3953        "#warning[ \t]+Using <time.h> instead of <sys/time.h>";
3954
3955 #define    LYNXOS_NO_WARNING_IN_SYS_TIME_H_TEST_CT  1
3956 static tTestDesc aLynxos_No_Warning_In_Sys_Time_HTests[] = {
3957   { TT_EGREP,    zLynxos_No_Warning_In_Sys_Time_HSelect0, (regex_t*)NULL }, };
3958
3959 /*
3960  *  Fix Command Arguments for Lynxos_No_Warning_In_Sys_Time_H
3961  */
3962 static const char* apzLynxos_No_Warning_In_Sys_Time_HPatch[] = {
3963     "format",
3964     "",
3965     (char*)NULL };
3966
3967 /* * * * * * * * * * * * * * * * * * * * * * * * * *
3968  *
3969  *  Description of Lynxos_Missing_Putenv fix
3970  */
3971 tSCC zLynxos_Missing_PutenvName[] =
3972      "lynxos_missing_putenv";
3973
3974 /*
3975  *  File name selection pattern
3976  */
3977 tSCC zLynxos_Missing_PutenvList[] =
3978   "|stdlib.h|";
3979 /*
3980  *  Machine/OS name selection pattern
3981  */
3982 tSCC* apzLynxos_Missing_PutenvMachs[] = {
3983         "*-*-lynxos*",
3984         (const char*)NULL };
3985
3986 /*
3987  *  content selection pattern - do fix if pattern found
3988  */
3989 tSCC zLynxos_Missing_PutenvSelect0[] =
3990        "extern char \\*getenv[ \t]*_AP\\(\\(const char \\*\\)\\);";
3991
3992 /*
3993  *  content bypass pattern - skip fix if pattern found
3994  */
3995 tSCC zLynxos_Missing_PutenvBypass0[] =
3996        "putenv[ \\t]*\\(";
3997
3998 #define    LYNXOS_MISSING_PUTENV_TEST_CT  2
3999 static tTestDesc aLynxos_Missing_PutenvTests[] = {
4000   { TT_NEGREP,   zLynxos_Missing_PutenvBypass0, (regex_t*)NULL },
4001   { TT_EGREP,    zLynxos_Missing_PutenvSelect0, (regex_t*)NULL }, };
4002
4003 /*
4004  *  Fix Command Arguments for Lynxos_Missing_Putenv
4005  */
4006 static const char* apzLynxos_Missing_PutenvPatch[] = {
4007     "format",
4008     "%0\n\
4009 extern int putenv\t\t\t\t_AP((char *));",
4010     "extern char \\*getenv[ \t]*_AP\\(\\(const char \\*\\)\\);",
4011     (char*)NULL };
4012
4013 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4014  *
4015  *  Description of Machine_Ansi_H_Va_List fix
4016  */
4017 tSCC zMachine_Ansi_H_Va_ListName[] =
4018      "machine_ansi_h_va_list";
4019
4020 /*
4021  *  File name selection pattern
4022  */
4023 #define zMachine_Ansi_H_Va_ListList (char*)NULL
4024 /*
4025  *  Machine/OS name selection pattern
4026  */
4027 #define apzMachine_Ansi_H_Va_ListMachs (const char**)NULL
4028
4029 /*
4030  *  content selection pattern - do fix if pattern found
4031  */
4032 tSCC zMachine_Ansi_H_Va_ListSelect0[] =
4033        "define[ \t]+_BSD_VA_LIST_[ \t]";
4034
4035 /*
4036  *  content bypass pattern - skip fix if pattern found
4037  */
4038 tSCC zMachine_Ansi_H_Va_ListBypass0[] =
4039        "__builtin_va_list";
4040
4041 #define    MACHINE_ANSI_H_VA_LIST_TEST_CT  2
4042 static tTestDesc aMachine_Ansi_H_Va_ListTests[] = {
4043   { TT_NEGREP,   zMachine_Ansi_H_Va_ListBypass0, (regex_t*)NULL },
4044   { TT_EGREP,    zMachine_Ansi_H_Va_ListSelect0, (regex_t*)NULL }, };
4045
4046 /*
4047  *  Fix Command Arguments for Machine_Ansi_H_Va_List
4048  */
4049 static const char* apzMachine_Ansi_H_Va_ListPatch[] = {
4050     "format",
4051     "%1__builtin_va_list",
4052     "(define[ \t]+_BSD_VA_LIST_[ \t]+).*",
4053     (char*)NULL };
4054
4055 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4056  *
4057  *  Description of Machine_Name fix
4058  */
4059 tSCC zMachine_NameName[] =
4060      "machine_name";
4061
4062 /*
4063  *  File name selection pattern
4064  */
4065 #define zMachine_NameList (char*)NULL
4066 /*
4067  *  Machine/OS name selection pattern
4068  */
4069 #define apzMachine_NameMachs (const char**)NULL
4070
4071 /*
4072  *  perform the C function call test
4073  */
4074 tSCC zMachine_NameFTst0[] = "machine_name";
4075
4076 #define    MACHINE_NAME_TEST_CT  1
4077 static tTestDesc aMachine_NameTests[] = {
4078   { TT_FUNCTION, zMachine_NameFTst0,   0 /* unused */ }, };
4079
4080 /*
4081  *  Fix Command Arguments for Machine_Name
4082  */
4083 static const char* apzMachine_NamePatch[] = {
4084     "machine_name",
4085     (char*)NULL };
4086
4087 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4088  *
4089  *  Description of Math_Exception fix
4090  */
4091 tSCC zMath_ExceptionName[] =
4092      "math_exception";
4093
4094 /*
4095  *  File name selection pattern
4096  */
4097 tSCC zMath_ExceptionList[] =
4098   "|math.h|";
4099 /*
4100  *  Machine/OS name selection pattern
4101  */
4102 #define apzMath_ExceptionMachs (const char**)NULL
4103
4104 /*
4105  *  content selection pattern - do fix if pattern found
4106  */
4107 tSCC zMath_ExceptionSelect0[] =
4108        "struct exception";
4109
4110 /*
4111  *  content bypass pattern - skip fix if pattern found
4112  */
4113 tSCC zMath_ExceptionBypass0[] =
4114        "We have a problem when using C\\+\\+|for C\\+\\+, _[a-z0-9A-Z_]+_exception; for C, exception";
4115
4116 #define    MATH_EXCEPTION_TEST_CT  2
4117 static tTestDesc aMath_ExceptionTests[] = {
4118   { TT_NEGREP,   zMath_ExceptionBypass0, (regex_t*)NULL },
4119   { TT_EGREP,    zMath_ExceptionSelect0, (regex_t*)NULL }, };
4120
4121 /*
4122  *  Fix Command Arguments for Math_Exception
4123  */
4124 static const char* apzMath_ExceptionPatch[] = {
4125     "wrap",
4126     "#ifdef __cplusplus\n\
4127 #define exception __math_exception\n\
4128 #endif\n",
4129     "#ifdef __cplusplus\n\
4130 #undef exception\n\
4131 #endif\n",
4132     (char*)NULL };
4133
4134 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4135  *
4136  *  Description of Math_Huge_Val_From_Dbl_Max fix
4137  */
4138 tSCC zMath_Huge_Val_From_Dbl_MaxName[] =
4139      "math_huge_val_from_dbl_max";
4140
4141 /*
4142  *  File name selection pattern
4143  */
4144 tSCC zMath_Huge_Val_From_Dbl_MaxList[] =
4145   "|math.h|";
4146 /*
4147  *  Machine/OS name selection pattern
4148  */
4149 #define apzMath_Huge_Val_From_Dbl_MaxMachs (const char**)NULL
4150
4151 /*
4152  *  content selection pattern - do fix if pattern found
4153  */
4154 tSCC zMath_Huge_Val_From_Dbl_MaxSelect0[] =
4155        "define[ \t]+HUGE_VAL[ \t]+DBL_MAX";
4156
4157 /*
4158  *  content bypass pattern - skip fix if pattern found
4159  */
4160 tSCC zMath_Huge_Val_From_Dbl_MaxBypass0[] =
4161        "define[ \t]+DBL_MAX";
4162
4163 #define    MATH_HUGE_VAL_FROM_DBL_MAX_TEST_CT  2
4164 static tTestDesc aMath_Huge_Val_From_Dbl_MaxTests[] = {
4165   { TT_NEGREP,   zMath_Huge_Val_From_Dbl_MaxBypass0, (regex_t*)NULL },
4166   { TT_EGREP,    zMath_Huge_Val_From_Dbl_MaxSelect0, (regex_t*)NULL }, };
4167
4168 /*
4169  *  Fix Command Arguments for Math_Huge_Val_From_Dbl_Max
4170  */
4171 static const char* apzMath_Huge_Val_From_Dbl_MaxPatch[] = { "sh", "-c",
4172     "\tdbl_max_def=`egrep 'define[ \t]+DBL_MAX[ \t]+.*' float.h | sed 's/.*DBL_MAX[ \t]*//' 2>/dev/null`\n\n\
4173 \tif ( test -n \"${dbl_max_def}\" ) > /dev/null 2>&1\n\
4174 \tthen sed -e '/define[ \t]*HUGE_VAL[ \t]*DBL_MAX/s@DBL_MAX@'\"$dbl_max_def@\"\n\
4175 \telse cat\n\
4176 \tfi",
4177     (char*)NULL };
4178
4179 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4180  *
4181  *  Description of Nested_Auth_Des fix
4182  */
4183 tSCC zNested_Auth_DesName[] =
4184      "nested_auth_des";
4185
4186 /*
4187  *  File name selection pattern
4188  */
4189 tSCC zNested_Auth_DesList[] =
4190   "|rpc/rpc.h|";
4191 /*
4192  *  Machine/OS name selection pattern
4193  */
4194 #define apzNested_Auth_DesMachs (const char**)NULL
4195
4196 /*
4197  *  content selection pattern - do fix if pattern found
4198  */
4199 tSCC zNested_Auth_DesSelect0[] =
4200        "(/\\*.*rpc/auth_des\\.h>.*)/\\*";
4201
4202 #define    NESTED_AUTH_DES_TEST_CT  1
4203 static tTestDesc aNested_Auth_DesTests[] = {
4204   { TT_EGREP,    zNested_Auth_DesSelect0, (regex_t*)NULL }, };
4205
4206 /*
4207  *  Fix Command Arguments for Nested_Auth_Des
4208  */
4209 static const char* apzNested_Auth_DesPatch[] = {
4210     "format",
4211     "%1*/ /*",
4212     (char*)NULL };
4213
4214 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4215  *
4216  *  Description of Nested_Motorola fix
4217  */
4218 tSCC zNested_MotorolaName[] =
4219      "nested_motorola";
4220
4221 /*
4222  *  File name selection pattern
4223  */
4224 tSCC zNested_MotorolaList[] =
4225   "|sys/limits.h|limits.h|";
4226 /*
4227  *  Machine/OS name selection pattern
4228  */
4229 tSCC* apzNested_MotorolaMachs[] = {
4230         "m68k-motorola-sysv*",
4231         (const char*)NULL };
4232
4233 /*
4234  *  content selection pattern - do fix if pattern found
4235  */
4236 tSCC zNested_MotorolaSelect0[] =
4237        "max # bytes atomic in write|error value returned by Math lib";
4238
4239 #define    NESTED_MOTOROLA_TEST_CT  1
4240 static tTestDesc aNested_MotorolaTests[] = {
4241   { TT_EGREP,    zNested_MotorolaSelect0, (regex_t*)NULL }, };
4242
4243 /*
4244  *  Fix Command Arguments for Nested_Motorola
4245  */
4246 static const char* apzNested_MotorolaPatch[] = { "sed",
4247     "-e", "s@^\\(#undef[ \t][ \t]*PIPE_BUF[ \t]*/\\* max # bytes atomic in write to a\\)$@\\1 */@",
4248     "-e", "s@\\(/\\*#define\tHUGE_VAL\t3.[0-9e+]* \\)\\(/\\*error value returned by Math lib\\*/\\)$@\\1*/ \\2@",
4249     (char*)NULL };
4250
4251 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4252  *
4253  *  Description of Nested_Sys_Limits fix
4254  */
4255 tSCC zNested_Sys_LimitsName[] =
4256      "nested_sys_limits";
4257
4258 /*
4259  *  File name selection pattern
4260  */
4261 tSCC zNested_Sys_LimitsList[] =
4262   "|sys/limits.h|";
4263 /*
4264  *  Machine/OS name selection pattern
4265  */
4266 #define apzNested_Sys_LimitsMachs (const char**)NULL
4267
4268 /*
4269  *  content selection pattern - do fix if pattern found
4270  */
4271 tSCC zNested_Sys_LimitsSelect0[] =
4272        "CHILD_MAX";
4273
4274 #define    NESTED_SYS_LIMITS_TEST_CT  1
4275 static tTestDesc aNested_Sys_LimitsTests[] = {
4276   { TT_EGREP,    zNested_Sys_LimitsSelect0, (regex_t*)NULL }, };
4277
4278 /*
4279  *  Fix Command Arguments for Nested_Sys_Limits
4280  */
4281 static const char* apzNested_Sys_LimitsPatch[] = { "sed",
4282     "-e", "/CHILD_MAX/s,/\\* Max, Max,",
4283     "-e", "/OPEN_MAX/s,/\\* Max, Max,",
4284     (char*)NULL };
4285
4286 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4287  *
4288  *  Description of Netbsd_Extra_Semicolon fix
4289  */
4290 tSCC zNetbsd_Extra_SemicolonName[] =
4291      "netbsd_extra_semicolon";
4292
4293 /*
4294  *  File name selection pattern
4295  */
4296 tSCC zNetbsd_Extra_SemicolonList[] =
4297   "|sys/cdefs.h|";
4298 /*
4299  *  Machine/OS name selection pattern
4300  */
4301 tSCC* apzNetbsd_Extra_SemicolonMachs[] = {
4302         "*-*-netbsd*",
4303         (const char*)NULL };
4304
4305 /*
4306  *  content selection pattern - do fix if pattern found
4307  */
4308 tSCC zNetbsd_Extra_SemicolonSelect0[] =
4309        "#define[ \t]*__END_DECLS[ \t]*};";
4310
4311 #define    NETBSD_EXTRA_SEMICOLON_TEST_CT  1
4312 static tTestDesc aNetbsd_Extra_SemicolonTests[] = {
4313   { TT_EGREP,    zNetbsd_Extra_SemicolonSelect0, (regex_t*)NULL }, };
4314
4315 /*
4316  *  Fix Command Arguments for Netbsd_Extra_Semicolon
4317  */
4318 static const char* apzNetbsd_Extra_SemicolonPatch[] = {
4319     "format",
4320     "#define __END_DECLS }",
4321     (char*)NULL };
4322
4323 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4324  *
4325  *  Description of Next_Math_Prefix fix
4326  */
4327 tSCC zNext_Math_PrefixName[] =
4328      "next_math_prefix";
4329
4330 /*
4331  *  File name selection pattern
4332  */
4333 tSCC zNext_Math_PrefixList[] =
4334   "|ansi/math.h|";
4335 /*
4336  *  Machine/OS name selection pattern
4337  */
4338 #define apzNext_Math_PrefixMachs (const char**)NULL
4339
4340 /*
4341  *  content selection pattern - do fix if pattern found
4342  */
4343 tSCC zNext_Math_PrefixSelect0[] =
4344        "^extern[ \t]+double[ \t]+__const__[ \t]";
4345
4346 #define    NEXT_MATH_PREFIX_TEST_CT  1
4347 static tTestDesc aNext_Math_PrefixTests[] = {
4348   { TT_EGREP,    zNext_Math_PrefixSelect0, (regex_t*)NULL }, };
4349
4350 /*
4351  *  Fix Command Arguments for Next_Math_Prefix
4352  */
4353 static const char* apzNext_Math_PrefixPatch[] = {
4354     "format",
4355     "extern double %1(",
4356     "^extern[ \t]+double[ \t]+__const__[ \t]+([a-z]+)\\(",
4357     (char*)NULL };
4358
4359 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4360  *
4361  *  Description of Next_Template fix
4362  */
4363 tSCC zNext_TemplateName[] =
4364      "next_template";
4365
4366 /*
4367  *  File name selection pattern
4368  */
4369 tSCC zNext_TemplateList[] =
4370   "|bsd/libc.h|";
4371 /*
4372  *  Machine/OS name selection pattern
4373  */
4374 #define apzNext_TemplateMachs (const char**)NULL
4375
4376 /*
4377  *  content selection pattern - do fix if pattern found
4378  */
4379 tSCC zNext_TemplateSelect0[] =
4380        "[ \t]template\\)";
4381
4382 #define    NEXT_TEMPLATE_TEST_CT  1
4383 static tTestDesc aNext_TemplateTests[] = {
4384   { TT_EGREP,    zNext_TemplateSelect0, (regex_t*)NULL }, };
4385
4386 /*
4387  *  Fix Command Arguments for Next_Template
4388  */
4389 static const char* apzNext_TemplatePatch[] = {
4390     "format",
4391     "(%1)",
4392     "\\(([^)]*)[ \t]template\\)",
4393     (char*)NULL };
4394
4395 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4396  *
4397  *  Description of Next_Volitile fix
4398  */
4399 tSCC zNext_VolitileName[] =
4400      "next_volitile";
4401
4402 /*
4403  *  File name selection pattern
4404  */
4405 tSCC zNext_VolitileList[] =
4406   "|ansi/stdlib.h|";
4407 /*
4408  *  Machine/OS name selection pattern
4409  */
4410 #define apzNext_VolitileMachs (const char**)NULL
4411
4412 /*
4413  *  content selection pattern - do fix if pattern found
4414  */
4415 tSCC zNext_VolitileSelect0[] =
4416        "^extern[ \t]+volatile[ \t]+void[ \t]";
4417
4418 #define    NEXT_VOLITILE_TEST_CT  1
4419 static tTestDesc aNext_VolitileTests[] = {
4420   { TT_EGREP,    zNext_VolitileSelect0, (regex_t*)NULL }, };
4421
4422 /*
4423  *  Fix Command Arguments for Next_Volitile
4424  */
4425 static const char* apzNext_VolitilePatch[] = {
4426     "format",
4427     "extern void %1(",
4428     "^extern[ \t]+volatile[ \t]+void[ \t]+(exit|abort)\\(",
4429     (char*)NULL };
4430
4431 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4432  *
4433  *  Description of Next_Wait_Union fix
4434  */
4435 tSCC zNext_Wait_UnionName[] =
4436      "next_wait_union";
4437
4438 /*
4439  *  File name selection pattern
4440  */
4441 tSCC zNext_Wait_UnionList[] =
4442   "|sys/wait.h|";
4443 /*
4444  *  Machine/OS name selection pattern
4445  */
4446 #define apzNext_Wait_UnionMachs (const char**)NULL
4447
4448 /*
4449  *  content selection pattern - do fix if pattern found
4450  */
4451 tSCC zNext_Wait_UnionSelect0[] =
4452        "wait\\(union wait";
4453
4454 #define    NEXT_WAIT_UNION_TEST_CT  1
4455 static tTestDesc aNext_Wait_UnionTests[] = {
4456   { TT_EGREP,    zNext_Wait_UnionSelect0, (regex_t*)NULL }, };
4457
4458 /*
4459  *  Fix Command Arguments for Next_Wait_Union
4460  */
4461 static const char* apzNext_Wait_UnionPatch[] = {
4462     "format",
4463     "wait(void",
4464     (char*)NULL };
4465
4466 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4467  *
4468  *  Description of Nodeent_Syntax fix
4469  */
4470 tSCC zNodeent_SyntaxName[] =
4471      "nodeent_syntax";
4472
4473 /*
4474  *  File name selection pattern
4475  */
4476 tSCC zNodeent_SyntaxList[] =
4477   "|netdnet/dnetdb.h|";
4478 /*
4479  *  Machine/OS name selection pattern
4480  */
4481 #define apzNodeent_SyntaxMachs (const char**)NULL
4482
4483 /*
4484  *  content selection pattern - do fix if pattern found
4485  */
4486 tSCC zNodeent_SyntaxSelect0[] =
4487        "char[ \t]*\\*na_addr[ \t]*$";
4488
4489 #define    NODEENT_SYNTAX_TEST_CT  1
4490 static tTestDesc aNodeent_SyntaxTests[] = {
4491   { TT_EGREP,    zNodeent_SyntaxSelect0, (regex_t*)NULL }, };
4492
4493 /*
4494  *  Fix Command Arguments for Nodeent_Syntax
4495  */
4496 static const char* apzNodeent_SyntaxPatch[] = {
4497     "format",
4498     "%0;",
4499     (char*)NULL };
4500
4501 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4502  *
4503  *  Description of Obstack_Lvalue_Cast fix
4504  */
4505 tSCC zObstack_Lvalue_CastName[] =
4506      "obstack_lvalue_cast";
4507
4508 /*
4509  *  File name selection pattern
4510  */
4511 tSCC zObstack_Lvalue_CastList[] =
4512   "|obstack.h|";
4513 /*
4514  *  Machine/OS name selection pattern
4515  */
4516 #define apzObstack_Lvalue_CastMachs (const char**)NULL
4517
4518 /*
4519  *  content selection pattern - do fix if pattern found
4520  */
4521 tSCC zObstack_Lvalue_CastSelect0[] =
4522        "\\*\\(\\(([^()]*)\\*\\)(.*)\\)\\+\\+ = \\(([^()]*)\\)";
4523
4524 #define    OBSTACK_LVALUE_CAST_TEST_CT  1
4525 static tTestDesc aObstack_Lvalue_CastTests[] = {
4526   { TT_EGREP,    zObstack_Lvalue_CastSelect0, (regex_t*)NULL }, };
4527
4528 /*
4529  *  Fix Command Arguments for Obstack_Lvalue_Cast
4530  */
4531 static const char* apzObstack_Lvalue_CastPatch[] = {
4532     "format",
4533     "((*((%1*)%2) = (%3)), (%2 += sizeof (%1)))",
4534     (char*)NULL };
4535
4536 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4537  *
4538  *  Description of Osf_Namespace_A fix
4539  */
4540 tSCC zOsf_Namespace_AName[] =
4541      "osf_namespace_a";
4542
4543 /*
4544  *  File name selection pattern
4545  */
4546 tSCC zOsf_Namespace_AList[] =
4547   "|reg_types.h|sys/lc_core.h|";
4548 /*
4549  *  Machine/OS name selection pattern
4550  */
4551 #define apzOsf_Namespace_AMachs (const char**)NULL
4552
4553 /*
4554  *  perform the 'test' shell command - do fix on success
4555  */
4556 tSCC zOsf_Namespace_ATest0[] =
4557        " -r reg_types.h";
4558 tSCC zOsf_Namespace_ATest1[] =
4559        " -r sys/lc_core.h";
4560 tSCC zOsf_Namespace_ATest2[] =
4561        " -n \"`grep '} regex_t;' reg_types.h`\"";
4562 tSCC zOsf_Namespace_ATest3[] =
4563        " -z \"`grep __regex_t regex.h`\"";
4564
4565 #define    OSF_NAMESPACE_A_TEST_CT  4
4566 static tTestDesc aOsf_Namespace_ATests[] = {
4567   { TT_TEST,     zOsf_Namespace_ATest0,   0 /* unused */ },
4568   { TT_TEST,     zOsf_Namespace_ATest1,   0 /* unused */ },
4569   { TT_TEST,     zOsf_Namespace_ATest2,   0 /* unused */ },
4570   { TT_TEST,     zOsf_Namespace_ATest3,   0 /* unused */ }, };
4571
4572 /*
4573  *  Fix Command Arguments for Osf_Namespace_A
4574  */
4575 static const char* apzOsf_Namespace_APatch[] = {
4576     "format",
4577     "__%0",
4578     "reg(ex|off|match)_t",
4579     (char*)NULL };
4580
4581 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4582  *
4583  *  Description of Osf_Namespace_C fix
4584  */
4585 tSCC zOsf_Namespace_CName[] =
4586      "osf_namespace_c";
4587
4588 /*
4589  *  File name selection pattern
4590  */
4591 tSCC zOsf_Namespace_CList[] =
4592   "|regex.h|";
4593 /*
4594  *  Machine/OS name selection pattern
4595  */
4596 #define apzOsf_Namespace_CMachs (const char**)NULL
4597
4598 /*
4599  *  content selection pattern - do fix if pattern found
4600  */
4601 tSCC zOsf_Namespace_CSelect0[] =
4602        "#include <reg_types.h>.*";
4603
4604 /*
4605  *  perform the 'test' shell command - do fix on success
4606  */
4607 tSCC zOsf_Namespace_CTest0[] =
4608        " -r reg_types.h";
4609 tSCC zOsf_Namespace_CTest1[] =
4610        " -r sys/lc_core.h";
4611 tSCC zOsf_Namespace_CTest2[] =
4612        " -n \"`grep '} regex_t;' reg_types.h`\"";
4613 tSCC zOsf_Namespace_CTest3[] =
4614        " -z \"`grep __regex_t regex.h`\"";
4615
4616 #define    OSF_NAMESPACE_C_TEST_CT  5
4617 static tTestDesc aOsf_Namespace_CTests[] = {
4618   { TT_TEST,     zOsf_Namespace_CTest0,   0 /* unused */ },
4619   { TT_TEST,     zOsf_Namespace_CTest1,   0 /* unused */ },
4620   { TT_TEST,     zOsf_Namespace_CTest2,   0 /* unused */ },
4621   { TT_TEST,     zOsf_Namespace_CTest3,   0 /* unused */ },
4622   { TT_EGREP,    zOsf_Namespace_CSelect0, (regex_t*)NULL }, };
4623
4624 /*
4625  *  Fix Command Arguments for Osf_Namespace_C
4626  */
4627 static const char* apzOsf_Namespace_CPatch[] = {
4628     "format",
4629     "%0\n\
4630 typedef __regex_t\tregex_t;\n\
4631 typedef __regoff_t\tregoff_t;\n\
4632 typedef __regmatch_t\tregmatch_t;",
4633     (char*)NULL };
4634
4635 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4636  *
4637  *  Description of Pthread_Page_Size fix
4638  */
4639 tSCC zPthread_Page_SizeName[] =
4640      "pthread_page_size";
4641
4642 /*
4643  *  File name selection pattern
4644  */
4645 tSCC zPthread_Page_SizeList[] =
4646   "|pthread.h|";
4647 /*
4648  *  Machine/OS name selection pattern
4649  */
4650 #define apzPthread_Page_SizeMachs (const char**)NULL
4651
4652 /*
4653  *  content selection pattern - do fix if pattern found
4654  */
4655 tSCC zPthread_Page_SizeSelect0[] =
4656        "^int __page_size";
4657
4658 #define    PTHREAD_PAGE_SIZE_TEST_CT  1
4659 static tTestDesc aPthread_Page_SizeTests[] = {
4660   { TT_EGREP,    zPthread_Page_SizeSelect0, (regex_t*)NULL }, };
4661
4662 /*
4663  *  Fix Command Arguments for Pthread_Page_Size
4664  */
4665 static const char* apzPthread_Page_SizePatch[] = {
4666     "format",
4667     "extern %0",
4668     (char*)NULL };
4669
4670 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4671  *
4672  *  Description of Pthread_Incomplete_Struct_Argument fix
4673  */
4674 tSCC zPthread_Incomplete_Struct_ArgumentName[] =
4675      "pthread_incomplete_struct_argument";
4676
4677 /*
4678  *  File name selection pattern
4679  */
4680 tSCC zPthread_Incomplete_Struct_ArgumentList[] =
4681   "|pthread.h|";
4682 /*
4683  *  Machine/OS name selection pattern
4684  */
4685 #define apzPthread_Incomplete_Struct_ArgumentMachs (const char**)NULL
4686
4687 /*
4688  *  content selection pattern - do fix if pattern found
4689  */
4690 tSCC zPthread_Incomplete_Struct_ArgumentSelect0[] =
4691        "struct __jmp_buf_tag";
4692
4693 #define    PTHREAD_INCOMPLETE_STRUCT_ARGUMENT_TEST_CT  1
4694 static tTestDesc aPthread_Incomplete_Struct_ArgumentTests[] = {
4695   { TT_EGREP,    zPthread_Incomplete_Struct_ArgumentSelect0, (regex_t*)NULL }, };
4696
4697 /*
4698  *  Fix Command Arguments for Pthread_Incomplete_Struct_Argument
4699  */
4700 static const char* apzPthread_Incomplete_Struct_ArgumentPatch[] = {
4701     "format",
4702     "%1 *%2%3",
4703     "^(extern int __sigsetjmp \\(struct __jmp_buf_tag) (__env)\\[1\\](.*)$",
4704     (char*)NULL };
4705
4706 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4707  *
4708  *  Description of Read_Ret_Type fix
4709  */
4710 tSCC zRead_Ret_TypeName[] =
4711      "read_ret_type";
4712
4713 /*
4714  *  File name selection pattern
4715  */
4716 tSCC zRead_Ret_TypeList[] =
4717   "|stdio.h|";
4718 /*
4719  *  Machine/OS name selection pattern
4720  */
4721 #define apzRead_Ret_TypeMachs (const char**)NULL
4722
4723 /*
4724  *  content selection pattern - do fix if pattern found
4725  */
4726 tSCC zRead_Ret_TypeSelect0[] =
4727        "extern int\t.*, fread\\(\\), fwrite\\(\\)";
4728
4729 #define    READ_RET_TYPE_TEST_CT  1
4730 static tTestDesc aRead_Ret_TypeTests[] = {
4731   { TT_EGREP,    zRead_Ret_TypeSelect0, (regex_t*)NULL }, };
4732
4733 /*
4734  *  Fix Command Arguments for Read_Ret_Type
4735  */
4736 static const char* apzRead_Ret_TypePatch[] = {
4737     "format",
4738     "extern unsigned int fread(), fwrite();\n\
4739 %1%2",
4740     "(extern int\t.*), fread\\(\\), fwrite\\(\\)(.*)",
4741     (char*)NULL };
4742
4743 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4744  *
4745  *  Description of Rpc_Xdr_Lvalue_Cast_A fix
4746  */
4747 tSCC zRpc_Xdr_Lvalue_Cast_AName[] =
4748      "rpc_xdr_lvalue_cast_a";
4749
4750 /*
4751  *  File name selection pattern
4752  */
4753 tSCC zRpc_Xdr_Lvalue_Cast_AList[] =
4754   "|rpc/xdr.h|";
4755 /*
4756  *  Machine/OS name selection pattern
4757  */
4758 #define apzRpc_Xdr_Lvalue_Cast_AMachs (const char**)NULL
4759
4760 /*
4761  *  content selection pattern - do fix if pattern found
4762  */
4763 tSCC zRpc_Xdr_Lvalue_Cast_ASelect0[] =
4764        "#define[ \t]*IXDR_GET_LONG.*\\\\\n\
4765 .*__extension__.*";
4766
4767 #define    RPC_XDR_LVALUE_CAST_A_TEST_CT  1
4768 static tTestDesc aRpc_Xdr_Lvalue_Cast_ATests[] = {
4769   { TT_EGREP,    zRpc_Xdr_Lvalue_Cast_ASelect0, (regex_t*)NULL }, };
4770
4771 /*
4772  *  Fix Command Arguments for Rpc_Xdr_Lvalue_Cast_A
4773  */
4774 static const char* apzRpc_Xdr_Lvalue_Cast_APatch[] = {
4775     "format",
4776     "#define IXDR_GET_LONG(buf) ((long)IXDR_GET_U_INT32(buf))",
4777     (char*)NULL };
4778
4779 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4780  *
4781  *  Description of Rpc_Xdr_Lvalue_Cast_B fix
4782  */
4783 tSCC zRpc_Xdr_Lvalue_Cast_BName[] =
4784      "rpc_xdr_lvalue_cast_b";
4785
4786 /*
4787  *  File name selection pattern
4788  */
4789 tSCC zRpc_Xdr_Lvalue_Cast_BList[] =
4790   "|rpc/xdr.h|";
4791 /*
4792  *  Machine/OS name selection pattern
4793  */
4794 #define apzRpc_Xdr_Lvalue_Cast_BMachs (const char**)NULL
4795
4796 /*
4797  *  content selection pattern - do fix if pattern found
4798  */
4799 tSCC zRpc_Xdr_Lvalue_Cast_BSelect0[] =
4800        "#define[ \t]*IXDR_PUT_LONG.*\\\\\n\
4801 .*__extension__.*";
4802
4803 #define    RPC_XDR_LVALUE_CAST_B_TEST_CT  1
4804 static tTestDesc aRpc_Xdr_Lvalue_Cast_BTests[] = {
4805   { TT_EGREP,    zRpc_Xdr_Lvalue_Cast_BSelect0, (regex_t*)NULL }, };
4806
4807 /*
4808  *  Fix Command Arguments for Rpc_Xdr_Lvalue_Cast_B
4809  */
4810 static const char* apzRpc_Xdr_Lvalue_Cast_BPatch[] = {
4811     "format",
4812     "#define IXDR_PUT_LONG(buf, v) ((long)IXDR_PUT_INT32(buf, (long)(v)))",
4813     (char*)NULL };
4814
4815 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4816  *
4817  *  Description of Rs6000_Double fix
4818  */
4819 tSCC zRs6000_DoubleName[] =
4820      "rs6000_double";
4821
4822 /*
4823  *  File name selection pattern
4824  */
4825 tSCC zRs6000_DoubleList[] =
4826   "|math.h|";
4827 /*
4828  *  Machine/OS name selection pattern
4829  */
4830 #define apzRs6000_DoubleMachs (const char**)NULL
4831
4832 /*
4833  *  content selection pattern - do fix if pattern found
4834  */
4835 tSCC zRs6000_DoubleSelect0[] =
4836        "[^a-zA-Z_]class\\(";
4837
4838 #define    RS6000_DOUBLE_TEST_CT  1
4839 static tTestDesc aRs6000_DoubleTests[] = {
4840   { TT_EGREP,    zRs6000_DoubleSelect0, (regex_t*)NULL }, };
4841
4842 /*
4843  *  Fix Command Arguments for Rs6000_Double
4844  */
4845 static const char* apzRs6000_DoublePatch[] = {
4846     "format",
4847     "#ifndef __cplusplus\n\
4848 %0\n\
4849 #endif",
4850     "^.*[^a-zA-Z_]class\\(.*",
4851     (char*)NULL };
4852
4853 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4854  *
4855  *  Description of Rs6000_Fchmod fix
4856  */
4857 tSCC zRs6000_FchmodName[] =
4858      "rs6000_fchmod";
4859
4860 /*
4861  *  File name selection pattern
4862  */
4863 tSCC zRs6000_FchmodList[] =
4864   "|sys/stat.h|";
4865 /*
4866  *  Machine/OS name selection pattern
4867  */
4868 #define apzRs6000_FchmodMachs (const char**)NULL
4869
4870 /*
4871  *  content selection pattern - do fix if pattern found
4872  */
4873 tSCC zRs6000_FchmodSelect0[] =
4874        "fchmod\\(char \\*";
4875
4876 #define    RS6000_FCHMOD_TEST_CT  1
4877 static tTestDesc aRs6000_FchmodTests[] = {
4878   { TT_EGREP,    zRs6000_FchmodSelect0, (regex_t*)NULL }, };
4879
4880 /*
4881  *  Fix Command Arguments for Rs6000_Fchmod
4882  */
4883 static const char* apzRs6000_FchmodPatch[] = {
4884     "format",
4885     "fchmod(int",
4886     (char*)NULL };
4887
4888 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4889  *
4890  *  Description of Rs6000_Param fix
4891  */
4892 tSCC zRs6000_ParamName[] =
4893      "rs6000_param";
4894
4895 /*
4896  *  File name selection pattern
4897  */
4898 tSCC zRs6000_ParamList[] =
4899   "|stdio.h|unistd.h|";
4900 /*
4901  *  Machine/OS name selection pattern
4902  */
4903 #define apzRs6000_ParamMachs (const char**)NULL
4904
4905 /*
4906  *  content selection pattern - do fix if pattern found
4907  */
4908 tSCC zRs6000_ParamSelect0[] =
4909        "rename\\(const char \\*old, const char \\*new\\)";
4910
4911 #define    RS6000_PARAM_TEST_CT  1
4912 static tTestDesc aRs6000_ParamTests[] = {
4913   { TT_EGREP,    zRs6000_ParamSelect0, (regex_t*)NULL }, };
4914
4915 /*
4916  *  Fix Command Arguments for Rs6000_Param
4917  */
4918 static const char* apzRs6000_ParamPatch[] = {
4919     "format",
4920     "rename(const char *_old, const char *_new)",
4921     (char*)NULL };
4922
4923 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4924  *
4925  *  Description of Sco_Math fix
4926  */
4927 tSCC zSco_MathName[] =
4928      "sco_math";
4929
4930 /*
4931  *  File name selection pattern
4932  */
4933 tSCC zSco_MathList[] =
4934   "|math.h|ansi/math.h|posix/math.h|xpg4/math.h|xpg4v2/math.h|xpg4plus/math.h|ods_30_compat/math.h|oldstyle/math.h|";
4935 /*
4936  *  Machine/OS name selection pattern
4937  */
4938 #define apzSco_MathMachs (const char**)NULL
4939
4940 /*
4941  *  content selection pattern - do fix if pattern found
4942  */
4943 tSCC zSco_MathSelect0[] =
4944        "inline double abs";
4945
4946 /*
4947  *  content bypass pattern - skip fix if pattern found
4948  */
4949 tSCC zSco_MathBypass0[] =
4950        "__GNUG__";
4951
4952 #define    SCO_MATH_TEST_CT  2
4953 static tTestDesc aSco_MathTests[] = {
4954   { TT_NEGREP,   zSco_MathBypass0, (regex_t*)NULL },
4955   { TT_EGREP,    zSco_MathSelect0, (regex_t*)NULL }, };
4956
4957 /*
4958  *  Fix Command Arguments for Sco_Math
4959  */
4960 static const char* apzSco_MathPatch[] = { "sed",
4961     "-e", "/#define.*__fp_class(a) \\\\/i\\\n\
4962 #ifndef __GNUC__\n",
4963     "-e", "/.*__builtin_generic/a\\\n\
4964 #else\\\n\
4965 #define __fp_class(a) \\\\\\\n\
4966   __builtin_choose_expr(__builtin_types_compatible_p(typeof(a),long double),\\\\\\\n\
4967    __fpclassifyl(a), \\\\\\\n\
4968     __builtin_choose_expr(__builtin_types_compatible_p(typeof(a), float), \\\\\\\n\
4969       __fpclassifyf(a),__fpclassify(a)))\\\n\
4970 #endif",
4971     "-e", "/extern \"C\\+\\+\"/N;/inline double abs/i\\\n\
4972 #ifndef __GNUC__\n",
4973     "-e", "/inline long double trunc/N;/inline long double trunc.*}.*extern \"C\\+\\+\"/a\\\n\
4974 #endif /* ! __GNUC__ */",
4975     (char*)NULL };
4976
4977 /* * * * * * * * * * * * * * * * * * * * * * * * * *
4978  *
4979  *  Description of Sco_Regset fix
4980  */
4981 tSCC zSco_RegsetName[] =
4982      "sco_regset";
4983
4984 /*
4985  *  File name selection pattern
4986  */
4987 tSCC zSco_RegsetList[] =
4988   "|sys/regset.h|";
4989 /*
4990  *  Machine/OS name selection pattern
4991  */
4992 tSCC* apzSco_RegsetMachs[] = {
4993         "*-*-sco3.2v5*",
4994         (const char*)NULL };
4995
4996 /*
4997  *  content selection pattern - do fix if pattern found
4998  */
4999 tSCC zSco_RegsetSelect0[] =
5000        "(struct[ \t]+.*)fpstate";
5001
5002 #define    SCO_REGSET_TEST_CT  1
5003 static tTestDesc aSco_RegsetTests[] = {
5004   { TT_EGREP,    zSco_RegsetSelect0, (regex_t*)NULL }, };
5005
5006 /*
5007  *  Fix Command Arguments for Sco_Regset
5008  */
5009 static const char* apzSco_RegsetPatch[] = {
5010     "format",
5011     "%1rsfpstate",
5012     (char*)NULL };
5013
5014 /* * * * * * * * * * * * * * * * * * * * * * * * * *
5015  *
5016  *  Description of Sco_Static_Func fix
5017  */
5018 tSCC zSco_Static_FuncName[] =
5019      "sco_static_func";
5020
5021 /*
5022  *  File name selection pattern
5023  */
5024 tSCC zSco_Static_FuncList[] =
5025   "|sys/stat.h|";
5026 /*
5027  *  Machine/OS name selection pattern
5028  */
5029 tSCC* apzSco_Static_FuncMachs[] = {
5030         "i?86-*-sco3.2*",
5031         (const char*)NULL };
5032
5033 /*
5034  *  content selection pattern - do fix if pattern found
5035  */
5036 tSCC zSco_Static_FuncSelect0[] =
5037        "^static int";
5038
5039 #define    SCO_STATIC_FUNC_TEST_CT  1
5040 static tTestDesc aSco_Static_FuncTests[] = {
5041   { TT_EGREP,    zSco_Static_FuncSelect0, (regex_t*)NULL }, };
5042
5043 /*
5044  *  Fix Command Arguments for Sco_Static_Func
5045  */
5046 static const char* apzSco_Static_FuncPatch[] = { "sed",
5047     "-e", "/^static int/i\\\n\
5048 #if __cplusplus\\\n\
5049 extern \"C\" {\\\n\
5050 #endif /* __cplusplus */",
5051     "-e", "/^}$/a\\\n\
5052 #if __cplusplus\\\n\
5053  }\\\n\
5054 #endif /* __cplusplus */",
5055     (char*)NULL };
5056
5057 /* * * * * * * * * * * * * * * * * * * * * * * * * *
5058  *
5059  *  Description of Sco_Utime fix
5060  */
5061 tSCC zSco_UtimeName[] =
5062      "sco_utime";
5063
5064 /*
5065  *  File name selection pattern
5066  */
5067 tSCC zSco_UtimeList[] =
5068   "|sys/times.h|";
5069 /*
5070  *  Machine/OS name selection pattern
5071  */
5072 tSCC* apzSco_UtimeMachs[] = {
5073         "i?86-*-sco3.2v4*",
5074         (const char*)NULL };
5075
5076 /*
5077  *  content selection pattern - do fix if pattern found
5078  */
5079 tSCC zSco_UtimeSelect0[] =
5080        "\\(const char \\*, struct utimbuf \\*\\);";
5081
5082 #define    SCO_UTIME_TEST_CT  1
5083 static tTestDesc aSco_UtimeTests[] = {
5084   { TT_EGREP,    zSco_UtimeSelect0, (regex_t*)NULL }, };
5085
5086 /*
5087  *  Fix Command Arguments for Sco_Utime
5088  */
5089 static const char* apzSco_UtimePatch[] = {
5090     "format",
5091     "(const char *, const struct utimbuf *);",
5092     (char*)NULL };
5093
5094 /* * * * * * * * * * * * * * * * * * * * * * * * * *
5095  *
5096  *  Description of Solaris_Math_1 fix
5097  */
5098 tSCC zSolaris_Math_1Name[] =
5099      "solaris_math_1";
5100
5101 /*
5102  *  File name selection pattern
5103  */
5104 tSCC zSolaris_Math_1List[] =
5105   "|iso/math_c99.h|";
5106 /*
5107  *  Machine/OS name selection pattern
5108  */
5109 #define apzSolaris_Math_1Machs (const char**)NULL
5110
5111 /*
5112  *  content selection pattern - do fix if pattern found
5113  */
5114 tSCC zSolaris_Math_1Select0[] =
5115        "@\\(#\\)math_c99.h[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
5116
5117 /*
5118  *  content bypass pattern - skip fix if pattern found
5119  */
5120 tSCC zSolaris_Math_1Bypass0[] =
5121        "__GNUC__";
5122
5123 #define    SOLARIS_MATH_1_TEST_CT  2
5124 static tTestDesc aSolaris_Math_1Tests[] = {
5125   { TT_NEGREP,   zSolaris_Math_1Bypass0, (regex_t*)NULL },
5126   { TT_EGREP,    zSolaris_Math_1Select0, (regex_t*)NULL }, };
5127
5128 /*
5129  *  Fix Command Arguments for Solaris_Math_1
5130  */
5131 static const char* apzSolaris_Math_1Patch[] = {
5132     "format",
5133     "#define\tHUGE_VA%1\t(__builtin_huge_va%2())",
5134     "^#define[ \t]+HUGE_VA([LF]+)[ \t]+__builtin_huge_va([lf]+)",
5135     (char*)NULL };
5136
5137 /* * * * * * * * * * * * * * * * * * * * * * * * * *
5138  *
5139  *  Description of Solaris_Math_2 fix
5140  */
5141 tSCC zSolaris_Math_2Name[] =
5142      "solaris_math_2";
5143
5144 /*
5145  *  File name selection pattern
5146  */
5147 tSCC zSolaris_Math_2List[] =
5148   "|iso/math_c99.h|";
5149 /*
5150  *  Machine/OS name selection pattern
5151  */
5152 #define apzSolaris_Math_2Machs (const char**)NULL
5153
5154 /*
5155  *  content selection pattern - do fix if pattern found
5156  */
5157 tSCC zSolaris_Math_2Select0[] =
5158        "@\\(#\\)math_c99.h[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
5159
5160 /*
5161  *  content bypass pattern - skip fix if pattern found
5162  */
5163 tSCC zSolaris_Math_2Bypass0[] =
5164        "__GNUC__";
5165
5166 #define    SOLARIS_MATH_2_TEST_CT  2
5167 static tTestDesc aSolaris_Math_2Tests[] = {
5168   { TT_NEGREP,   zSolaris_Math_2Bypass0, (regex_t*)NULL },
5169   { TT_EGREP,    zSolaris_Math_2Select0, (regex_t*)NULL }, };
5170
5171 /*
5172  *  Fix Command Arguments for Solaris_Math_2
5173  */
5174 static const char* apzSolaris_Math_2Patch[] = {
5175     "format",
5176     "#define\tINFINITY\t(__builtin_inff())",
5177     "^#define[ \t]+INFINITY[ \t]+__builtin_infinity",
5178     (char*)NULL };
5179
5180 /* * * * * * * * * * * * * * * * * * * * * * * * * *
5181  *
5182  *  Description of Solaris_Math_3 fix
5183  */
5184 tSCC zSolaris_Math_3Name[] =
5185      "solaris_math_3";
5186
5187 /*
5188  *  File name selection pattern
5189  */
5190 tSCC zSolaris_Math_3List[] =
5191   "|iso/math_c99.h|";
5192 /*
5193  *  Machine/OS name selection pattern
5194  */
5195 #define apzSolaris_Math_3Machs (const char**)NULL
5196
5197 /*
5198  *  content selection pattern - do fix if pattern found
5199  */
5200 tSCC zSolaris_Math_3Select0[] =
5201        "@\\(#\\)math_c99.h[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
5202
5203 /*
5204  *  content bypass pattern - skip fix if pattern found
5205  */
5206 tSCC zSolaris_Math_3Bypass0[] =
5207        "__GNUC__";
5208
5209 #define    SOLARIS_MATH_3_TEST_CT  2
5210 static tTestDesc aSolaris_Math_3Tests[] = {
5211   { TT_NEGREP,   zSolaris_Math_3Bypass0, (regex_t*)NULL },
5212   { TT_EGREP,    zSolaris_Math_3Select0, (regex_t*)NULL }, };
5213
5214 /*
5215  *  Fix Command Arguments for Solaris_Math_3
5216  */
5217 static const char* apzSolaris_Math_3Patch[] = {
5218     "format",
5219     "#define\tNAN\t\t(__builtin_nanf(\"\"))",
5220     "^#define[ \t]+NAN[ \t]+__builtin_nan",
5221     (char*)NULL };
5222
5223 /* * * * * * * * * * * * * * * * * * * * * * * * * *
5224  *
5225  *  Description of Solaris_Math_4 fix
5226  */
5227 tSCC zSolaris_Math_4Name[] =
5228      "solaris_math_4";
5229
5230 /*
5231  *  File name selection pattern
5232  */
5233 tSCC zSolaris_Math_4List[] =
5234   "|iso/math_c99.h|";
5235 /*
5236  *  Machine/OS name selection pattern
5237  */
5238 #define apzSolaris_Math_4Machs (const char**)NULL
5239
5240 /*
5241  *  content selection pattern - do fix if pattern found
5242  */
5243 tSCC zSolaris_Math_4Select0[] =
5244        "@\\(#\\)math_c99.h[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
5245
5246 /*
5247  *  content bypass pattern - skip fix if pattern found
5248  */
5249 tSCC zSolaris_Math_4Bypass0[] =
5250        "__GNUC__";
5251
5252 #define    SOLARIS_MATH_4_TEST_CT  2
5253 static tTestDesc aSolaris_Math_4Tests[] = {
5254   { TT_NEGREP,   zSolaris_Math_4Bypass0, (regex_t*)NULL },
5255   { TT_EGREP,    zSolaris_Math_4Select0, (regex_t*)NULL }, };
5256
5257 /*
5258  *  Fix Command Arguments for Solaris_Math_4
5259  */
5260 static const char* apzSolaris_Math_4Patch[] = {
5261     "format",
5262     "#define\tfpclassify(x) \\\n\
5263   __extension__ ({ __typeof(x) __x_fp = (x); \\\n\
5264 \t\t   isnan(__x_fp) \\\n\
5265 \t\t     ? FP_NAN \\\n\
5266 \t\t     : isinf(__x_fp) \\\n\
5267 \t\t       ? FP_INFINITE \\\n\
5268 \t\t       : isnormal(__x_fp) \\\n\
5269 \t\t\t ? FP_NORMAL \\\n\
5270 \t\t\t : __x_fp == 0.0 \\\n\
5271 \t\t\t   ? FP_ZERO \\\n\
5272 \t\t\t   : FP_SUBNORMAL; })",
5273     "^#define[ \t]+fpclassify\\(x\\)[ \t]+__builtin_fpclassify\\(x\\)",
5274     (char*)NULL };
5275
5276 /* * * * * * * * * * * * * * * * * * * * * * * * * *
5277  *
5278  *  Description of Solaris_Math_5 fix
5279  */
5280 tSCC zSolaris_Math_5Name[] =
5281      "solaris_math_5";
5282
5283 /*
5284  *  File name selection pattern
5285  */
5286 tSCC zSolaris_Math_5List[] =
5287   "|iso/math_c99.h|";
5288 /*
5289  *  Machine/OS name selection pattern
5290  */
5291 #define apzSolaris_Math_5Machs (const char**)NULL
5292
5293 /*
5294  *  content selection pattern - do fix if pattern found
5295  */
5296 tSCC zSolaris_Math_5Select0[] =
5297        "@\\(#\\)math_c99.h[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
5298
5299 /*
5300  *  content bypass pattern - skip fix if pattern found
5301  */
5302 tSCC zSolaris_Math_5Bypass0[] =
5303        "__GNUC__";
5304
5305 #define    SOLARIS_MATH_5_TEST_CT  2
5306 static tTestDesc aSolaris_Math_5Tests[] = {
5307   { TT_NEGREP,   zSolaris_Math_5Bypass0, (regex_t*)NULL },
5308   { TT_EGREP,    zSolaris_Math_5Select0, (regex_t*)NULL }, };
5309
5310 /*
5311  *  Fix Command Arguments for Solaris_Math_5
5312  */
5313 static const char* apzSolaris_Math_5Patch[] = {
5314     "format",
5315     "#define\tisfinite(x) \\\n\
5316   __extension__ ({ __typeof (x) __x_f = (x); \\\n\
5317 \t\t   __builtin_expect(!isnan(__x_f - __x_f), 1); })",
5318     "^#define[ \t]+isfinite\\(x\\)[ \t]+__builtin_isfinite\\(x\\)",
5319     (char*)NULL };
5320
5321 /* * * * * * * * * * * * * * * * * * * * * * * * * *
5322  *
5323  *  Description of Solaris_Math_6 fix
5324  */
5325 tSCC zSolaris_Math_6Name[] =
5326      "solaris_math_6";
5327
5328 /*
5329  *  File name selection pattern
5330  */
5331 tSCC zSolaris_Math_6List[] =
5332   "|iso/math_c99.h|";
5333 /*
5334  *  Machine/OS name selection pattern
5335  */
5336 #define apzSolaris_Math_6Machs (const char**)NULL
5337
5338 /*
5339  *  content selection pattern - do fix if pattern found
5340  */
5341 tSCC zSolaris_Math_6Select0[] =
5342        "@\\(#\\)math_c99.h[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
5343
5344 /*
5345  *  content bypass pattern - skip fix if pattern found
5346  */
5347 tSCC zSolaris_Math_6Bypass0[] =
5348        "__GNUC__";
5349
5350 #define    SOLARIS_MATH_6_TEST_CT  2
5351 static tTestDesc aSolaris_Math_6Tests[] = {
5352   { TT_NEGREP,   zSolaris_Math_6Bypass0, (regex_t*)NULL },
5353   { TT_EGREP,    zSolaris_Math_6Select0, (regex_t*)NULL }, };
5354
5355 /*
5356  *  Fix Command Arguments for Solaris_Math_6
5357  */
5358 static const char* apzSolaris_Math_6Patch[] = {
5359     "format",
5360     "#define\tisinf(x) \\\n\
5361   __extension__ ({ __typeof (x) __x_i = (x); \\\n\
5362 \t\t   __builtin_expect(!isnan(__x_i) && !isfinite(__x_i), 0); })",
5363     "^#define[ \t]+isinf\\(x\\)[ \t]+__builtin_isinf\\(x\\)",
5364     (char*)NULL };
5365
5366 /* * * * * * * * * * * * * * * * * * * * * * * * * *
5367  *
5368  *  Description of Solaris_Math_7 fix
5369  */
5370 tSCC zSolaris_Math_7Name[] =
5371      "solaris_math_7";
5372
5373 /*
5374  *  File name selection pattern
5375  */
5376 tSCC zSolaris_Math_7List[] =
5377   "|iso/math_c99.h|";
5378 /*
5379  *  Machine/OS name selection pattern
5380  */
5381 #define apzSolaris_Math_7Machs (const char**)NULL
5382
5383 /*
5384  *  content selection pattern - do fix if pattern found
5385  */
5386 tSCC zSolaris_Math_7Select0[] =
5387        "@\\(#\\)math_c99.h[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
5388
5389 /*
5390  *  content bypass pattern - skip fix if pattern found
5391  */
5392 tSCC zSolaris_Math_7Bypass0[] =
5393        "__GNUC__";
5394
5395 #define    SOLARIS_MATH_7_TEST_CT  2
5396 static tTestDesc aSolaris_Math_7Tests[] = {
5397   { TT_NEGREP,   zSolaris_Math_7Bypass0, (regex_t*)NULL },
5398   { TT_EGREP,    zSolaris_Math_7Select0, (regex_t*)NULL }, };
5399
5400 /*
5401  *  Fix Command Arguments for Solaris_Math_7
5402  */
5403 static const char* apzSolaris_Math_7Patch[] = {
5404     "format",
5405     "#define\tisnormal(x) \\\n\
5406   __extension__ ({ __typeof(x) __x_n = (x); \\\n\
5407 \t\t   if (__x_n < 0.0) __x_n = -__x_n; \\\n\
5408 \t\t   __builtin_expect(isfinite(__x_n) \\\n\
5409 \t\t\t\t    && (sizeof(__x_n) == sizeof(float) \\\n\
5410 \t\t\t\t\t  ? __x_n >= __FLT_MIN__ \\\n\
5411 \t\t\t\t\t  : sizeof(__x_n) == sizeof(long double) \\\n\
5412 \t\t\t\t\t    ? __x_n >= __LDBL_MIN__ \\\n\
5413 \t\t\t\t\t    : __x_n >= __DBL_MIN__), 1); })",
5414     "^#define[ \t]+isnormal\\(x\\)[ \t]+__builtin_isnormal\\(x\\)",
5415     (char*)NULL };
5416
5417 /* * * * * * * * * * * * * * * * * * * * * * * * * *
5418  *
5419  *  Description of Solaris_Math_8 fix
5420  */
5421 tSCC zSolaris_Math_8Name[] =
5422      "solaris_math_8";
5423
5424 /*
5425  *  File name selection pattern
5426  */
5427 tSCC zSolaris_Math_8List[] =
5428   "|iso/math_c99.h|";
5429 /*
5430  *  Machine/OS name selection pattern
5431  */
5432 #define apzSolaris_Math_8Machs (const char**)NULL
5433
5434 /*
5435  *  content selection pattern - do fix if pattern found
5436  */
5437 tSCC zSolaris_Math_8Select0[] =
5438        "@\\(#\\)math_c99.h[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
5439
5440 /*
5441  *  content bypass pattern - skip fix if pattern found
5442  */
5443 tSCC zSolaris_Math_8Bypass0[] =
5444        "__GNUC__";
5445
5446 #define    SOLARIS_MATH_8_TEST_CT  2
5447 static tTestDesc aSolaris_Math_8Tests[] = {
5448   { TT_NEGREP,   zSolaris_Math_8Bypass0, (regex_t*)NULL },
5449   { TT_EGREP,    zSolaris_Math_8Select0, (regex_t*)NULL }, };
5450
5451 /*
5452  *  Fix Command Arguments for Solaris_Math_8
5453  */
5454 static const char* apzSolaris_Math_8Patch[] = {
5455     "format",
5456     "#define\tsignbit(x)\t(sizeof(x) == sizeof(float) \\\n\
5457 \t\t\t   ? __builtin_signbitf(x) \\\n\
5458 \t\t\t   : sizeof(x) == sizeof(long double) \\\n\
5459 \t\t\t     ? __builtin_signbitl(x) \\\n\
5460 \t\t\t     : __builtin_signbit(x))",
5461     "^#define[ \t]+signbit\\(x\\)[ \t]+__builtin_signbit\\(x\\)",
5462     (char*)NULL };
5463
5464 /* * * * * * * * * * * * * * * * * * * * * * * * * *
5465  *
5466  *  Description of Solaris_Math_9 fix
5467  */
5468 tSCC zSolaris_Math_9Name[] =
5469      "solaris_math_9";
5470
5471 /*
5472  *  File name selection pattern
5473  */
5474 tSCC zSolaris_Math_9List[] =
5475   "|iso/math_c99.h|";
5476 /*
5477  *  Machine/OS name selection pattern
5478  */
5479 #define apzSolaris_Math_9Machs (const char**)NULL
5480
5481 /*
5482  *  content selection pattern - do fix if pattern found
5483  */
5484 tSCC zSolaris_Math_9Select0[] =
5485        "@\\(#\\)math_c99.h[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
5486
5487 /*
5488  *  content bypass pattern - skip fix if pattern found
5489  */
5490 tSCC zSolaris_Math_9Bypass0[] =
5491        "__GNUC__";
5492
5493 #define    SOLARIS_MATH_9_TEST_CT  2
5494 static tTestDesc aSolaris_Math_9Tests[] = {
5495   { TT_NEGREP,   zSolaris_Math_9Bypass0, (regex_t*)NULL },
5496   { TT_EGREP,    zSolaris_Math_9Select0, (regex_t*)NULL }, };
5497
5498 /*
5499  *  Fix Command Arguments for Solaris_Math_9
5500  */
5501 static const char* apzSolaris_Math_9Patch[] = {
5502     "format",
5503     "#define\t%1(x, y)%2__builtin_%1(x, y)",
5504     "^#define[ \t]+([a-z]+)\\(x, y\\)([ \t]+)\\(\\(x\\) __builtin_[a-z]+\\(y\\)\\)",
5505     (char*)NULL };
5506
5507 /* * * * * * * * * * * * * * * * * * * * * * * * * *
5508  *
5509  *  Description of Solaris_Mutex_Init_1 fix
5510  */
5511 tSCC zSolaris_Mutex_Init_1Name[] =
5512      "solaris_mutex_init_1";
5513
5514 /*
5515  *  File name selection pattern
5516  */
5517 tSCC zSolaris_Mutex_Init_1List[] =
5518   "|pthread.h|";
5519 /*
5520  *  Machine/OS name selection pattern
5521  */
5522 #define apzSolaris_Mutex_Init_1Machs (const char**)NULL
5523
5524 /*
5525  *  content selection pattern - do fix if pattern found
5526  */
5527 tSCC zSolaris_Mutex_Init_1Select0[] =
5528        "@\\(#\\)pthread.h[ \t]+1.1[0-9][ \t]+9[567]/[0-9/]+ SMI";
5529
5530 #define    SOLARIS_MUTEX_INIT_1_TEST_CT  1
5531 static tTestDesc aSolaris_Mutex_Init_1Tests[] = {
5532   { TT_EGREP,    zSolaris_Mutex_Init_1Select0, (regex_t*)NULL }, };
5533
5534 /*
5535  *  Fix Command Arguments for Solaris_Mutex_Init_1
5536  */
5537 static const char* apzSolaris_Mutex_Init_1Patch[] = { "sed",
5538     "-e", "/define[ \t]*PTHREAD_MUTEX_INI/s/{0, 0,/{{{0}, 0}, {{{0}}},/\n\
5539 /define[ \t]*PTHREAD_COND_INI/s/{0,/{{{0},0},/",
5540     (char*)NULL };
5541
5542 /* * * * * * * * * * * * * * * * * * * * * * * * * *
5543  *
5544  *  Description of Solaris_Mutex_Init_2 fix
5545  */
5546 tSCC zSolaris_Mutex_Init_2Name[] =
5547      "solaris_mutex_init_2";
5548
5549 /*
5550  *  File name selection pattern
5551  */
5552 tSCC zSolaris_Mutex_Init_2List[] =
5553   "|pthread.h|";
5554 /*
5555  *  Machine/OS name selection pattern
5556  */
5557 tSCC* apzSolaris_Mutex_Init_2Machs[] = {
5558         "*-*-solaris2.[0-9]",
5559         "*-*-solaris2.[0-9][!0-9]*",
5560         (const char*)NULL };
5561
5562 /*
5563  *  content selection pattern - do fix if pattern found
5564  */
5565 tSCC zSolaris_Mutex_Init_2Select0[] =
5566        "@\\(#\\)pthread.h[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
5567
5568 #define    SOLARIS_MUTEX_INIT_2_TEST_CT  1
5569 static tTestDesc aSolaris_Mutex_Init_2Tests[] = {
5570   { TT_EGREP,    zSolaris_Mutex_Init_2Select0, (regex_t*)NULL }, };
5571
5572 /*
5573  *  Fix Command Arguments for Solaris_Mutex_Init_2
5574  */
5575 static const char* apzSolaris_Mutex_Init_2Patch[] = {
5576     "format",
5577     "#if __STDC__ - 0 == 0 && !defined(_NO_LONGLONG)\n\
5578 %0\n\
5579 #else\n\
5580 %1, {0}}%4\n\
5581 #endif",
5582     "(^#define[ \t]+PTHREAD_(MUTEX|COND)_INITIALIZER[ \t]+(|/*.**/[ \t]*\\\\\n\
5583 [ \t]*)\\{.*),[ \t]*0\\}(|[ \t].*)$",
5584     (char*)NULL };
5585
5586 /* * * * * * * * * * * * * * * * * * * * * * * * * *
5587  *
5588  *  Description of Solaris_Rwlock_Init_1 fix
5589  */
5590 tSCC zSolaris_Rwlock_Init_1Name[] =
5591      "solaris_rwlock_init_1";
5592
5593 /*
5594  *  File name selection pattern
5595  */
5596 tSCC zSolaris_Rwlock_Init_1List[] =
5597   "|pthread.h|";
5598 /*
5599  *  Machine/OS name selection pattern
5600  */
5601 tSCC* apzSolaris_Rwlock_Init_1Machs[] = {
5602         "*-*-solaris*",
5603         (const char*)NULL };
5604
5605 /*
5606  *  content selection pattern - do fix if pattern found
5607  */
5608 tSCC zSolaris_Rwlock_Init_1Select0[] =
5609        "@\\(#\\)pthread.h[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
5610
5611 #define    SOLARIS_RWLOCK_INIT_1_TEST_CT  1
5612 static tTestDesc aSolaris_Rwlock_Init_1Tests[] = {
5613   { TT_EGREP,    zSolaris_Rwlock_Init_1Select0, (regex_t*)NULL }, };
5614
5615 /*
5616  *  Fix Command Arguments for Solaris_Rwlock_Init_1
5617  */
5618 static const char* apzSolaris_Rwlock_Init_1Patch[] = {
5619     "format",
5620     "#if __STDC__ - 0 == 0 && !defined(_NO_LONGLONG)\n\
5621 %0\n\
5622 #else\n\
5623 %1{0, 0, 0, {{0}, {0}, {0}}, {{0}, {0}}, {{0}, {0}}}\n\
5624 #endif",
5625     "(^#define[ \t]+PTHREAD_RWLOCK_INITIALIZER[ \t]+)\\{0, 0, 0, \\{0, 0, 0\\}, \\{0, 0\\}, \\{0, 0\\}\\}[ \t]*$",
5626     (char*)NULL };
5627
5628 /* * * * * * * * * * * * * * * * * * * * * * * * * *
5629  *
5630  *  Description of Solaris_Once_Init_1 fix
5631  */
5632 tSCC zSolaris_Once_Init_1Name[] =
5633      "solaris_once_init_1";
5634
5635 /*
5636  *  File name selection pattern
5637  */
5638 tSCC zSolaris_Once_Init_1List[] =
5639   "|pthread.h|";
5640 /*
5641  *  Machine/OS name selection pattern
5642  */
5643 tSCC* apzSolaris_Once_Init_1Machs[] = {
5644         "*-*-solaris*",
5645         (const char*)NULL };
5646
5647 /*
5648  *  content selection pattern - do fix if pattern found
5649  */
5650 tSCC zSolaris_Once_Init_1Select0[] =
5651        "@\\(#\\)pthread.h[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
5652
5653 #define    SOLARIS_ONCE_INIT_1_TEST_CT  1
5654 static tTestDesc aSolaris_Once_Init_1Tests[] = {
5655   { TT_EGREP,    zSolaris_Once_Init_1Select0, (regex_t*)NULL }, };
5656
5657 /*
5658  *  Fix Command Arguments for Solaris_Once_Init_1
5659  */
5660 static const char* apzSolaris_Once_Init_1Patch[] = {
5661     "format",
5662     "%1{%2}%3",
5663     "(^#define[ \t]+PTHREAD_ONCE_INIT[ \t]+\\{)([^}]+)(\\})[ \t]*$",
5664     (char*)NULL };
5665
5666 /* * * * * * * * * * * * * * * * * * * * * * * * * *
5667  *
5668  *  Description of Solaris_Once_Init_2 fix
5669  */
5670 tSCC zSolaris_Once_Init_2Name[] =
5671      "solaris_once_init_2";
5672
5673 /*
5674  *  File name selection pattern
5675  */
5676 tSCC zSolaris_Once_Init_2List[] =
5677   "|pthread.h|";
5678 /*
5679  *  Machine/OS name selection pattern
5680  */
5681 tSCC* apzSolaris_Once_Init_2Machs[] = {
5682         "*-*-solaris2.[0-9]",
5683         "*-*-solaris2.[0-9][!0-9]*",
5684         (const char*)NULL };
5685
5686 /*
5687  *  content selection pattern - do fix if pattern found
5688  */
5689 tSCC zSolaris_Once_Init_2Select0[] =
5690        "@\\(#\\)pthread.h[ \t]+1.[0-9]+[ \t]+[0-9/]+ SMI";
5691
5692 #define    SOLARIS_ONCE_INIT_2_TEST_CT  1
5693 static tTestDesc aSolaris_Once_Init_2Tests[] = {
5694   { TT_EGREP,    zSolaris_Once_Init_2Select0, (regex_t*)NULL }, };
5695
5696 /*
5697  *  Fix Command Arguments for Solaris_Once_Init_2
5698  */
5699 static const char* apzSolaris_Once_Init_2Patch[] = {
5700     "format",
5701     "#if __STDC__ - 0 == 0 && !defined(_NO_LONGLONG)\n\
5702 %0\n\
5703 #else\n\
5704 %1{0}, {0}, {0}, {%3}%4\n\
5705 #endif",
5706     "(^#define[ \t]+PTHREAD_ONCE_INIT[ \t]+\\{\\{)(0, 0, 0, )(PTHREAD_[A-Z_]+)(\\}\\})[ \t]*$",
5707     (char*)NULL };
5708
5709 /* * * * * * * * * * * * * * * * * * * * * * * * * *
5710  *
5711  *  Description of Solaris_Socket fix
5712  */
5713 tSCC zSolaris_SocketName[] =
5714      "solaris_socket";
5715
5716 /*
5717  *  File name selection pattern
5718  */
5719 tSCC zSolaris_SocketList[] =
5720   "|sys/socket.h|";
5721 /*
5722  *  Machine/OS name selection pattern
5723  */
5724 #define apzSolaris_SocketMachs (const char**)NULL
5725
5726 /*
5727  *  content selection pattern - do fix if pattern found
5728  */
5729 tSCC zSolaris_SocketSelect0[] =
5730        "@\\(#\\)socket.h[ \t]+1.[123][0-9][ \t]+9[567]/[0-9/]+ SMI";
5731
5732 #define    SOLARIS_SOCKET_TEST_CT  1
5733 static tTestDesc aSolaris_SocketTests[] = {
5734   { TT_EGREP,    zSolaris_SocketSelect0, (regex_t*)NULL }, };
5735
5736 /*
5737  *  Fix Command Arguments for Solaris_Socket
5738  */
5739 static const char* apzSolaris_SocketPatch[] = {
5740     "format",
5741     "extern int %1(int, %2void *, int, int);",
5742     "^extern int (recv|send)\\(int, (const )*char \\*, int, int\\);",
5743     (char*)NULL };
5744
5745 /* * * * * * * * * * * * * * * * * * * * * * * * * *
5746  *
5747  *  Description of Solaris_Stdio_Tag fix
5748  */
5749 tSCC zSolaris_Stdio_TagName[] =
5750      "solaris_stdio_tag";
5751
5752 /*
5753  *  File name selection pattern
5754  */
5755 tSCC zSolaris_Stdio_TagList[] =
5756   "|stdio_tag.h|";
5757 /*
5758  *  Machine/OS name selection pattern
5759  */
5760 #define apzSolaris_Stdio_TagMachs (const char**)NULL
5761
5762 /*
5763  *  content selection pattern - do fix if pattern found
5764  */
5765 tSCC zSolaris_Stdio_TagSelect0[] =
5766        "__cplusplus < 54321L";
5767
5768 /*
5769  *  content bypass pattern - skip fix if pattern found
5770  */
5771 tSCC zSolaris_Stdio_TagBypass0[] =
5772        "__GNUC__";
5773
5774 #define    SOLARIS_STDIO_TAG_TEST_CT  2
5775 static tTestDesc aSolaris_Stdio_TagTests[] = {
5776   { TT_NEGREP,   zSolaris_Stdio_TagBypass0, (regex_t*)NULL },
5777   { TT_EGREP,    zSolaris_Stdio_TagSelect0, (regex_t*)NULL }, };
5778
5779 /*
5780  *  Fix Command Arguments for Solaris_Stdio_Tag
5781  */
5782 static const char* apzSolaris_Stdio_TagPatch[] = { "sed",
5783     "-e", "s/defined(__cplusplus) && (__cplusplus < 54321L)/0/",
5784     (char*)NULL };
5785
5786 /* * * * * * * * * * * * * * * * * * * * * * * * * *
5787  *
5788  *  Description of Solaris_Unistd fix
5789  */
5790 tSCC zSolaris_UnistdName[] =
5791      "solaris_unistd";
5792
5793 /*
5794  *  File name selection pattern
5795  */
5796 tSCC zSolaris_UnistdList[] =
5797   "|unistd.h|";
5798 /*
5799  *  Machine/OS name selection pattern
5800  */
5801 #define apzSolaris_UnistdMachs (const char**)NULL
5802
5803 /*
5804  *  content selection pattern - do fix if pattern found
5805  */
5806 tSCC zSolaris_UnistdSelect0[] =
5807        "@\\(#\\)unistd.h[ \t]+1.3[0-9][ \t]+9[567]/[0-9/]+ SMI";
5808
5809 /*
5810  *  content bypass pattern - skip fix if pattern found
5811  */
5812 tSCC zSolaris_UnistdBypass0[] =
5813        "getpagesize";
5814
5815 #define    SOLARIS_UNISTD_TEST_CT  2
5816 static tTestDesc aSolaris_UnistdTests[] = {
5817   { TT_NEGREP,   zSolaris_UnistdBypass0, (regex_t*)NULL },
5818   { TT_EGREP,    zSolaris_UnistdSelect0, (regex_t*)NULL }, };
5819
5820 /*
5821  *  Fix Command Arguments for Solaris_Unistd
5822  */
5823 static const char* apzSolaris_UnistdPatch[] = {
5824     "format",
5825     "extern int getpagesize();\n\
5826 %0",
5827     "^extern (pid_t|int) getpgid\\(.*\\);",
5828     (char*)NULL };
5829
5830 /* * * * * * * * * * * * * * * * * * * * * * * * * *
5831  *
5832  *  Description of Solaris_Widec fix
5833  */
5834 tSCC zSolaris_WidecName[] =
5835      "solaris_widec";
5836
5837 /*
5838  *  File name selection pattern
5839  */
5840 tSCC zSolaris_WidecList[] =
5841   "|widec.h|";
5842 /*
5843  *  Machine/OS name selection pattern
5844  */
5845 tSCC* apzSolaris_WidecMachs[] = {
5846         "*-*-solaris2.[0-5]",
5847         "*-*-solaris2.[0-5].*",
5848         (const char*)NULL };
5849
5850 /*
5851  *  content selection pattern - do fix if pattern found
5852  */
5853 tSCC zSolaris_WidecSelect0[] =
5854        "#include <euc.h>";
5855
5856 /*
5857  *  content bypass pattern - skip fix if pattern found
5858  */
5859 tSCC zSolaris_WidecBypass0[] =
5860        "include.*wchar\\.h";
5861
5862 #define    SOLARIS_WIDEC_TEST_CT  2
5863 static tTestDesc aSolaris_WidecTests[] = {
5864   { TT_NEGREP,   zSolaris_WidecBypass0, (regex_t*)NULL },
5865   { TT_EGREP,    zSolaris_WidecSelect0, (regex_t*)NULL }, };
5866
5867 /*
5868  *  Fix Command Arguments for Solaris_Widec
5869  */
5870 static const char* apzSolaris_WidecPatch[] = {
5871     "format",
5872     "%0\n\
5873 #include <wchar.h>",
5874     (char*)NULL };
5875
5876 /* * * * * * * * * * * * * * * * * * * * * * * * * *
5877  *
5878  *  Description of Statsswtch fix
5879  */
5880 tSCC zStatsswtchName[] =
5881      "statsswtch";
5882
5883 /*
5884  *  File name selection pattern
5885  */
5886 tSCC zStatsswtchList[] =
5887   "|rpcsvc/rstat.h|";
5888 /*
5889  *  Machine/OS name selection pattern
5890  */
5891 #define apzStatsswtchMachs (const char**)NULL
5892
5893 /*
5894  *  content selection pattern - do fix if pattern found
5895  */
5896 tSCC zStatsswtchSelect0[] =
5897        "boottime$";
5898
5899 #define    STATSSWTCH_TEST_CT  1
5900 static tTestDesc aStatsswtchTests[] = {
5901   { TT_EGREP,    zStatsswtchSelect0, (regex_t*)NULL }, };
5902
5903 /*
5904  *  Fix Command Arguments for Statsswtch
5905  */
5906 static const char* apzStatsswtchPatch[] = {
5907     "format",
5908     "boottime;",
5909     (char*)NULL };
5910
5911 /* * * * * * * * * * * * * * * * * * * * * * * * * *
5912  *
5913  *  Description of Stdio_Stdarg_H fix
5914  */
5915 tSCC zStdio_Stdarg_HName[] =
5916      "stdio_stdarg_h";
5917
5918 /*
5919  *  File name selection pattern
5920  */
5921 tSCC zStdio_Stdarg_HList[] =
5922   "|stdio.h|";
5923 /*
5924  *  Machine/OS name selection pattern
5925  */
5926 tSCC* apzStdio_Stdarg_HMachs[] = {
5927         "*-*-solaris2.1[0-9]*",
5928         (const char*)NULL };
5929
5930 /*
5931  *  content bypass pattern - skip fix if pattern found
5932  */
5933 tSCC zStdio_Stdarg_HBypass0[] =
5934        "include.*(stdarg.h|machine/ansi.h)";
5935
5936 #define    STDIO_STDARG_H_TEST_CT  1
5937 static tTestDesc aStdio_Stdarg_HTests[] = {
5938   { TT_NEGREP,   zStdio_Stdarg_HBypass0, (regex_t*)NULL }, };
5939
5940 /*
5941  *  Fix Command Arguments for Stdio_Stdarg_H
5942  */
5943 static const char* apzStdio_Stdarg_HPatch[] = {
5944     "wrap",
5945     "#define __need___va_list\n\
5946 #include <stdarg.h>\n",
5947     (char*)NULL };
5948
5949 /* * * * * * * * * * * * * * * * * * * * * * * * * *
5950  *
5951  *  Description of Stdio_Va_List fix
5952  */
5953 tSCC zStdio_Va_ListName[] =
5954      "stdio_va_list";
5955
5956 /*
5957  *  File name selection pattern
5958  */
5959 tSCC zStdio_Va_ListList[] =
5960   "|stdio.h|internal/stdio_core.h|internal/wchar_core.h|";
5961 /*
5962  *  Machine/OS name selection pattern
5963  */
5964 tSCC* apzStdio_Va_ListMachs[] = {
5965         "*-*-solaris2.1[0-9]*",
5966         (const char*)NULL };
5967
5968 /*
5969  *  content bypass pattern - skip fix if pattern found
5970  */
5971 tSCC zStdio_Va_ListBypass0[] =
5972        "__gnuc_va_list|_BSD_VA_LIST_|__DJ_va_list|_G_va_list";
5973
5974 #define    STDIO_VA_LIST_TEST_CT  1
5975 static tTestDesc aStdio_Va_ListTests[] = {
5976   { TT_NEGREP,   zStdio_Va_ListBypass0, (regex_t*)NULL }, };
5977
5978 /*
5979  *  Fix Command Arguments for Stdio_Va_List
5980  */
5981 static const char* apzStdio_Va_ListPatch[] = { "sed",
5982     "-e", "s@[ \t]va_list\\([ \t)]\\)@ __gnuc_va_list\\1@\n\
5983 s@(va_list)&@(__gnuc_va_list)\\&@\n\
5984 s@ _VA_LIST_));@ __gnuc_va_list));@\n\
5985 s@ __VA_LIST__));@ __gnuc_va_list));@\n\
5986 s@ va_list@ __not_va_list__@\n\
5987 s@\\*va_list@*__not_va_list__@\n\
5988 s@ __va_list)@ __gnuc_va_list)@\n\
5989 s@typedef[ \t]\\(.*\\)[ \t]va_list[ \t]*;@typedef \\1 __not_va_list__;@\n\
5990 s@typedef[ \t]*__va_list__@typedef __gnuc_va_list@\n\
5991 s@GNUC_VA_LIST@GNUC_Va_LIST@\n\
5992 s@_VA_LIST_DEFINED@_Va_LIST_DEFINED@\n\
5993 s@_NEED___VA_LIST@_NEED___Va_LIST@\n\
5994 s@VA_LIST@DUMMY_VA_LIST@\n\
5995 s@_Va_LIST@_VA_LIST@",
5996     (char*)NULL };
5997
5998 /* * * * * * * * * * * * * * * * * * * * * * * * * *
5999  *
6000  *  Description of Stdio_Va_List_Clients fix
6001  */
6002 tSCC zStdio_Va_List_ClientsName[] =
6003      "stdio_va_list_clients";
6004
6005 /*
6006  *  File name selection pattern
6007  */
6008 tSCC zStdio_Va_List_ClientsList[] =
6009   "|com_err.h|cps.h|curses.h|krb5.h|lc_core.h|pfmt.h|wchar.h|curses_colr/curses.h|";
6010 /*
6011  *  Machine/OS name selection pattern
6012  */
6013 #define apzStdio_Va_List_ClientsMachs (const char**)NULL
6014
6015 /*
6016  *  content bypass pattern - skip fix if pattern found
6017  */
6018 tSCC zStdio_Va_List_ClientsBypass0[] =
6019        "__gnuc_va_list|_BSD_VA_LIST_|__DJ_va_list|_G_va_list";
6020 tSCC zStdio_Va_List_ClientsBypass1[] =
6021        "include <stdarg\\.h>|#ifdef va_start";
6022
6023 #define    STDIO_VA_LIST_CLIENTS_TEST_CT  2
6024 static tTestDesc aStdio_Va_List_ClientsTests[] = {
6025   { TT_NEGREP,   zStdio_Va_List_ClientsBypass0, (regex_t*)NULL },
6026   { TT_NEGREP,   zStdio_Va_List_ClientsBypass1, (regex_t*)NULL }, };
6027
6028 /*
6029  *  Fix Command Arguments for Stdio_Va_List_Clients
6030  */
6031 static const char* apzStdio_Va_List_ClientsPatch[] = { "sed",
6032     "-e", "s@[ \t]va_list\\([ \t)]\\)@ __gnuc_va_list\\1@\n\
6033 s@(va_list)&@(__gnuc_va_list)\\&@\n\
6034 s@ _VA_LIST_));@ __gnuc_va_list));@\n\
6035 s@ __VA_LIST__));@ __gnuc_va_list));@\n\
6036 s@ va_list@ __not_va_list__@\n\
6037 s@\\*va_list@*__not_va_list__@\n\
6038 s@ __va_list)@ __gnuc_va_list)@\n\
6039 s@typedef[ \t]\\(.*\\)[ \t]va_list[ \t]*;@typedef \\1 __not_va_list__;@\n\
6040 s@typedef[ \t]*__va_list__@typedef __gnuc_va_list@\n\
6041 s@GNUC_VA_LIST@GNUC_Va_LIST@\n\
6042 s@_VA_LIST_DEFINED@_Va_LIST_DEFINED@\n\
6043 s@_NEED___VA_LIST@_NEED___Va_LIST@\n\
6044 s@VA_LIST@DUMMY_VA_LIST@\n\
6045 s@_Va_LIST@_VA_LIST@",
6046     (char*)NULL };
6047
6048 /* * * * * * * * * * * * * * * * * * * * * * * * * *
6049  *
6050  *  Description of Strict_Ansi_Not fix
6051  */
6052 tSCC zStrict_Ansi_NotName[] =
6053      "strict_ansi_not";
6054
6055 /*
6056  *  File name selection pattern
6057  */
6058 #define zStrict_Ansi_NotList (char*)NULL
6059 /*
6060  *  Machine/OS name selection pattern
6061  */
6062 #define apzStrict_Ansi_NotMachs (const char**)NULL
6063
6064 /*
6065  *  content selection pattern - do fix if pattern found
6066  */
6067 tSCC zStrict_Ansi_NotSelect0[] =
6068        "^([ \t]*#[ \t]*if.*)(!__STDC__|__STDC__[ \t]*==[ \t]*0|__STDC__[ \t]*!=[ \t]*1|__STDC__[ \t]*-[ \t]*0[ \t]*==[ \t]*0)";
6069
6070 /*
6071  *  content bypass pattern - skip fix if pattern found
6072  */
6073 tSCC zStrict_Ansi_NotBypass0[] =
6074        "GNU and MIPS C compilers define __STDC__ differently";
6075 tSCC zStrict_Ansi_NotBypass1[] =
6076        "__SCO_VERSION__.*__STDC__ != 1";
6077
6078 /*
6079  *  perform the C function call test
6080  */
6081 tSCC zStrict_Ansi_NotFTst0[] = "stdc_0_in_system_headers";
6082
6083 #define    STRICT_ANSI_NOT_TEST_CT  4
6084 static tTestDesc aStrict_Ansi_NotTests[] = {
6085   { TT_FUNCTION, zStrict_Ansi_NotFTst0,   0 /* unused */ },
6086   { TT_NEGREP,   zStrict_Ansi_NotBypass0, (regex_t*)NULL },
6087   { TT_NEGREP,   zStrict_Ansi_NotBypass1, (regex_t*)NULL },
6088   { TT_EGREP,    zStrict_Ansi_NotSelect0, (regex_t*)NULL }, };
6089
6090 /*
6091  *  Fix Command Arguments for Strict_Ansi_Not
6092  */
6093 static const char* apzStrict_Ansi_NotPatch[] = {
6094     "format",
6095     "%1 !defined(__STRICT_ANSI__)",
6096     (char*)NULL };
6097
6098 /* * * * * * * * * * * * * * * * * * * * * * * * * *
6099  *
6100  *  Description of Strict_Ansi_Not_Ctd fix
6101  */
6102 tSCC zStrict_Ansi_Not_CtdName[] =
6103      "strict_ansi_not_ctd";
6104
6105 /*
6106  *  File name selection pattern
6107  */
6108 tSCC zStrict_Ansi_Not_CtdList[] =
6109   "|math.h|limits.h|stdio.h|signal.h|stdlib.h|sys/signal.h|time.h|";
6110 /*
6111  *  Machine/OS name selection pattern
6112  */
6113 #define apzStrict_Ansi_Not_CtdMachs (const char**)NULL
6114
6115 /*
6116  *  content selection pattern - do fix if pattern found
6117  */
6118 tSCC zStrict_Ansi_Not_CtdSelect0[] =
6119        "^([ \t]*(\\(|&&|\\|\\|)([ \t(]*!*[ \t]*defined\\([a-zA-Z_0-9]+\\)[ \t]*[|&][|&])*[ \t(]*)(__STDC__[ \t]*(|-[ \t]*0[ \t]*)==[ \t]*0)";
6120
6121 /*
6122  *  perform the C function call test
6123  */
6124 tSCC zStrict_Ansi_Not_CtdFTst0[] = "stdc_0_in_system_headers";
6125
6126 #define    STRICT_ANSI_NOT_CTD_TEST_CT  2
6127 static tTestDesc aStrict_Ansi_Not_CtdTests[] = {
6128   { TT_FUNCTION, zStrict_Ansi_Not_CtdFTst0,   0 /* unused */ },
6129   { TT_EGREP,    zStrict_Ansi_Not_CtdSelect0, (regex_t*)NULL }, };
6130
6131 /*
6132  *  Fix Command Arguments for Strict_Ansi_Not_Ctd
6133  */
6134 static const char* apzStrict_Ansi_Not_CtdPatch[] = {
6135     "format",
6136     "%1 !defined(__STRICT_ANSI__)",
6137     (char*)NULL };
6138
6139 /* * * * * * * * * * * * * * * * * * * * * * * * * *
6140  *
6141  *  Description of Strict_Ansi_Only fix
6142  */
6143 tSCC zStrict_Ansi_OnlyName[] =
6144      "strict_ansi_only";
6145
6146 /*
6147  *  File name selection pattern
6148  */
6149 #define zStrict_Ansi_OnlyList (char*)NULL
6150 /*
6151  *  Machine/OS name selection pattern
6152  */
6153 #define apzStrict_Ansi_OnlyMachs (const char**)NULL
6154
6155 /*
6156  *  content selection pattern - do fix if pattern found
6157  */
6158 tSCC zStrict_Ansi_OnlySelect0[] =
6159        "^([ \t]*#[ \t]*if.*)(__STDC__[ \t]*!=[ \t]*0|__STDC__[ \t]*==[ \t]*1|__STDC__[ \t]*-[ \t]*0[ \t]*==[ \t]*1|__STDC__[ \t]*-[ \t]*0[ \t]*!=[ \t]*0)";
6160
6161 /*
6162  *  perform the C function call test
6163  */
6164 tSCC zStrict_Ansi_OnlyFTst0[] = "stdc_0_in_system_headers";
6165
6166 #define    STRICT_ANSI_ONLY_TEST_CT  2
6167 static tTestDesc aStrict_Ansi_OnlyTests[] = {
6168   { TT_FUNCTION, zStrict_Ansi_OnlyFTst0,   0 /* unused */ },
6169   { TT_EGREP,    zStrict_Ansi_OnlySelect0, (regex_t*)NULL }, };
6170
6171 /*
6172  *  Fix Command Arguments for Strict_Ansi_Only
6173  */
6174 static const char* apzStrict_Ansi_OnlyPatch[] = {
6175     "format",
6176     "%1 defined(__STRICT_ANSI__)",
6177     (char*)NULL };
6178
6179 /* * * * * * * * * * * * * * * * * * * * * * * * * *
6180  *
6181  *  Description of Struct_File fix
6182  */
6183 tSCC zStruct_FileName[] =
6184      "struct_file";
6185
6186 /*
6187  *  File name selection pattern
6188  */
6189 tSCC zStruct_FileList[] =
6190   "|rpc/xdr.h|";
6191 /*
6192  *  Machine/OS name selection pattern
6193  */
6194 #define apzStruct_FileMachs (const char**)NULL
6195
6196 /*
6197  *  content selection pattern - do fix if pattern found
6198  */
6199 tSCC zStruct_FileSelect0[] =
6200        "^.*xdrstdio_create.*struct __file_s";
6201
6202 #define    STRUCT_FILE_TEST_CT  1
6203 static tTestDesc aStruct_FileTests[] = {
6204   { TT_EGREP,    zStruct_FileSelect0, (regex_t*)NULL }, };
6205
6206 /*
6207  *  Fix Command Arguments for Struct_File
6208  */
6209 static const char* apzStruct_FilePatch[] = {
6210     "format",
6211     "struct __file_s;\n\
6212 %0",
6213     (char*)NULL };
6214
6215 /* * * * * * * * * * * * * * * * * * * * * * * * * *
6216  *
6217  *  Description of Struct_Sockaddr fix
6218  */
6219 tSCC zStruct_SockaddrName[] =
6220      "struct_sockaddr";
6221
6222 /*
6223  *  File name selection pattern
6224  */
6225 tSCC zStruct_SockaddrList[] =
6226   "|rpc/auth.h|";
6227 /*
6228  *  Machine/OS name selection pattern
6229  */
6230 #define apzStruct_SockaddrMachs (const char**)NULL
6231
6232 /*
6233  *  content selection pattern - do fix if pattern found
6234  */
6235 tSCC zStruct_SockaddrSelect0[] =
6236        "^.*authdes_create.*struct sockaddr[^_]";
6237
6238 /*
6239  *  content bypass pattern - skip fix if pattern found
6240  */
6241 tSCC zStruct_SockaddrBypass0[] =
6242        "<sys/socket.h>";
6243 tSCC zStruct_SockaddrBypass1[] =
6244        "struct sockaddr;\n";
6245
6246 #define    STRUCT_SOCKADDR_TEST_CT  3
6247 static tTestDesc aStruct_SockaddrTests[] = {
6248   { TT_NEGREP,   zStruct_SockaddrBypass0, (regex_t*)NULL },
6249   { TT_NEGREP,   zStruct_SockaddrBypass1, (regex_t*)NULL },
6250   { TT_EGREP,    zStruct_SockaddrSelect0, (regex_t*)NULL }, };
6251
6252 /*
6253  *  Fix Command Arguments for Struct_Sockaddr
6254  */
6255 static const char* apzStruct_SockaddrPatch[] = {
6256     "format",
6257     "struct sockaddr;\n\
6258 %0",
6259     (char*)NULL };
6260
6261 /* * * * * * * * * * * * * * * * * * * * * * * * * *
6262  *
6263  *  Description of Sun_Auth_Proto fix
6264  */
6265 tSCC zSun_Auth_ProtoName[] =
6266      "sun_auth_proto";
6267
6268 /*
6269  *  File name selection pattern
6270  */
6271 tSCC zSun_Auth_ProtoList[] =
6272   "|rpc/auth.h|rpc/clnt.h|rpc/svc.h|rpc/xdr.h|";
6273 /*
6274  *  Machine/OS name selection pattern
6275  */
6276 #define apzSun_Auth_ProtoMachs (const char**)NULL
6277
6278 /*
6279  *  content selection pattern - do fix if pattern found
6280  */
6281 tSCC zSun_Auth_ProtoSelect0[] =
6282        "\\(\\*[a-z][a-z_]*\\)\\(\\)";
6283
6284 /*
6285  *  content bypass pattern - skip fix if pattern found
6286  */
6287 tSCC zSun_Auth_ProtoBypass0[] =
6288        "__cplusplus";
6289
6290 #define    SUN_AUTH_PROTO_TEST_CT  2
6291 static tTestDesc aSun_Auth_ProtoTests[] = {
6292   { TT_NEGREP,   zSun_Auth_ProtoBypass0, (regex_t*)NULL },
6293   { TT_EGREP,    zSun_Auth_ProtoSelect0, (regex_t*)NULL }, };
6294
6295 /*
6296  *  Fix Command Arguments for Sun_Auth_Proto
6297  */
6298 static const char* apzSun_Auth_ProtoPatch[] = {
6299     "format",
6300     "#ifdef __cplusplus\n\
6301 %1(...);%2\n\
6302 #else\n\
6303 %1();%2\n\
6304 #endif",
6305     "(.*\\(\\*[a-z][a-z_]*\\))\\(\\);(.*)",
6306     (char*)NULL };
6307
6308 /* * * * * * * * * * * * * * * * * * * * * * * * * *
6309  *
6310  *  Description of Sun_Bogus_Ifdef fix
6311  */
6312 tSCC zSun_Bogus_IfdefName[] =
6313      "sun_bogus_ifdef";
6314
6315 /*
6316  *  File name selection pattern
6317  */
6318 tSCC zSun_Bogus_IfdefList[] =
6319   "|hsfs/hsfs_spec.h|hsfs/iso_spec.h|";
6320 /*
6321  *  Machine/OS name selection pattern
6322  */
6323 #define apzSun_Bogus_IfdefMachs (const char**)NULL
6324
6325 /*
6326  *  content selection pattern - do fix if pattern found
6327  */
6328 tSCC zSun_Bogus_IfdefSelect0[] =
6329        "#ifdef(.*\\|\\|.*)";
6330
6331 #define    SUN_BOGUS_IFDEF_TEST_CT  1
6332 static tTestDesc aSun_Bogus_IfdefTests[] = {
6333   { TT_EGREP,    zSun_Bogus_IfdefSelect0, (regex_t*)NULL }, };
6334
6335 /*
6336  *  Fix Command Arguments for Sun_Bogus_Ifdef
6337  */
6338 static const char* apzSun_Bogus_IfdefPatch[] = {
6339     "format",
6340     "#if%1",
6341     (char*)NULL };
6342
6343 /* * * * * * * * * * * * * * * * * * * * * * * * * *
6344  *
6345  *  Description of Sun_Catmacro fix
6346  */
6347 tSCC zSun_CatmacroName[] =
6348      "sun_catmacro";
6349
6350 /*
6351  *  File name selection pattern
6352  */
6353 tSCC zSun_CatmacroList[] =
6354   "|pixrect/memvar.h|";
6355 /*
6356  *  Machine/OS name selection pattern
6357  */
6358 #define apzSun_CatmacroMachs (const char**)NULL
6359
6360 /*
6361  *  content selection pattern - do fix if pattern found
6362  */
6363 tSCC zSun_CatmacroSelect0[] =
6364        "^#define[ \t]+CAT\\(a,b\\).*";
6365
6366 #define    SUN_CATMACRO_TEST_CT  1
6367 static tTestDesc aSun_CatmacroTests[] = {
6368   { TT_EGREP,    zSun_CatmacroSelect0, (regex_t*)NULL }, };
6369
6370 /*
6371  *  Fix Command Arguments for Sun_Catmacro
6372  */
6373 static const char* apzSun_CatmacroPatch[] = {
6374     "format",
6375     "#ifdef __STDC__\n\
6376 #  define CAT(a,b) a##b\n\
6377 #else\n\
6378 %0\n\
6379 #endif",
6380     (char*)NULL };
6381
6382 /* * * * * * * * * * * * * * * * * * * * * * * * * *
6383  *
6384  *  Description of Sun_Malloc fix
6385  */
6386 tSCC zSun_MallocName[] =
6387      "sun_malloc";
6388
6389 /*
6390  *  File name selection pattern
6391  */
6392 tSCC zSun_MallocList[] =
6393   "|malloc.h|";
6394 /*
6395  *  Machine/OS name selection pattern
6396  */
6397 #define apzSun_MallocMachs (const char**)NULL
6398
6399 /*
6400  *  content bypass pattern - skip fix if pattern found
6401  */
6402 tSCC zSun_MallocBypass0[] =
6403        "_CLASSIC_ANSI_TYPES";
6404
6405 #define    SUN_MALLOC_TEST_CT  1
6406 static tTestDesc aSun_MallocTests[] = {
6407   { TT_NEGREP,   zSun_MallocBypass0, (regex_t*)NULL }, };
6408
6409 /*
6410  *  Fix Command Arguments for Sun_Malloc
6411  */
6412 static const char* apzSun_MallocPatch[] = { "sed",
6413     "-e", "s/typedef[ \t]char \\*\tmalloc_t/typedef void \\*\tmalloc_t/g",
6414     "-e", "s/int[ \t][ \t]*free/void\tfree/g",
6415     "-e", "s/char\\([ \t]*\\*[ \t]*malloc\\)/void\\1/g",
6416     "-e", "s/char\\([ \t]*\\*[ \t]*realloc\\)/void\\1/g",
6417     "-e", "s/char\\([ \t]*\\*[ \t]*calloc\\)/void\\1/g",
6418     (char*)NULL };
6419
6420 /* * * * * * * * * * * * * * * * * * * * * * * * * *
6421  *
6422  *  Description of Sun_Rusers_Semi fix
6423  */
6424 tSCC zSun_Rusers_SemiName[] =
6425      "sun_rusers_semi";
6426
6427 /*
6428  *  File name selection pattern
6429  */
6430 tSCC zSun_Rusers_SemiList[] =
6431   "|rpcsvc/rusers.h|";
6432 /*
6433  *  Machine/OS name selection pattern
6434  */
6435 #define apzSun_Rusers_SemiMachs (const char**)NULL
6436
6437 /*
6438  *  content selection pattern - do fix if pattern found
6439  */
6440 tSCC zSun_Rusers_SemiSelect0[] =
6441        "_cnt$";
6442
6443 #define    SUN_RUSERS_SEMI_TEST_CT  1
6444 static tTestDesc aSun_Rusers_SemiTests[] = {
6445   { TT_EGREP,    zSun_Rusers_SemiSelect0, (regex_t*)NULL }, };
6446
6447 /*
6448  *  Fix Command Arguments for Sun_Rusers_Semi
6449  */
6450 static const char* apzSun_Rusers_SemiPatch[] = { "sed",
6451     "-e", "/^struct/,/^};/s/_cnt$/_cnt;/",
6452     (char*)NULL };
6453
6454 /* * * * * * * * * * * * * * * * * * * * * * * * * *
6455  *
6456  *  Description of Sun_Signal fix
6457  */
6458 tSCC zSun_SignalName[] =
6459      "sun_signal";
6460
6461 /*
6462  *  File name selection pattern
6463  */
6464 tSCC zSun_SignalList[] =
6465   "|sys/signal.h|signal.h|";
6466 /*
6467  *  Machine/OS name selection pattern
6468  */
6469 #define apzSun_SignalMachs (const char**)NULL
6470
6471 /*
6472  *  content selection pattern - do fix if pattern found
6473  */
6474 tSCC zSun_SignalSelect0[] =
6475        "^void\t\\(\\*signal\\(\\)\\)\\(\\);.*";
6476
6477 #define    SUN_SIGNAL_TEST_CT  1
6478 static tTestDesc aSun_SignalTests[] = {
6479   { TT_EGREP,    zSun_SignalSelect0, (regex_t*)NULL }, };
6480
6481 /*
6482  *  Fix Command Arguments for Sun_Signal
6483  */
6484 static const char* apzSun_SignalPatch[] = {
6485     "format",
6486     "#ifdef __cplusplus\n\
6487 void\t(*signal(...))(...);\n\
6488 #else\n\
6489 %0\n\
6490 #endif",
6491     (char*)NULL };
6492
6493 /* * * * * * * * * * * * * * * * * * * * * * * * * *
6494  *
6495  *  Description of Sunos_Strlen fix
6496  */
6497 tSCC zSunos_StrlenName[] =
6498      "sunos_strlen";
6499
6500 /*
6501  *  File name selection pattern
6502  */
6503 tSCC zSunos_StrlenList[] =
6504   "|strings.h|";
6505 /*
6506  *  Machine/OS name selection pattern
6507  */
6508 #define apzSunos_StrlenMachs (const char**)NULL
6509
6510 /*
6511  *  content selection pattern - do fix if pattern found
6512  */
6513 tSCC zSunos_StrlenSelect0[] =
6514        "int[ \t]*strlen\\(\\);(.*)";
6515
6516 #define    SUNOS_STRLEN_TEST_CT  1
6517 static tTestDesc aSunos_StrlenTests[] = {
6518   { TT_EGREP,    zSunos_StrlenSelect0, (regex_t*)NULL }, };
6519
6520 /*
6521  *  Fix Command Arguments for Sunos_Strlen
6522  */
6523 static const char* apzSunos_StrlenPatch[] = {
6524     "format",
6525     "__SIZE_TYPE__ strlen();%1",
6526     (char*)NULL };
6527
6528 /* * * * * * * * * * * * * * * * * * * * * * * * * *
6529  *
6530  *  Description of Svr4_Disable_Opt fix
6531  */
6532 tSCC zSvr4_Disable_OptName[] =
6533      "svr4_disable_opt";
6534
6535 /*
6536  *  File name selection pattern
6537  */
6538 tSCC zSvr4_Disable_OptList[] =
6539   "|string.h|";
6540 /*
6541  *  Machine/OS name selection pattern
6542  */
6543 #define apzSvr4_Disable_OptMachs (const char**)NULL
6544
6545 /*
6546  *  content selection pattern - do fix if pattern found
6547  */
6548 tSCC zSvr4_Disable_OptSelect0[] =
6549        "#define.*__std_hdr_";
6550
6551 #define    SVR4_DISABLE_OPT_TEST_CT  1
6552 static tTestDesc aSvr4_Disable_OptTests[] = {
6553   { TT_EGREP,    zSvr4_Disable_OptSelect0, (regex_t*)NULL }, };
6554
6555 /*
6556  *  Fix Command Arguments for Svr4_Disable_Opt
6557  */
6558 static const char* apzSvr4_Disable_OptPatch[] = { "sed",
6559     "-e", "/#define.*__std_hdr_/d",
6560     (char*)NULL };
6561
6562 /* * * * * * * * * * * * * * * * * * * * * * * * * *
6563  *
6564  *  Description of Svr4_Getcwd fix
6565  */
6566 tSCC zSvr4_GetcwdName[] =
6567      "svr4_getcwd";
6568
6569 /*
6570  *  File name selection pattern
6571  */
6572 tSCC zSvr4_GetcwdList[] =
6573   "|stdlib.h|unistd.h|prototypes.h|";
6574 /*
6575  *  Machine/OS name selection pattern
6576  */
6577 #define apzSvr4_GetcwdMachs (const char**)NULL
6578
6579 /*
6580  *  content selection pattern - do fix if pattern found
6581  */
6582 tSCC zSvr4_GetcwdSelect0[] =
6583        "getcwd\\(char \\*, int\\)";
6584
6585 #define    SVR4_GETCWD_TEST_CT  1
6586 static tTestDesc aSvr4_GetcwdTests[] = {
6587   { TT_EGREP,    zSvr4_GetcwdSelect0, (regex_t*)NULL }, };
6588
6589 /*
6590  *  Fix Command Arguments for Svr4_Getcwd
6591  */
6592 static const char* apzSvr4_GetcwdPatch[] = {
6593     "format",
6594     "getcwd(char *, size_t)",
6595     (char*)NULL };
6596
6597 /* * * * * * * * * * * * * * * * * * * * * * * * * *
6598  *
6599  *  Description of Svr4_Krnl fix
6600  */
6601 tSCC zSvr4_KrnlName[] =
6602      "svr4_krnl";
6603
6604 /*
6605  *  File name selection pattern
6606  */
6607 tSCC zSvr4_KrnlList[] =
6608   "|fs/rfs/rf_cache.h|sys/erec.h|sys/err.h|sys/char.h|sys/getpages.h|sys/map.h|sys/cmn_err.h|sys/kdebugger.h|";
6609 /*
6610  *  Machine/OS name selection pattern
6611  */
6612 tSCC* apzSvr4_KrnlMachs[] = {
6613         "*-*-sysv4*",
6614         "i?86-sequent-ptx*",
6615         (const char*)NULL };
6616
6617 /*
6618  *  content bypass pattern - skip fix if pattern found
6619  */
6620 tSCC zSvr4_KrnlBypass0[] =
6621        "_KERNEL";
6622
6623 #define    SVR4_KRNL_TEST_CT  1
6624 static tTestDesc aSvr4_KrnlTests[] = {
6625   { TT_NEGREP,   zSvr4_KrnlBypass0, (regex_t*)NULL }, };
6626
6627 /*
6628  *  Fix Command Arguments for Svr4_Krnl
6629  */
6630 static const char* apzSvr4_KrnlPatch[] = {
6631     "wrap",
6632     "#ifdef _KERNEL\n",
6633     "#endif /* _KERNEL */\n",
6634     (char*)NULL };
6635
6636 /* * * * * * * * * * * * * * * * * * * * * * * * * *
6637  *
6638  *  Description of Svr4_Profil fix
6639  */
6640 tSCC zSvr4_ProfilName[] =
6641      "svr4_profil";
6642
6643 /*
6644  *  File name selection pattern
6645  */
6646 tSCC zSvr4_ProfilList[] =
6647   "|stdlib.h|unistd.h|";
6648 /*
6649  *  Machine/OS name selection pattern
6650  */
6651 #define apzSvr4_ProfilMachs (const char**)NULL
6652
6653 /*
6654  *  content selection pattern - do fix if pattern found
6655  */
6656 tSCC zSvr4_ProfilSelect0[] =
6657        "profil\\(unsigned short \\*, unsigned int, unsigned int, unsigned int\\)";
6658
6659 /*
6660  *  content bypass pattern - skip fix if pattern found
6661  */
6662 tSCC zSvr4_ProfilBypass0[] =
6663        "Silicon Graphics";
6664
6665 #define    SVR4_PROFIL_TEST_CT  2
6666 static tTestDesc aSvr4_ProfilTests[] = {
6667   { TT_NEGREP,   zSvr4_ProfilBypass0, (regex_t*)NULL },
6668   { TT_EGREP,    zSvr4_ProfilSelect0, (regex_t*)NULL }, };
6669
6670 /*
6671  *  Fix Command Arguments for Svr4_Profil
6672  */
6673 static const char* apzSvr4_ProfilPatch[] = {
6674     "format",
6675     "profil(unsigned short *, size_t, int, unsigned int)",
6676     (char*)NULL };
6677
6678 /* * * * * * * * * * * * * * * * * * * * * * * * * *
6679  *
6680  *  Description of Svr4_Sighandler_Type fix
6681  */
6682 tSCC zSvr4_Sighandler_TypeName[] =
6683      "svr4_sighandler_type";
6684
6685 /*
6686  *  File name selection pattern
6687  */
6688 tSCC zSvr4_Sighandler_TypeList[] =
6689   "|sys/signal.h|";
6690 /*
6691  *  Machine/OS name selection pattern
6692  */
6693 #define apzSvr4_Sighandler_TypeMachs (const char**)NULL
6694
6695 /*
6696  *  content selection pattern - do fix if pattern found
6697  */
6698 tSCC zSvr4_Sighandler_TypeSelect0[] =
6699        "void *\\(\\*\\)\\(\\)";
6700
6701 #define    SVR4_SIGHANDLER_TYPE_TEST_CT  1
6702 static tTestDesc aSvr4_Sighandler_TypeTests[] = {
6703   { TT_EGREP,    zSvr4_Sighandler_TypeSelect0, (regex_t*)NULL }, };
6704
6705 /*
6706  *  Fix Command Arguments for Svr4_Sighandler_Type
6707  */
6708 static const char* apzSvr4_Sighandler_TypePatch[] = {
6709     "format",
6710     "void (*)(int)",
6711     (char*)NULL };
6712
6713 /* * * * * * * * * * * * * * * * * * * * * * * * * *
6714  *
6715  *  Description of Svr4_Undeclared_Getrnge fix
6716  */
6717 tSCC zSvr4_Undeclared_GetrngeName[] =
6718      "svr4_undeclared_getrnge";
6719
6720 /*
6721  *  File name selection pattern
6722  */
6723 tSCC zSvr4_Undeclared_GetrngeList[] =
6724   "|regexp.h|";
6725 /*
6726  *  Machine/OS name selection pattern
6727  */
6728 #define apzSvr4_Undeclared_GetrngeMachs (const char**)NULL
6729
6730 /*
6731  *  content selection pattern - do fix if pattern found
6732  */
6733 tSCC zSvr4_Undeclared_GetrngeSelect0[] =
6734        "getrnge";
6735
6736 /*
6737  *  content bypass pattern - skip fix if pattern found
6738  */
6739 tSCC zSvr4_Undeclared_GetrngeBypass0[] =
6740        "static void getrnge";
6741
6742 #define    SVR4_UNDECLARED_GETRNGE_TEST_CT  2
6743 static tTestDesc aSvr4_Undeclared_GetrngeTests[] = {
6744   { TT_NEGREP,   zSvr4_Undeclared_GetrngeBypass0, (regex_t*)NULL },
6745   { TT_EGREP,    zSvr4_Undeclared_GetrngeSelect0, (regex_t*)NULL }, };
6746
6747 /*
6748  *  Fix Command Arguments for Svr4_Undeclared_Getrnge
6749  */
6750 static const char* apzSvr4_Undeclared_GetrngePatch[] = {
6751     "format",
6752     "%0\n\
6753 static int getrnge ();",
6754     "^static int[ \t]+size;",
6755     (char*)NULL };
6756
6757 /* * * * * * * * * * * * * * * * * * * * * * * * * *
6758  *
6759  *  Description of Sysv68_String fix
6760  */
6761 tSCC zSysv68_StringName[] =
6762      "sysv68_string";
6763
6764 /*
6765  *  File name selection pattern
6766  */
6767 tSCC zSysv68_StringList[] =
6768   "|testing.h|string.h|";
6769 /*
6770  *  Machine/OS name selection pattern
6771  */
6772 #define apzSysv68_StringMachs (const char**)NULL
6773
6774 /*
6775  *  content bypass pattern - skip fix if pattern found
6776  */
6777 tSCC zSysv68_StringBypass0[] =
6778        "_CLASSIC_ANSI_TYPES";
6779
6780 #define    SYSV68_STRING_TEST_CT  1
6781 static tTestDesc aSysv68_StringTests[] = {
6782   { TT_NEGREP,   zSysv68_StringBypass0, (regex_t*)NULL }, };
6783
6784 /*
6785  *  Fix Command Arguments for Sysv68_String
6786  */
6787 static const char* apzSysv68_StringPatch[] = { "sed",
6788     "-e", "s/extern[ \t]*int[ \t]*strlen();/extern unsigned int strlen();/",
6789     "-e", "s/extern[ \t]*int[ \t]*ffs[ \t]*(long);/extern int ffs(int);/",
6790     "-e", "s/strdup(char \\*s1);/strdup(const char *s1);/",
6791     "-e", "/^extern char$/N",
6792     "-e", "s/^extern char\\(\\n\t\\*memccpy(),\\)$/extern void\\1/",
6793     "-e", "/^extern int$/N",
6794     "-e", "s/^extern int\\(\\n\tstrlen(),\\)/extern size_t\\1/",
6795     "-e", "/^\tstrncmp(),$/N",
6796     "-e", "s/^\\(\tstrncmp()\\),\\n\\(\tstrlen(),\\)$/\\1;\\\n\
6797 extern unsigned int\\\n\
6798 \\2/",
6799     (char*)NULL };
6800
6801 /* * * * * * * * * * * * * * * * * * * * * * * * * *
6802  *
6803  *  Description of Sysz_Stdlib_For_Sun fix
6804  */
6805 tSCC zSysz_Stdlib_For_SunName[] =
6806      "sysz_stdlib_for_sun";
6807
6808 /*
6809  *  File name selection pattern
6810  */
6811 tSCC zSysz_Stdlib_For_SunList[] =
6812   "|stdlib.h|";
6813 /*
6814  *  Machine/OS name selection pattern
6815  */
6816 #define apzSysz_Stdlib_For_SunMachs (const char**)NULL
6817
6818 /*
6819  *  content selection pattern - do fix if pattern found
6820  */
6821 tSCC zSysz_Stdlib_For_SunSelect0[] =
6822        "char[ \t]*\\*[ \t]*(calloc|malloc|realloc|bsearch)[ \t]*\\(";
6823
6824 /*
6825  *  content bypass pattern - skip fix if pattern found
6826  */
6827 tSCC zSysz_Stdlib_For_SunBypass0[] =
6828        "_CLASSIC_ANSI_TYPES";
6829
6830 #define    SYSZ_STDLIB_FOR_SUN_TEST_CT  2
6831 static tTestDesc aSysz_Stdlib_For_SunTests[] = {
6832   { TT_NEGREP,   zSysz_Stdlib_For_SunBypass0, (regex_t*)NULL },
6833   { TT_EGREP,    zSysz_Stdlib_For_SunSelect0, (regex_t*)NULL }, };
6834
6835 /*
6836  *  Fix Command Arguments for Sysz_Stdlib_For_Sun
6837  */
6838 static const char* apzSysz_Stdlib_For_SunPatch[] = {
6839     "format",
6840     "void *\t%1(",
6841     (char*)NULL };
6842
6843 /* * * * * * * * * * * * * * * * * * * * * * * * * *
6844  *
6845  *  Description of Thread_Keyword fix
6846  */
6847 tSCC zThread_KeywordName[] =
6848      "thread_keyword";
6849
6850 /*
6851  *  File name selection pattern
6852  */
6853 tSCC zThread_KeywordList[] =
6854   "|pthread.h|bits/sigthread.h|";
6855 /*
6856  *  Machine/OS name selection pattern
6857  */
6858 #define apzThread_KeywordMachs (const char**)NULL
6859
6860 /*
6861  *  content selection pattern - do fix if pattern found
6862  */
6863 tSCC zThread_KeywordSelect0[] =
6864        "([* ])__thread([,)])";
6865
6866 #define    THREAD_KEYWORD_TEST_CT  1
6867 static tTestDesc aThread_KeywordTests[] = {
6868   { TT_EGREP,    zThread_KeywordSelect0, (regex_t*)NULL }, };
6869
6870 /*
6871  *  Fix Command Arguments for Thread_Keyword
6872  */
6873 static const char* apzThread_KeywordPatch[] = {
6874     "format",
6875     "%1__thr%2",
6876     (char*)NULL };
6877
6878 /* * * * * * * * * * * * * * * * * * * * * * * * * *
6879  *
6880  *  Description of Tinfo_Cplusplus fix
6881  */
6882 tSCC zTinfo_CplusplusName[] =
6883      "tinfo_cplusplus";
6884
6885 /*
6886  *  File name selection pattern
6887  */
6888 tSCC zTinfo_CplusplusList[] =
6889   "|tinfo.h|";
6890 /*
6891  *  Machine/OS name selection pattern
6892  */
6893 #define apzTinfo_CplusplusMachs (const char**)NULL
6894
6895 /*
6896  *  content selection pattern - do fix if pattern found
6897  */
6898 tSCC zTinfo_CplusplusSelect0[] =
6899        "[ \t]_cplusplus";
6900
6901 #define    TINFO_CPLUSPLUS_TEST_CT  1
6902 static tTestDesc aTinfo_CplusplusTests[] = {
6903   { TT_EGREP,    zTinfo_CplusplusSelect0, (regex_t*)NULL }, };
6904
6905 /*
6906  *  Fix Command Arguments for Tinfo_Cplusplus
6907  */
6908 static const char* apzTinfo_CplusplusPatch[] = {
6909     "format",
6910     " __cplusplus",
6911     (char*)NULL };
6912
6913 /* * * * * * * * * * * * * * * * * * * * * * * * * *
6914  *
6915  *  Description of Ultrix_Atexit_Param fix
6916  */
6917 tSCC zUltrix_Atexit_ParamName[] =
6918      "ultrix_atexit_param";
6919
6920 /*
6921  *  File name selection pattern
6922  */
6923 tSCC zUltrix_Atexit_ParamList[] =
6924   "|stdlib.h|";
6925 /*
6926  *  Machine/OS name selection pattern
6927  */
6928 #define apzUltrix_Atexit_ParamMachs (const char**)NULL
6929
6930 /*
6931  *  content selection pattern - do fix if pattern found
6932  */
6933 tSCC zUltrix_Atexit_ParamSelect0[] =
6934        "atexit\\(.*\\(\\)";
6935
6936 #define    ULTRIX_ATEXIT_PARAM_TEST_CT  1
6937 static tTestDesc aUltrix_Atexit_ParamTests[] = {
6938   { TT_EGREP,    zUltrix_Atexit_ParamSelect0, (regex_t*)NULL }, };
6939
6940 /*
6941  *  Fix Command Arguments for Ultrix_Atexit_Param
6942  */
6943 static const char* apzUltrix_Atexit_ParamPatch[] = {
6944     "format",
6945     "atexit( void (*__func)( void )",
6946     (char*)NULL };
6947
6948 /* * * * * * * * * * * * * * * * * * * * * * * * * *
6949  *
6950  *  Description of Ultrix_Atof_Param fix
6951  */
6952 tSCC zUltrix_Atof_ParamName[] =
6953      "ultrix_atof_param";
6954
6955 /*
6956  *  File name selection pattern
6957  */
6958 tSCC zUltrix_Atof_ParamList[] =
6959   "|math.h|";
6960 /*
6961  *  Machine/OS name selection pattern
6962  */
6963 #define apzUltrix_Atof_ParamMachs (const char**)NULL
6964
6965 /*
6966  *  content selection pattern - do fix if pattern found
6967  */
6968 tSCC zUltrix_Atof_ParamSelect0[] =
6969        "atof\\([ \t]*char";
6970
6971 #define    ULTRIX_ATOF_PARAM_TEST_CT  1
6972 static tTestDesc aUltrix_Atof_ParamTests[] = {
6973   { TT_EGREP,    zUltrix_Atof_ParamSelect0, (regex_t*)NULL }, };
6974
6975 /*
6976  *  Fix Command Arguments for Ultrix_Atof_Param
6977  */
6978 static const char* apzUltrix_Atof_ParamPatch[] = {
6979     "format",
6980     "atof(const char",
6981     (char*)NULL };
6982
6983 /* * * * * * * * * * * * * * * * * * * * * * * * * *
6984  *
6985  *  Description of Ultrix_Const fix
6986  */
6987 tSCC zUltrix_ConstName[] =
6988      "ultrix_const";
6989
6990 /*
6991  *  File name selection pattern
6992  */
6993 tSCC zUltrix_ConstList[] =
6994   "|stdio.h|";
6995 /*
6996  *  Machine/OS name selection pattern
6997  */
6998 #define apzUltrix_ConstMachs (const char**)NULL
6999
7000 /*
7001  *  content selection pattern - do fix if pattern found
7002  */
7003 tSCC zUltrix_ConstSelect0[] =
7004        "perror\\( char \\*";
7005
7006 #define    ULTRIX_CONST_TEST_CT  1
7007 static tTestDesc aUltrix_ConstTests[] = {
7008   { TT_EGREP,    zUltrix_ConstSelect0, (regex_t*)NULL }, };
7009
7010 /*
7011  *  Fix Command Arguments for Ultrix_Const
7012  */
7013 static const char* apzUltrix_ConstPatch[] = {
7014     "format",
7015     "%1 const %3 *__",
7016     "([ \t*](perror|fputs|fwrite|scanf|fscanf)\\(.*)[ \t]+(char|void) \\*__",
7017     (char*)NULL };
7018
7019 /* * * * * * * * * * * * * * * * * * * * * * * * * *
7020  *
7021  *  Description of Ultrix_Const2 fix
7022  */
7023 tSCC zUltrix_Const2Name[] =
7024      "ultrix_const2";
7025
7026 /*
7027  *  File name selection pattern
7028  */
7029 tSCC zUltrix_Const2List[] =
7030   "|stdio.h|";
7031 /*
7032  *  Machine/OS name selection pattern
7033  */
7034 #define apzUltrix_Const2Machs (const char**)NULL
7035
7036 /*
7037  *  content selection pattern - do fix if pattern found
7038  */
7039 tSCC zUltrix_Const2Select0[] =
7040        "\\*fopen\\( char \\*";
7041
7042 #define    ULTRIX_CONST2_TEST_CT  1
7043 static tTestDesc aUltrix_Const2Tests[] = {
7044   { TT_EGREP,    zUltrix_Const2Select0, (regex_t*)NULL }, };
7045
7046 /*
7047  *  Fix Command Arguments for Ultrix_Const2
7048  */
7049 static const char* apzUltrix_Const2Patch[] = {
7050     "format",
7051     "%1( const char *%3, const char *",
7052     "([ \t*](fopen|sscanf|popen|tempnam))\\([ \t]*char[ \t]*\\*([^,]*),[ \t]*char[ \t]*\\*[ \t]*",
7053     (char*)NULL };
7054
7055 /* * * * * * * * * * * * * * * * * * * * * * * * * *
7056  *
7057  *  Description of Ultrix_Const3 fix
7058  */
7059 tSCC zUltrix_Const3Name[] =
7060      "ultrix_const3";
7061
7062 /*
7063  *  File name selection pattern
7064  */
7065 tSCC zUltrix_Const3List[] =
7066   "|stdio.h|";
7067 /*
7068  *  Machine/OS name selection pattern
7069  */
7070 #define apzUltrix_Const3Machs (const char**)NULL
7071
7072 /*
7073  *  content selection pattern - do fix if pattern found
7074  */
7075 tSCC zUltrix_Const3Select0[] =
7076        "fdopen\\( .*, char \\*";
7077
7078 #define    ULTRIX_CONST3_TEST_CT  1
7079 static tTestDesc aUltrix_Const3Tests[] = {
7080   { TT_EGREP,    zUltrix_Const3Select0, (regex_t*)NULL }, };
7081
7082 /*
7083  *  Fix Command Arguments for Ultrix_Const3
7084  */
7085 static const char* apzUltrix_Const3Patch[] = {
7086     "format",
7087     "%1 const %3 *__",
7088     "([ \t*](fdopen)\\(.*)[ \t]+(char|void) \\*__",
7089     (char*)NULL };
7090
7091 /* * * * * * * * * * * * * * * * * * * * * * * * * *
7092  *
7093  *  Description of Ultrix_Fix_Fixproto fix
7094  */
7095 tSCC zUltrix_Fix_FixprotoName[] =
7096      "ultrix_fix_fixproto";
7097
7098 /*
7099  *  File name selection pattern
7100  */
7101 tSCC zUltrix_Fix_FixprotoList[] =
7102   "|sys/utsname.h|";
7103 /*
7104  *  Machine/OS name selection pattern
7105  */
7106 #define apzUltrix_Fix_FixprotoMachs (const char**)NULL
7107
7108 /*
7109  *  content selection pattern - do fix if pattern found
7110  */
7111 tSCC zUltrix_Fix_FixprotoSelect0[] =
7112        "ULTRIX";
7113
7114 #define    ULTRIX_FIX_FIXPROTO_TEST_CT  1
7115 static tTestDesc aUltrix_Fix_FixprotoTests[] = {
7116   { TT_EGREP,    zUltrix_Fix_FixprotoSelect0, (regex_t*)NULL }, };
7117
7118 /*
7119  *  Fix Command Arguments for Ultrix_Fix_Fixproto
7120  */
7121 static const char* apzUltrix_Fix_FixprotoPatch[] = {
7122     "format",
7123     "struct utsname;\n\
7124 %0",
7125     "^[ \t]*extern[ \t]*int[ \t]*uname\\(\\);",
7126     (char*)NULL };
7127
7128 /* * * * * * * * * * * * * * * * * * * * * * * * * *
7129  *
7130  *  Description of Ultrix_Ifdef fix
7131  */
7132 tSCC zUltrix_IfdefName[] =
7133      "ultrix_ifdef";
7134
7135 /*
7136  *  File name selection pattern
7137  */
7138 tSCC zUltrix_IfdefList[] =
7139   "|sys/file.h|";
7140 /*
7141  *  Machine/OS name selection pattern
7142  */
7143 #define apzUltrix_IfdefMachs (const char**)NULL
7144
7145 /*
7146  *  content selection pattern - do fix if pattern found
7147  */
7148 tSCC zUltrix_IfdefSelect0[] =
7149        "^#ifdef KERNEL[ \t]+&&";
7150
7151 #define    ULTRIX_IFDEF_TEST_CT  1
7152 static tTestDesc aUltrix_IfdefTests[] = {
7153   { TT_EGREP,    zUltrix_IfdefSelect0, (regex_t*)NULL }, };
7154
7155 /*
7156  *  Fix Command Arguments for Ultrix_Ifdef
7157  */
7158 static const char* apzUltrix_IfdefPatch[] = {
7159     "format",
7160     "#if defined(KERNEL) &&",
7161     (char*)NULL };
7162
7163 /* * * * * * * * * * * * * * * * * * * * * * * * * *
7164  *
7165  *  Description of Ultrix_Locale fix
7166  */
7167 tSCC zUltrix_LocaleName[] =
7168      "ultrix_locale";
7169
7170 /*
7171  *  File name selection pattern
7172  */
7173 tSCC zUltrix_LocaleList[] =
7174   "|locale.h|";
7175 /*
7176  *  Machine/OS name selection pattern
7177  */
7178 #define apzUltrix_LocaleMachs (const char**)NULL
7179
7180 /*
7181  *  content selection pattern - do fix if pattern found
7182  */
7183 tSCC zUltrix_LocaleSelect0[] =
7184        "@\\(#\\)locale\\.h.*6\\.1.*\\(ULTRIX\\)";
7185
7186 #define    ULTRIX_LOCALE_TEST_CT  1
7187 static tTestDesc aUltrix_LocaleTests[] = {
7188   { TT_EGREP,    zUltrix_LocaleSelect0, (regex_t*)NULL }, };
7189
7190 /*
7191  *  Fix Command Arguments for Ultrix_Locale
7192  */
7193 static const char* apzUltrix_LocalePatch[] = {
7194     "wrap",
7195     (char*)NULL };
7196
7197 /* * * * * * * * * * * * * * * * * * * * * * * * * *
7198  *
7199  *  Description of Ultrix_Math_Ifdef fix
7200  */
7201 tSCC zUltrix_Math_IfdefName[] =
7202      "ultrix_math_ifdef";
7203
7204 /*
7205  *  File name selection pattern
7206  */
7207 tSCC zUltrix_Math_IfdefList[] =
7208   "|sys/limits.h|float.h|math.h|";
7209 /*
7210  *  Machine/OS name selection pattern
7211  */
7212 #define apzUltrix_Math_IfdefMachs (const char**)NULL
7213
7214 /*
7215  *  content selection pattern - do fix if pattern found
7216  */
7217 tSCC zUltrix_Math_IfdefSelect0[] =
7218        "^(#if.*)\\|\\|[ \t]+CC\\$[a-z]+";
7219
7220 #define    ULTRIX_MATH_IFDEF_TEST_CT  1
7221 static tTestDesc aUltrix_Math_IfdefTests[] = {
7222   { TT_EGREP,    zUltrix_Math_IfdefSelect0, (regex_t*)NULL }, };
7223
7224 /*
7225  *  Fix Command Arguments for Ultrix_Math_Ifdef
7226  */
7227 static const char* apzUltrix_Math_IfdefPatch[] = {
7228     "format",
7229     "%1",
7230     (char*)NULL };
7231
7232 /* * * * * * * * * * * * * * * * * * * * * * * * * *
7233  *
7234  *  Description of Ultrix_Nested_Ioctl fix
7235  */
7236 tSCC zUltrix_Nested_IoctlName[] =
7237      "ultrix_nested_ioctl";
7238
7239 /*
7240  *  File name selection pattern
7241  */
7242 tSCC zUltrix_Nested_IoctlList[] =
7243   "|sys/ioctl.h|";
7244 /*
7245  *  Machine/OS name selection pattern
7246  */
7247 #define apzUltrix_Nested_IoctlMachs (const char**)NULL
7248
7249 /*
7250  *  content selection pattern - do fix if pattern found
7251  */
7252 tSCC zUltrix_Nested_IoctlSelect0[] =
7253        "^/\\* #define SIOCSCREEN";
7254
7255 #define    ULTRIX_NESTED_IOCTL_TEST_CT  1
7256 static tTestDesc aUltrix_Nested_IoctlTests[] = {
7257   { TT_EGREP,    zUltrix_Nested_IoctlSelect0, (regex_t*)NULL }, };
7258
7259 /*
7260  *  Fix Command Arguments for Ultrix_Nested_Ioctl
7261  */
7262 static const char* apzUltrix_Nested_IoctlPatch[] = { "sed",
7263     "-e", "/^\\/\\* #define SIOCSCREEN/s@/\\* screend@*//* screend@",
7264     (char*)NULL };
7265
7266 /* * * * * * * * * * * * * * * * * * * * * * * * * *
7267  *
7268  *  Description of Ultrix_Nested_Svc fix
7269  */
7270 tSCC zUltrix_Nested_SvcName[] =
7271      "ultrix_nested_svc";
7272
7273 /*
7274  *  File name selection pattern
7275  */
7276 tSCC zUltrix_Nested_SvcList[] =
7277   "|rpc/svc.h|";
7278 /*
7279  *  Machine/OS name selection pattern
7280  */
7281 #define apzUltrix_Nested_SvcMachs (const char**)NULL
7282
7283 /*
7284  *  content selection pattern - do fix if pattern found
7285  */
7286 tSCC zUltrix_Nested_SvcSelect0[] =
7287        "^ \\*[ \t]*int protocol;  */\\*";
7288
7289 #define    ULTRIX_NESTED_SVC_TEST_CT  1
7290 static tTestDesc aUltrix_Nested_SvcTests[] = {
7291   { TT_EGREP,    zUltrix_Nested_SvcSelect0, (regex_t*)NULL }, };
7292
7293 /*
7294  *  Fix Command Arguments for Ultrix_Nested_Svc
7295  */
7296 static const char* apzUltrix_Nested_SvcPatch[] = { "sed",
7297     "-e", "s@^\\( \\*\tint protocol;  \\)/\\*@\\1*/ /*@",
7298     (char*)NULL };
7299
7300 /* * * * * * * * * * * * * * * * * * * * * * * * * *
7301  *
7302  *  Description of Ultrix_Stat fix
7303  */
7304 tSCC zUltrix_StatName[] =
7305      "ultrix_stat";
7306
7307 /*
7308  *  File name selection pattern
7309  */
7310 tSCC zUltrix_StatList[] =
7311   "|sys/stat.h|";
7312 /*
7313  *  Machine/OS name selection pattern
7314  */
7315 #define apzUltrix_StatMachs (const char**)NULL
7316
7317 /*
7318  *  content selection pattern - do fix if pattern found
7319  */
7320 tSCC zUltrix_StatSelect0[] =
7321        "@\\(#\\)stat\\.h.*6\\.1.*\\(ULTRIX\\)";
7322
7323 #define    ULTRIX_STAT_TEST_CT  1
7324 static tTestDesc aUltrix_StatTests[] = {
7325   { TT_EGREP,    zUltrix_StatSelect0, (regex_t*)NULL }, };
7326
7327 /*
7328  *  Fix Command Arguments for Ultrix_Stat
7329  */
7330 static const char* apzUltrix_StatPatch[] = { "sed",
7331     "-e", "/^#define[ \t]S_IFPORT[ \t]*S_IFIFO$/a\\\n\
7332 \\\n\
7333 /* macro to test for symbolic link */\\\n\
7334 #define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)\\\n\n",
7335     "-e", "/^[ \t]*fstat(),$/a\\\n\
7336 \tlstat(),\n",
7337     (char*)NULL };
7338
7339 /* * * * * * * * * * * * * * * * * * * * * * * * * *
7340  *
7341  *  Description of Ultrix_Static fix
7342  */
7343 tSCC zUltrix_StaticName[] =
7344      "ultrix_static";
7345
7346 /*
7347  *  File name selection pattern
7348  */
7349 tSCC zUltrix_StaticList[] =
7350   "|machine/cpu.h|";
7351 /*
7352  *  Machine/OS name selection pattern
7353  */
7354 #define apzUltrix_StaticMachs (const char**)NULL
7355
7356 /*
7357  *  content selection pattern - do fix if pattern found
7358  */
7359 tSCC zUltrix_StaticSelect0[] =
7360        "#include \"r[34]_cpu";
7361
7362 #define    ULTRIX_STATIC_TEST_CT  1
7363 static tTestDesc aUltrix_StaticTests[] = {
7364   { TT_EGREP,    zUltrix_StaticSelect0, (regex_t*)NULL }, };
7365
7366 /*
7367  *  Fix Command Arguments for Ultrix_Static
7368  */
7369 static const char* apzUltrix_StaticPatch[] = { "sed",
7370     "-e", "s/^static struct tlb_pid_state/struct tlb_pid_state/",
7371     "-e", "s/^#include \"r3_cpu\\.h\"$/#include <machine\\/r3_cpu\\.h>/",
7372     "-e", "s/^#include \"r4_cpu\\.h\"$/#include <machine\\/r4_cpu\\.h>/",
7373     (char*)NULL };
7374
7375 /* * * * * * * * * * * * * * * * * * * * * * * * * *
7376  *
7377  *  Description of Ultrix_Stdlib fix
7378  */
7379 tSCC zUltrix_StdlibName[] =
7380      "ultrix_stdlib";
7381
7382 /*
7383  *  File name selection pattern
7384  */
7385 tSCC zUltrix_StdlibList[] =
7386   "|stdlib.h|";
7387 /*
7388  *  Machine/OS name selection pattern
7389  */
7390 #define apzUltrix_StdlibMachs (const char**)NULL
7391
7392 /*
7393  *  content selection pattern - do fix if pattern found
7394  */
7395 tSCC zUltrix_StdlibSelect0[] =
7396        "@\\(#\\)stdlib\\.h.*6\\.1.*\\(ULTRIX\\)";
7397
7398 #define    ULTRIX_STDLIB_TEST_CT  1
7399 static tTestDesc aUltrix_StdlibTests[] = {
7400   { TT_EGREP,    zUltrix_StdlibSelect0, (regex_t*)NULL }, };
7401
7402 /*
7403  *  Fix Command Arguments for Ultrix_Stdlib
7404  */
7405 static const char* apzUltrix_StdlibPatch[] = { "sed",
7406     "-e", "/^char.*getenv( const char .* );.*$/a\\\n\
7407 int\t\tsetenv( const char *__name, const char *__val, int __ovrwrt );\\\n\
7408 void\t\tunsetenv( const char *__name );\\\n\
7409 int\t\tputenv( char *__s );\n",
7410     "-e", "/^char.*getenv();.*$/a\\\n\
7411 int\tsetenv();\\\n\
7412 void\tunsetenv();\\\n\
7413 int\tputenv();\n",
7414     (char*)NULL };
7415
7416 /* * * * * * * * * * * * * * * * * * * * * * * * * *
7417  *
7418  *  Description of Ultrix_Strings fix
7419  */
7420 tSCC zUltrix_StringsName[] =
7421      "ultrix_strings";
7422
7423 /*
7424  *  File name selection pattern
7425  */
7426 tSCC zUltrix_StringsList[] =
7427   "|strings.h|";
7428 /*
7429  *  Machine/OS name selection pattern
7430  */
7431 #define apzUltrix_StringsMachs (const char**)NULL
7432
7433 /*
7434  *  content selection pattern - do fix if pattern found
7435  */
7436 tSCC zUltrix_StringsSelect0[] =
7437        "@\\(#\\)strings\\.h.*6\\.1.*\\(ULTRIX\\)";
7438
7439 #define    ULTRIX_STRINGS_TEST_CT  1
7440 static tTestDesc aUltrix_StringsTests[] = {
7441   { TT_EGREP,    zUltrix_StringsSelect0, (regex_t*)NULL }, };
7442
7443 /*
7444  *  Fix Command Arguments for Ultrix_Strings
7445  */
7446 static const char* apzUltrix_StringsPatch[] = {
7447     "wrap",
7448     (char*)NULL };
7449
7450 /* * * * * * * * * * * * * * * * * * * * * * * * * *
7451  *
7452  *  Description of Ultrix_Strings2 fix
7453  */
7454 tSCC zUltrix_Strings2Name[] =
7455      "ultrix_strings2";
7456
7457 /*
7458  *  File name selection pattern
7459  */
7460 tSCC zUltrix_Strings2List[] =
7461   "|strings.h|";
7462 /*
7463  *  Machine/OS name selection pattern
7464  */
7465 #define apzUltrix_Strings2Machs (const char**)NULL
7466
7467 /*
7468  *  content selection pattern - do fix if pattern found
7469  */
7470 tSCC zUltrix_Strings2Select0[] =
7471        "@\\(#\\)strings\\.h.*6\\.1.*\\(ULTRIX\\)";
7472
7473 #define    ULTRIX_STRINGS2_TEST_CT  1
7474 static tTestDesc aUltrix_Strings2Tests[] = {
7475   { TT_EGREP,    zUltrix_Strings2Select0, (regex_t*)NULL }, };
7476
7477 /*
7478  *  Fix Command Arguments for Ultrix_Strings2
7479  */
7480 static const char* apzUltrix_Strings2Patch[] = { "sed",
7481     "-e", "/^.*strncmp( const .* );.*/a\\\n\
7482 \\\n\
7483 extern int\\\n\
7484 \tstrcasecmp( const char *__s1, const char *__s2),\\\n\
7485 \tstrncasecmp( const char *__s1, const char *__s2, size_t __n );\n",
7486     "-e", "/^.*strncmp();.*/a\\\n\
7487 extern int\\\n\
7488 \tstrcasecmp(),\\\n\
7489 \tstrncasecmp();\n",
7490     (char*)NULL };
7491
7492 /* * * * * * * * * * * * * * * * * * * * * * * * * *
7493  *
7494  *  Description of Ultrix_Sys_Time fix
7495  */
7496 tSCC zUltrix_Sys_TimeName[] =
7497      "ultrix_sys_time";
7498
7499 /*
7500  *  File name selection pattern
7501  */
7502 tSCC zUltrix_Sys_TimeList[] =
7503   "|sys/time.h|";
7504 /*
7505  *  Machine/OS name selection pattern
7506  */
7507 #define apzUltrix_Sys_TimeMachs (const char**)NULL
7508
7509 /*
7510  *  content selection pattern - do fix if pattern found
7511  */
7512 tSCC zUltrix_Sys_TimeSelect0[] =
7513        "@\\(#\\)time\\.h.*6\\.1.*\\(ULTRIX\\)";
7514
7515 #define    ULTRIX_SYS_TIME_TEST_CT  1
7516 static tTestDesc aUltrix_Sys_TimeTests[] = {
7517   { TT_EGREP,    zUltrix_Sys_TimeSelect0, (regex_t*)NULL }, };
7518
7519 /*
7520  *  Fix Command Arguments for Ultrix_Sys_Time
7521  */
7522 static const char* apzUltrix_Sys_TimePatch[] = { "sed",
7523     "-e", "/^extern.*time_t.*time( time_t .* );.*$/a\\\n\
7524 \\\n\
7525 extern int adjtime(struct timeval *, struct timeval *);\\\n\
7526 extern int getitimer(int, struct itimerval *);\\\n\
7527 extern int setitimer(int, struct itimerval *, struct itimerval *);\\\n\
7528 extern int gettimeofday(struct timeval *, struct timezone *);\\\n\
7529 extern int settimeofday(struct timeval *, struct timezone *);\\\n\
7530 extern void profil(const void *, size_t, size_t, unsigned int);\\\n\
7531 extern int stime(const time_t *);\\\n\
7532 extern int utimes(const char *, const struct timeval[2]);\\\n\
7533 extern int select(int, fd_set *, fd_set *, fd_set *, struct timeval *);\n",
7534     "-e", "/^extern.*double.*difftime();.*$/a\\\n\
7535 extern\tint adjtime();\\\n\
7536 extern\tint getitimer();\\\n\
7537 extern\tint setitimer();\\\n\
7538 extern\tint gettimeofday();\\\n\
7539 extern\tint settimeofday();\\\n\
7540 extern\tvoid profil();\\\n\
7541 extern\tint stime();\\\n\
7542 extern\tint utimes();\\\n\
7543 extern\tint select();\n",
7544     (char*)NULL };
7545
7546 /* * * * * * * * * * * * * * * * * * * * * * * * * *
7547  *
7548  *  Description of Ultrix_Unistd fix
7549  */
7550 tSCC zUltrix_UnistdName[] =
7551      "ultrix_unistd";
7552
7553 /*
7554  *  File name selection pattern
7555  */
7556 tSCC zUltrix_UnistdList[] =
7557   "|unistd.h|";
7558 /*
7559  *  Machine/OS name selection pattern
7560  */
7561 #define apzUltrix_UnistdMachs (const char**)NULL
7562
7563 /*
7564  *  content selection pattern - do fix if pattern found
7565  */
7566 tSCC zUltrix_UnistdSelect0[] =
7567        "@\\(#\\)unistd\\.h.*6\\.1.*\\(ULTRIX\\)";
7568
7569 #define    ULTRIX_UNISTD_TEST_CT  1
7570 static tTestDesc aUltrix_UnistdTests[] = {
7571   { TT_EGREP,    zUltrix_UnistdSelect0, (regex_t*)NULL }, };
7572
7573 /*
7574  *  Fix Command Arguments for Ultrix_Unistd
7575  */
7576 static const char* apzUltrix_UnistdPatch[] = { "sed",
7577     "-e", "/^[ \t]*getgroups(),.*$/a\\\n\
7578 \tgetpagesize(),\n",
7579     "-e", "/^[ \t]*fork(),.*$/a\\\n\
7580 \tvfork(),\n",
7581     (char*)NULL };
7582
7583 /* * * * * * * * * * * * * * * * * * * * * * * * * *
7584  *
7585  *  Description of Unicosmk_Restrict fix
7586  */
7587 tSCC zUnicosmk_RestrictName[] =
7588      "unicosmk_restrict";
7589
7590 /*
7591  *  File name selection pattern
7592  */
7593 tSCC zUnicosmk_RestrictList[] =
7594   "|stdio.h|stdlib.h|wchar.h|";
7595 /*
7596  *  Machine/OS name selection pattern
7597  */
7598 tSCC* apzUnicosmk_RestrictMachs[] = {
7599         "*-*-unicosmk*",
7600         (const char*)NULL };
7601
7602 /*
7603  *  content selection pattern - do fix if pattern found
7604  */
7605 tSCC zUnicosmk_RestrictSelect0[] =
7606        "(\\*[ \t]*)restrict([ \t]+)";
7607
7608 #define    UNICOSMK_RESTRICT_TEST_CT  1
7609 static tTestDesc aUnicosmk_RestrictTests[] = {
7610   { TT_EGREP,    zUnicosmk_RestrictSelect0, (regex_t*)NULL }, };
7611
7612 /*
7613  *  Fix Command Arguments for Unicosmk_Restrict
7614  */
7615 static const char* apzUnicosmk_RestrictPatch[] = {
7616     "format",
7617     "%1__restrict__%2",
7618     (char*)NULL };
7619
7620 /* * * * * * * * * * * * * * * * * * * * * * * * * *
7621  *
7622  *  Description of Uw7_Byteorder_Fix fix
7623  */
7624 tSCC zUw7_Byteorder_FixName[] =
7625      "uw7_byteorder_fix";
7626
7627 /*
7628  *  File name selection pattern
7629  */
7630 tSCC zUw7_Byteorder_FixList[] =
7631   "|arpa/inet.h|";
7632 /*
7633  *  Machine/OS name selection pattern
7634  */
7635 tSCC* apzUw7_Byteorder_FixMachs[] = {
7636         "*-*-sysv4*",
7637         "i?86-*-sysv5*",
7638         "i?86-*-udk*",
7639         "i?86-*-solaris2.[0-4]",
7640         "powerpcle-*-solaris2.[0-4]",
7641         "sparc-*-solaris2.[0-4]",
7642         (const char*)NULL };
7643
7644 /*
7645  *  content selection pattern - do fix if pattern found
7646  */
7647 tSCC zUw7_Byteorder_FixSelect0[] =
7648        "in_port_t";
7649
7650 /*
7651  *  perform the 'test' shell command - do fix on success
7652  */
7653 tSCC zUw7_Byteorder_FixTest0[] =
7654        "-f sys/byteorder.h";
7655
7656 #define    UW7_BYTEORDER_FIX_TEST_CT  2
7657 static tTestDesc aUw7_Byteorder_FixTests[] = {
7658   { TT_TEST,     zUw7_Byteorder_FixTest0,   0 /* unused */ },
7659   { TT_EGREP,    zUw7_Byteorder_FixSelect0, (regex_t*)NULL }, };
7660
7661 /*
7662  *  Fix Command Arguments for Uw7_Byteorder_Fix
7663  */
7664 static const char* apzUw7_Byteorder_FixPatch[] = {
7665     "format",
7666     "",
7667     "^extern.*[ \t](htons|ntohs).*\\(in_port_t\\).*;",
7668     (char*)NULL };
7669
7670 /* * * * * * * * * * * * * * * * * * * * * * * * * *
7671  *
7672  *  Description of Va_I960_Macro fix
7673  */
7674 tSCC zVa_I960_MacroName[] =
7675      "va_i960_macro";
7676
7677 /*
7678  *  File name selection pattern
7679  */
7680 tSCC zVa_I960_MacroList[] =
7681   "|arch/i960/archI960.h|";
7682 /*
7683  *  Machine/OS name selection pattern
7684  */
7685 #define apzVa_I960_MacroMachs (const char**)NULL
7686
7687 /*
7688  *  content selection pattern - do fix if pattern found
7689  */
7690 tSCC zVa_I960_MacroSelect0[] =
7691        "__(vsiz|vali|vpad|alignof__)";
7692
7693 #define    VA_I960_MACRO_TEST_CT  1
7694 static tTestDesc aVa_I960_MacroTests[] = {
7695   { TT_EGREP,    zVa_I960_MacroSelect0, (regex_t*)NULL }, };
7696
7697 /*
7698  *  Fix Command Arguments for Va_I960_Macro
7699  */
7700 static const char* apzVa_I960_MacroPatch[] = {
7701     "format",
7702     "__vx%1",
7703     (char*)NULL };
7704
7705 /* * * * * * * * * * * * * * * * * * * * * * * * * *
7706  *
7707  *  Description of Void_Null fix
7708  */
7709 tSCC zVoid_NullName[] =
7710      "void_null";
7711
7712 /*
7713  *  File name selection pattern
7714  */
7715 tSCC zVoid_NullList[] =
7716   "|curses.h|dbm.h|locale.h|stdio.h|stdlib.h|string.h|time.h|unistd.h|sys/dir.h|sys/param.h|sys/types.h|";
7717 /*
7718  *  Machine/OS name selection pattern
7719  */
7720 #define apzVoid_NullMachs (const char**)NULL
7721
7722 /*
7723  *  content selection pattern - do fix if pattern found
7724  */
7725 tSCC zVoid_NullSelect0[] =
7726        "^#[ \t]*define[ \t]+NULL[ \t]+\\(\\(void[ \t]*\\*\\)0\\)";
7727
7728 /*
7729  *  content bypass pattern - skip fix if pattern found
7730  */
7731 tSCC zVoid_NullBypass0[] =
7732        "__cplusplus";
7733
7734 #define    VOID_NULL_TEST_CT  2
7735 static tTestDesc aVoid_NullTests[] = {
7736   { TT_NEGREP,   zVoid_NullBypass0, (regex_t*)NULL },
7737   { TT_EGREP,    zVoid_NullSelect0, (regex_t*)NULL }, };
7738
7739 /*
7740  *  Fix Command Arguments for Void_Null
7741  */
7742 static const char* apzVoid_NullPatch[] = {
7743     "format",
7744     "#define NULL 0",
7745     (char*)NULL };
7746
7747 /* * * * * * * * * * * * * * * * * * * * * * * * * *
7748  *
7749  *  Description of Vxworks_Gcc_Problem fix
7750  */
7751 tSCC zVxworks_Gcc_ProblemName[] =
7752      "vxworks_gcc_problem";
7753
7754 /*
7755  *  File name selection pattern
7756  */
7757 tSCC zVxworks_Gcc_ProblemList[] =
7758   "|types/vxTypesBase.h|";
7759 /*
7760  *  Machine/OS name selection pattern
7761  */
7762 #define apzVxworks_Gcc_ProblemMachs (const char**)NULL
7763
7764 /*
7765  *  content selection pattern - do fix if pattern found
7766  */
7767 tSCC zVxworks_Gcc_ProblemSelect0[] =
7768        "__GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__";
7769
7770 #define    VXWORKS_GCC_PROBLEM_TEST_CT  1
7771 static tTestDesc aVxworks_Gcc_ProblemTests[] = {
7772   { TT_EGREP,    zVxworks_Gcc_ProblemSelect0, (regex_t*)NULL }, };
7773
7774 /*
7775  *  Fix Command Arguments for Vxworks_Gcc_Problem
7776  */
7777 static const char* apzVxworks_Gcc_ProblemPatch[] = { "sed",
7778     "-e", "s/#ifdef __GNUC_TYPEOF_FEATURE_BROKEN_USE_DEFAULT_UNTIL_FIXED__/#if 1/",
7779     "-e", "/[ \t]size_t/i\\\n\
7780 #ifndef _GCC_SIZE_T\\\n\
7781 #define _GCC_SIZE_T\n",
7782     "-e", "/[ \t]size_t/a\\\n\
7783 #endif\n",
7784     "-e", "/[ \t]ptrdiff_t/i\\\n\
7785 #ifndef _GCC_PTRDIFF_T\\\n\
7786 #define _GCC_PTRDIFF_T\n",
7787     "-e", "/[ \t]ptrdiff_t/a\\\n\
7788 #endif\n",
7789     "-e", "/[ \t]wchar_t/i\\\n\
7790 #ifndef _GCC_WCHAR_T\\\n\
7791 #define _GCC_WCHAR_T\n",
7792     "-e", "/[ \t]wchar_t/a\\\n\
7793 #endif\n",
7794     (char*)NULL };
7795
7796 /* * * * * * * * * * * * * * * * * * * * * * * * * *
7797  *
7798  *  Description of Vxworks_Needs_Vxtypes fix
7799  */
7800 tSCC zVxworks_Needs_VxtypesName[] =
7801      "vxworks_needs_vxtypes";
7802
7803 /*
7804  *  File name selection pattern
7805  */
7806 tSCC zVxworks_Needs_VxtypesList[] =
7807   "|time.h|";
7808 /*
7809  *  Machine/OS name selection pattern
7810  */
7811 #define apzVxworks_Needs_VxtypesMachs (const char**)NULL
7812
7813 /*
7814  *  content selection pattern - do fix if pattern found
7815  */
7816 tSCC zVxworks_Needs_VxtypesSelect0[] =
7817        "uint_t([ \t]+_clocks_per_sec)";
7818
7819 #define    VXWORKS_NEEDS_VXTYPES_TEST_CT  1
7820 static tTestDesc aVxworks_Needs_VxtypesTests[] = {
7821   { TT_EGREP,    zVxworks_Needs_VxtypesSelect0, (regex_t*)NULL }, };
7822
7823 /*
7824  *  Fix Command Arguments for Vxworks_Needs_Vxtypes
7825  */
7826 static const char* apzVxworks_Needs_VxtypesPatch[] = {
7827     "format",
7828     "unsigned int%1",
7829     (char*)NULL };
7830
7831 /* * * * * * * * * * * * * * * * * * * * * * * * * *
7832  *
7833  *  Description of Vxworks_Needs_Vxworks fix
7834  */
7835 tSCC zVxworks_Needs_VxworksName[] =
7836      "vxworks_needs_vxworks";
7837
7838 /*
7839  *  File name selection pattern
7840  */
7841 tSCC zVxworks_Needs_VxworksList[] =
7842   "|sys/stat.h|";
7843 /*
7844  *  Machine/OS name selection pattern
7845  */
7846 #define apzVxworks_Needs_VxworksMachs (const char**)NULL
7847
7848 /*
7849  *  content selection pattern - do fix if pattern found
7850  */
7851 tSCC zVxworks_Needs_VxworksSelect0[] =
7852        "#[ \t]define[ \t]+__INCstath";
7853
7854 /*
7855  *  perform the 'test' shell command - do fix on success
7856  */
7857 tSCC zVxworks_Needs_VxworksTest0[] =
7858        " -r types/vxTypesOld.h";
7859 tSCC zVxworks_Needs_VxworksTest1[] =
7860        " -n \"`egrep '#include' $file`\"";
7861 tSCC zVxworks_Needs_VxworksTest2[] =
7862        " -n \"`egrep ULONG $file`\"";
7863
7864 #define    VXWORKS_NEEDS_VXWORKS_TEST_CT  4
7865 static tTestDesc aVxworks_Needs_VxworksTests[] = {
7866   { TT_TEST,     zVxworks_Needs_VxworksTest0,   0 /* unused */ },
7867   { TT_TEST,     zVxworks_Needs_VxworksTest1,   0 /* unused */ },
7868   { TT_TEST,     zVxworks_Needs_VxworksTest2,   0 /* unused */ },
7869   { TT_EGREP,    zVxworks_Needs_VxworksSelect0, (regex_t*)NULL }, };
7870
7871 /*
7872  *  Fix Command Arguments for Vxworks_Needs_Vxworks
7873  */
7874 static const char* apzVxworks_Needs_VxworksPatch[] = { "sed",
7875     "-e", "/#[ \t]define[ \t][ \t]*__INCstath/a\\\n\
7876 #include <types/vxTypesOld.h>\n",
7877     (char*)NULL };
7878
7879 /* * * * * * * * * * * * * * * * * * * * * * * * * *
7880  *
7881  *  Description of Vxworks_Time fix
7882  */
7883 tSCC zVxworks_TimeName[] =
7884      "vxworks_time";
7885
7886 /*
7887  *  File name selection pattern
7888  */
7889 tSCC zVxworks_TimeList[] =
7890   "|time.h|";
7891 /*
7892  *  Machine/OS name selection pattern
7893  */
7894 #define apzVxworks_TimeMachs (const char**)NULL
7895
7896 /*
7897  *  content selection pattern - do fix if pattern found
7898  */
7899 tSCC zVxworks_TimeSelect0[] =
7900        "#[ \t]*define[ \t]+VOIDFUNCPTR[ \t].*";
7901
7902 /*
7903  *  perform the 'test' shell command - do fix on success
7904  */
7905 tSCC zVxworks_TimeTest0[] =
7906        " -r vxWorks.h";
7907
7908 #define    VXWORKS_TIME_TEST_CT  2
7909 static tTestDesc aVxworks_TimeTests[] = {
7910   { TT_TEST,     zVxworks_TimeTest0,   0 /* unused */ },
7911   { TT_EGREP,    zVxworks_TimeSelect0, (regex_t*)NULL }, };
7912
7913 /*
7914  *  Fix Command Arguments for Vxworks_Time
7915  */
7916 static const char* apzVxworks_TimePatch[] = {
7917     "format",
7918     "#ifndef __gcc_VOIDFUNCPTR_defined\n\
7919 #ifdef __cplusplus\n\
7920 typedef void (*__gcc_VOIDFUNCPTR) (...);\n\
7921 #else\n\
7922 typedef void (*__gcc_VOIDFUNCPTR) ();\n\
7923 #endif\n\
7924 #define __gcc_VOIDFUNCPTR_defined\n\
7925 #endif\n\
7926 #define VOIDFUNCPTR __gcc_VOIDFUNCPTR",
7927     (char*)NULL };
7928
7929 /* * * * * * * * * * * * * * * * * * * * * * * * * *
7930  *
7931  *  Description of Windiss_Math1 fix
7932  */
7933 tSCC zWindiss_Math1Name[] =
7934      "windiss_math1";
7935
7936 /*
7937  *  File name selection pattern
7938  */
7939 tSCC zWindiss_Math1List[] =
7940   "|math.h|";
7941 /*
7942  *  Machine/OS name selection pattern
7943  */
7944 tSCC* apzWindiss_Math1Machs[] = {
7945         "*-*-windiss",
7946         (const char*)NULL };
7947 #define WINDISS_MATH1_TEST_CT  0
7948 #define aWindiss_Math1Tests   (tTestDesc*)NULL
7949
7950 /*
7951  *  Fix Command Arguments for Windiss_Math1
7952  */
7953 static const char* apzWindiss_Math1Patch[] = { "sed",
7954     "-e", "s|inline long double cosl.*|#ifndef __GNUC__|",
7955     (char*)NULL };
7956
7957 /* * * * * * * * * * * * * * * * * * * * * * * * * *
7958  *
7959  *  Description of Windiss_Math2 fix
7960  */
7961 tSCC zWindiss_Math2Name[] =
7962      "windiss_math2";
7963
7964 /*
7965  *  File name selection pattern
7966  */
7967 tSCC zWindiss_Math2List[] =
7968   "|math.h|";
7969 /*
7970  *  Machine/OS name selection pattern
7971  */
7972 tSCC* apzWindiss_Math2Machs[] = {
7973         "*-*-windiss",
7974         (const char*)NULL };
7975 #define WINDISS_MATH2_TEST_CT  0
7976 #define aWindiss_Math2Tests   (tTestDesc*)NULL
7977
7978 /*
7979  *  Fix Command Arguments for Windiss_Math2
7980  */
7981 static const char* apzWindiss_Math2Patch[] = { "sed",
7982     "-e", "s|/\\* long double declarations \\*/|#endif /* __GNUC__ */|",
7983     (char*)NULL };
7984
7985 /* * * * * * * * * * * * * * * * * * * * * * * * * *
7986  *
7987  *  Description of Windiss_Valist fix
7988  */
7989 tSCC zWindiss_ValistName[] =
7990      "windiss_valist";
7991
7992 /*
7993  *  File name selection pattern
7994  */
7995 #define zWindiss_ValistList (char*)NULL
7996 /*
7997  *  Machine/OS name selection pattern
7998  */
7999 tSCC* apzWindiss_ValistMachs[] = {
8000         "*-*-windiss",
8001         (const char*)NULL };
8002
8003 /*
8004  *  content selection pattern - do fix if pattern found
8005  */
8006 tSCC zWindiss_ValistSelect0[] =
8007        "(#include.*)diab/va_list.h";
8008
8009 #define    WINDISS_VALIST_TEST_CT  1
8010 static tTestDesc aWindiss_ValistTests[] = {
8011   { TT_EGREP,    zWindiss_ValistSelect0, (regex_t*)NULL }, };
8012
8013 /*
8014  *  Fix Command Arguments for Windiss_Valist
8015  */
8016 static const char* apzWindiss_ValistPatch[] = { "sed",
8017     "-e", "s|diab/va_list.h|stdarg.h|",
8018     (char*)NULL };
8019
8020 /* * * * * * * * * * * * * * * * * * * * * * * * * *
8021  *
8022  *  Description of X11_Class fix
8023  */
8024 tSCC zX11_ClassName[] =
8025      "x11_class";
8026
8027 /*
8028  *  File name selection pattern
8029  */
8030 tSCC zX11_ClassList[] =
8031   "|X11/ShellP.h|";
8032 /*
8033  *  Machine/OS name selection pattern
8034  */
8035 #define apzX11_ClassMachs (const char**)NULL
8036
8037 /*
8038  *  content selection pattern - do fix if pattern found
8039  */
8040 tSCC zX11_ClassSelect0[] =
8041        "^([ \t]*char \\*)class;(.*)";
8042
8043 /*
8044  *  content bypass pattern - skip fix if pattern found
8045  */
8046 tSCC zX11_ClassBypass0[] =
8047        "__cplusplus";
8048
8049 #define    X11_CLASS_TEST_CT  2
8050 static tTestDesc aX11_ClassTests[] = {
8051   { TT_NEGREP,   zX11_ClassBypass0, (regex_t*)NULL },
8052   { TT_EGREP,    zX11_ClassSelect0, (regex_t*)NULL }, };
8053
8054 /*
8055  *  Fix Command Arguments for X11_Class
8056  */
8057 static const char* apzX11_ClassPatch[] = {
8058     "format",
8059     "#ifdef __cplusplus\n\
8060 %1c_class;%2\n\
8061 #else\n\
8062 %1class;%2\n\
8063 #endif",
8064     (char*)NULL };
8065
8066 /* * * * * * * * * * * * * * * * * * * * * * * * * *
8067  *
8068  *  Description of X11_Class_Usage fix
8069  */
8070 tSCC zX11_Class_UsageName[] =
8071      "x11_class_usage";
8072
8073 /*
8074  *  File name selection pattern
8075  */
8076 tSCC zX11_Class_UsageList[] =
8077   "|Xm/BaseClassI.h|";
8078 /*
8079  *  Machine/OS name selection pattern
8080  */
8081 #define apzX11_Class_UsageMachs (const char**)NULL
8082
8083 /*
8084  *  content selection pattern - do fix if pattern found
8085  */
8086 tSCC zX11_Class_UsageSelect0[] =
8087        " class\\)";
8088
8089 /*
8090  *  content bypass pattern - skip fix if pattern found
8091  */
8092 tSCC zX11_Class_UsageBypass0[] =
8093        "__cplusplus";
8094
8095 #define    X11_CLASS_USAGE_TEST_CT  2
8096 static tTestDesc aX11_Class_UsageTests[] = {
8097   { TT_NEGREP,   zX11_Class_UsageBypass0, (regex_t*)NULL },
8098   { TT_EGREP,    zX11_Class_UsageSelect0, (regex_t*)NULL }, };
8099
8100 /*
8101  *  Fix Command Arguments for X11_Class_Usage
8102  */
8103 static const char* apzX11_Class_UsagePatch[] = {
8104     "format",
8105     " c_class)",
8106     (char*)NULL };
8107
8108 /* * * * * * * * * * * * * * * * * * * * * * * * * *
8109  *
8110  *  Description of X11_New fix
8111  */
8112 tSCC zX11_NewName[] =
8113      "x11_new";
8114
8115 /*
8116  *  File name selection pattern
8117  */
8118 tSCC zX11_NewList[] =
8119   "|Xm/Traversal.h|";
8120 /*
8121  *  Machine/OS name selection pattern
8122  */
8123 #define apzX11_NewMachs (const char**)NULL
8124
8125 /*
8126  *  content bypass pattern - skip fix if pattern found
8127  */
8128 tSCC zX11_NewBypass0[] =
8129        "__cplusplus";
8130
8131 #define    X11_NEW_TEST_CT  1
8132 static tTestDesc aX11_NewTests[] = {
8133   { TT_NEGREP,   zX11_NewBypass0, (regex_t*)NULL }, };
8134
8135 /*
8136  *  Fix Command Arguments for X11_New
8137  */
8138 static const char* apzX11_NewPatch[] = { "sed",
8139     "-e", "/Widget\told, new;/i\\\n\
8140 #ifdef __cplusplus\\\n\
8141 \tWidget\told, c_new;\\\n\
8142 #else\n",
8143     "-e", "/Widget\told, new;/a\\\n\
8144 #endif\n",
8145     "-e", "s/Widget new,/Widget c_new,/g",
8146     (char*)NULL };
8147
8148 /* * * * * * * * * * * * * * * * * * * * * * * * * *
8149  *
8150  *  Description of X11_Sprintf fix
8151  */
8152 tSCC zX11_SprintfName[] =
8153      "x11_sprintf";
8154
8155 /*
8156  *  File name selection pattern
8157  */
8158 tSCC zX11_SprintfList[] =
8159   "|X11/Xmu.h|X11/Xmu/Xmu.h|";
8160 /*
8161  *  Machine/OS name selection pattern
8162  */
8163 #define apzX11_SprintfMachs (const char**)NULL
8164
8165 /*
8166  *  content selection pattern - do fix if pattern found
8167  */
8168 tSCC zX11_SprintfSelect0[] =
8169        "^extern char \\*\tsprintf\\(\\);$";
8170
8171 #define    X11_SPRINTF_TEST_CT  1
8172 static tTestDesc aX11_SprintfTests[] = {
8173   { TT_EGREP,    zX11_SprintfSelect0, (regex_t*)NULL }, };
8174
8175 /*
8176  *  Fix Command Arguments for X11_Sprintf
8177  */
8178 static const char* apzX11_SprintfPatch[] = {
8179     "format",
8180     "#ifndef __STDC__\n\
8181 %0\n\
8182 #endif /* !defined __STDC__ */",
8183     (char*)NULL };
8184
8185
8186 /* * * * * * * * * * * * * * * * * * * * * * * * * *
8187  *
8188  *  List of all fixes
8189  */
8190 #define REGEX_COUNT          244
8191 #define MACH_LIST_SIZE_LIMIT 261
8192 #define FIX_COUNT            201
8193
8194 /*
8195  *  Enumerate the fixes
8196  */
8197 typedef enum {
8198     AAB_DARWIN7_9_LONG_DOUBLE_FUNCS_FIXIDX,
8199     AAB_DARWIN7_9_LONG_DOUBLE_FUNCS_2_FIXIDX,
8200     AAB_FD_ZERO_ASM_POSIX_TYPES_H_FIXIDX,
8201     AAB_FD_ZERO_GNU_TYPES_H_FIXIDX,
8202     AAB_FD_ZERO_SELECTBITS_H_FIXIDX,
8203     AAB_SOLARIS_SYS_VARARGS_H_FIXIDX,
8204     AAB_SUN_MEMCPY_FIXIDX,
8205     AAB_ULTRIX_ANSI_COMPAT_FIXIDX,
8206     AAB_ULTRIX_LIMITS_FIXIDX,
8207     AAB_ULTRIX_MEMORY_FIXIDX,
8208     AAB_ULTRIX_STRING_FIXIDX,
8209     AIX_PTHREAD_FIXIDX,
8210     AIX_SYSMACHINE_FIXIDX,
8211     AIX_SYSWAIT_FIXIDX,
8212     AIX_SYSWAIT_2_FIXIDX,
8213     AIX_VOLATILE_FIXIDX,
8214     ALPHA___ASSERT_FIXIDX,
8215     ALPHA___EXTERN_PREFIX_FIXIDX,
8216     ALPHA___EXTERN_PREFIX_STANDARDS_FIXIDX,
8217     ALPHA___EXTERN_PREFIX_SYS_STAT_FIXIDX,
8218     ALPHA_ASSERT_FIXIDX,
8219     ALPHA_BAD_LVAL_FIXIDX,
8220     ALPHA_GETOPT_FIXIDX,
8221     ALPHA_PARENS_FIXIDX,
8222     ALPHA_PTHREAD_FIXIDX,
8223     ALPHA_PTHREAD_GCC_FIXIDX,
8224     ALPHA_PTHREAD_INIT_FIXIDX,
8225     ALPHA_SBRK_FIXIDX,
8226     ALPHA_WCHAR_FIXIDX,
8227     AVOID_BOOL_DEFINE_FIXIDX,
8228     AVOID_BOOL_TYPE_FIXIDX,
8229     AVOID_WCHAR_T_TYPE_FIXIDX,
8230     BAD_STRUCT_TERM_FIXIDX,
8231     BADQUOTE_FIXIDX,
8232     BROKEN_ASSERT_STDIO_FIXIDX,
8233     BROKEN_ASSERT_STDLIB_FIXIDX,
8234     BROKEN_CABS_FIXIDX,
8235     BROKEN_NAN_FIXIDX,
8236     BSD_STDIO_ATTRS_CONFLICT_FIXIDX,
8237     CTRL_QUOTES_DEF_FIXIDX,
8238     CTRL_QUOTES_USE_FIXIDX,
8239     CXX_UNREADY_FIXIDX,
8240     DARWIN_GCC4_BREAKAGE_FIXIDX,
8241     DARWIN_PRIVATE_EXTERN_FIXIDX,
8242     DEC_INTERN_ASM_FIXIDX,
8243     DJGPP_WCHAR_H_FIXIDX,
8244     ECD_CURSOR_FIXIDX,
8245     EXCEPTION_STRUCTURE_FIXIDX,
8246     FREEBSD_GCC3_BREAKAGE_FIXIDX,
8247     FREEBSD_GCC4_BREAKAGE_FIXIDX,
8248     GLIBC_MUTEX_INIT_FIXIDX,
8249     GNU_TYPES_FIXIDX,
8250     HP_INLINE_FIXIDX,
8251     HP_SYSFILE_FIXIDX,
8252     HPUX10_CPP_POW_INLINE_FIXIDX,
8253     HPUX11_CPP_POW_INLINE_FIXIDX,
8254     HPUX10_CTYPE_DECLARATIONS1_FIXIDX,
8255     HPUX10_CTYPE_DECLARATIONS2_FIXIDX,
8256     HPUX10_STDIO_DECLARATIONS_FIXIDX,
8257     HPUX11_ABS_FIXIDX,
8258     HPUX11_FABSF_FIXIDX,
8259     HPUX11_SIZE_T_FIXIDX,
8260     HPUX11_SNPRINTF_FIXIDX,
8261     HPUX11_UINT32_C_FIXIDX,
8262     HPUX11_VSNPRINTF_FIXIDX,
8263     HPUX8_BOGUS_INLINES_FIXIDX,
8264     HPUX_CTYPE_MACROS_FIXIDX,
8265     HPUX_HTONL_FIXIDX,
8266     HPUX_LONG_DOUBLE_FIXIDX,
8267     HPUX_SYSTIME_FIXIDX,
8268     HPUX_SPU_INFO_FIXIDX,
8269     HPUX_EXTERN_ERRNO_FIXIDX,
8270     HPUX_PTHREAD_INITIALIZERS_FIXIDX,
8271     HUGE_VAL_HEX_FIXIDX,
8272     HUGE_VALF_HEX_FIXIDX,
8273     HUGE_VALL_HEX_FIXIDX,
8274     INT_ABORT_FREE_AND_EXIT_FIXIDX,
8275     IO_QUOTES_DEF_FIXIDX,
8276     IO_QUOTES_USE_FIXIDX,
8277     IP_MISSING_SEMI_FIXIDX,
8278     IRIX___RESTRICT_FIXIDX,
8279     IRIX___GENERIC1_FIXIDX,
8280     IRIX___GENERIC2_FIXIDX,
8281     IRIX_ASM_APOSTROPHE_FIXIDX,
8282     IRIX_LIMITS_CONST_FIXIDX,
8283     IRIX_SOCKLEN_T_FIXIDX,
8284     IRIX_STDIO_VA_LIST_FIXIDX,
8285     IRIX_WCSFTIME_FIXIDX,
8286     ISC_FMOD_FIXIDX,
8287     ISC_OMITS_WITH_STDC_FIXIDX,
8288     KANDR_CONCAT_FIXIDX,
8289     LIBC1_G_VA_LIST_FIXIDX,
8290     LIBC1_IFDEFD_MEMX_FIXIDX,
8291     LINUX_IA64_UCONTEXT_FIXIDX,
8292     LYNXOS_NO_WARNING_IN_SYS_TIME_H_FIXIDX,
8293     LYNXOS_MISSING_PUTENV_FIXIDX,
8294     MACHINE_ANSI_H_VA_LIST_FIXIDX,
8295     MACHINE_NAME_FIXIDX,
8296     MATH_EXCEPTION_FIXIDX,
8297     MATH_HUGE_VAL_FROM_DBL_MAX_FIXIDX,
8298     NESTED_AUTH_DES_FIXIDX,
8299     NESTED_MOTOROLA_FIXIDX,
8300     NESTED_SYS_LIMITS_FIXIDX,
8301     NETBSD_EXTRA_SEMICOLON_FIXIDX,
8302     NEXT_MATH_PREFIX_FIXIDX,
8303     NEXT_TEMPLATE_FIXIDX,
8304     NEXT_VOLITILE_FIXIDX,
8305     NEXT_WAIT_UNION_FIXIDX,
8306     NODEENT_SYNTAX_FIXIDX,
8307     OBSTACK_LVALUE_CAST_FIXIDX,
8308     OSF_NAMESPACE_A_FIXIDX,
8309     OSF_NAMESPACE_C_FIXIDX,
8310     PTHREAD_PAGE_SIZE_FIXIDX,
8311     PTHREAD_INCOMPLETE_STRUCT_ARGUMENT_FIXIDX,
8312     READ_RET_TYPE_FIXIDX,
8313     RPC_XDR_LVALUE_CAST_A_FIXIDX,
8314     RPC_XDR_LVALUE_CAST_B_FIXIDX,
8315     RS6000_DOUBLE_FIXIDX,
8316     RS6000_FCHMOD_FIXIDX,
8317     RS6000_PARAM_FIXIDX,
8318     SCO_MATH_FIXIDX,
8319     SCO_REGSET_FIXIDX,
8320     SCO_STATIC_FUNC_FIXIDX,
8321     SCO_UTIME_FIXIDX,
8322     SOLARIS_MATH_1_FIXIDX,
8323     SOLARIS_MATH_2_FIXIDX,
8324     SOLARIS_MATH_3_FIXIDX,
8325     SOLARIS_MATH_4_FIXIDX,
8326     SOLARIS_MATH_5_FIXIDX,
8327     SOLARIS_MATH_6_FIXIDX,
8328     SOLARIS_MATH_7_FIXIDX,
8329     SOLARIS_MATH_8_FIXIDX,
8330     SOLARIS_MATH_9_FIXIDX,
8331     SOLARIS_MUTEX_INIT_1_FIXIDX,
8332     SOLARIS_MUTEX_INIT_2_FIXIDX,
8333     SOLARIS_RWLOCK_INIT_1_FIXIDX,
8334     SOLARIS_ONCE_INIT_1_FIXIDX,
8335     SOLARIS_ONCE_INIT_2_FIXIDX,
8336     SOLARIS_SOCKET_FIXIDX,
8337     SOLARIS_STDIO_TAG_FIXIDX,
8338     SOLARIS_UNISTD_FIXIDX,
8339     SOLARIS_WIDEC_FIXIDX,
8340     STATSSWTCH_FIXIDX,
8341     STDIO_STDARG_H_FIXIDX,
8342     STDIO_VA_LIST_FIXIDX,
8343     STDIO_VA_LIST_CLIENTS_FIXIDX,
8344     STRICT_ANSI_NOT_FIXIDX,
8345     STRICT_ANSI_NOT_CTD_FIXIDX,
8346     STRICT_ANSI_ONLY_FIXIDX,
8347     STRUCT_FILE_FIXIDX,
8348     STRUCT_SOCKADDR_FIXIDX,
8349     SUN_AUTH_PROTO_FIXIDX,
8350     SUN_BOGUS_IFDEF_FIXIDX,
8351     SUN_CATMACRO_FIXIDX,
8352     SUN_MALLOC_FIXIDX,
8353     SUN_RUSERS_SEMI_FIXIDX,
8354     SUN_SIGNAL_FIXIDX,
8355     SUNOS_STRLEN_FIXIDX,
8356     SVR4_DISABLE_OPT_FIXIDX,
8357     SVR4_GETCWD_FIXIDX,
8358     SVR4_KRNL_FIXIDX,
8359     SVR4_PROFIL_FIXIDX,
8360     SVR4_SIGHANDLER_TYPE_FIXIDX,
8361     SVR4_UNDECLARED_GETRNGE_FIXIDX,
8362     SYSV68_STRING_FIXIDX,
8363     SYSZ_STDLIB_FOR_SUN_FIXIDX,
8364     THREAD_KEYWORD_FIXIDX,
8365     TINFO_CPLUSPLUS_FIXIDX,
8366     ULTRIX_ATEXIT_PARAM_FIXIDX,
8367     ULTRIX_ATOF_PARAM_FIXIDX,
8368     ULTRIX_CONST_FIXIDX,
8369     ULTRIX_CONST2_FIXIDX,
8370     ULTRIX_CONST3_FIXIDX,
8371     ULTRIX_FIX_FIXPROTO_FIXIDX,
8372     ULTRIX_IFDEF_FIXIDX,
8373     ULTRIX_LOCALE_FIXIDX,
8374     ULTRIX_MATH_IFDEF_FIXIDX,
8375     ULTRIX_NESTED_IOCTL_FIXIDX,
8376     ULTRIX_NESTED_SVC_FIXIDX,
8377     ULTRIX_STAT_FIXIDX,
8378     ULTRIX_STATIC_FIXIDX,
8379     ULTRIX_STDLIB_FIXIDX,
8380     ULTRIX_STRINGS_FIXIDX,
8381     ULTRIX_STRINGS2_FIXIDX,
8382     ULTRIX_SYS_TIME_FIXIDX,
8383     ULTRIX_UNISTD_FIXIDX,
8384     UNICOSMK_RESTRICT_FIXIDX,
8385     UW7_BYTEORDER_FIX_FIXIDX,
8386     VA_I960_MACRO_FIXIDX,
8387     VOID_NULL_FIXIDX,
8388     VXWORKS_GCC_PROBLEM_FIXIDX,
8389     VXWORKS_NEEDS_VXTYPES_FIXIDX,
8390     VXWORKS_NEEDS_VXWORKS_FIXIDX,
8391     VXWORKS_TIME_FIXIDX,
8392     WINDISS_MATH1_FIXIDX,
8393     WINDISS_MATH2_FIXIDX,
8394     WINDISS_VALIST_FIXIDX,
8395     X11_CLASS_FIXIDX,
8396     X11_CLASS_USAGE_FIXIDX,
8397     X11_NEW_FIXIDX,
8398     X11_SPRINTF_FIXIDX
8399 } t_fixinc_idx;
8400
8401 tFixDesc fixDescList[ FIX_COUNT ] = {
8402   {  zAab_Darwin7_9_Long_Double_FuncsName,    zAab_Darwin7_9_Long_Double_FuncsList,
8403      apzAab_Darwin7_9_Long_Double_FuncsMachs,
8404      AAB_DARWIN7_9_LONG_DOUBLE_FUNCS_TEST_CT, FD_MACH_ONLY | FD_REPLACEMENT,
8405      aAab_Darwin7_9_Long_Double_FuncsTests,   apzAab_Darwin7_9_Long_Double_FuncsPatch, 0 },
8406
8407   {  zAab_Darwin7_9_Long_Double_Funcs_2Name,    zAab_Darwin7_9_Long_Double_Funcs_2List,
8408      apzAab_Darwin7_9_Long_Double_Funcs_2Machs,
8409      AAB_DARWIN7_9_LONG_DOUBLE_FUNCS_2_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8410      aAab_Darwin7_9_Long_Double_Funcs_2Tests,   apzAab_Darwin7_9_Long_Double_Funcs_2Patch, 0 },
8411
8412   {  zAab_Fd_Zero_Asm_Posix_Types_HName,    zAab_Fd_Zero_Asm_Posix_Types_HList,
8413      apzAab_Fd_Zero_Asm_Posix_Types_HMachs,
8414      AAB_FD_ZERO_ASM_POSIX_TYPES_H_TEST_CT, FD_MACH_ONLY | FD_REPLACEMENT,
8415      aAab_Fd_Zero_Asm_Posix_Types_HTests,   apzAab_Fd_Zero_Asm_Posix_Types_HPatch, 0 },
8416
8417   {  zAab_Fd_Zero_Gnu_Types_HName,    zAab_Fd_Zero_Gnu_Types_HList,
8418      apzAab_Fd_Zero_Gnu_Types_HMachs,
8419      AAB_FD_ZERO_GNU_TYPES_H_TEST_CT, FD_MACH_ONLY | FD_REPLACEMENT,
8420      aAab_Fd_Zero_Gnu_Types_HTests,   apzAab_Fd_Zero_Gnu_Types_HPatch, 0 },
8421
8422   {  zAab_Fd_Zero_Selectbits_HName,    zAab_Fd_Zero_Selectbits_HList,
8423      apzAab_Fd_Zero_Selectbits_HMachs,
8424      AAB_FD_ZERO_SELECTBITS_H_TEST_CT, FD_MACH_ONLY | FD_REPLACEMENT,
8425      aAab_Fd_Zero_Selectbits_HTests,   apzAab_Fd_Zero_Selectbits_HPatch, 0 },
8426
8427   {  zAab_Solaris_Sys_Varargs_HName,    zAab_Solaris_Sys_Varargs_HList,
8428      apzAab_Solaris_Sys_Varargs_HMachs,
8429      AAB_SOLARIS_SYS_VARARGS_H_TEST_CT, FD_MACH_ONLY | FD_REPLACEMENT,
8430      aAab_Solaris_Sys_Varargs_HTests,   apzAab_Solaris_Sys_Varargs_HPatch, 0 },
8431
8432   {  zAab_Sun_MemcpyName,    zAab_Sun_MemcpyList,
8433      apzAab_Sun_MemcpyMachs,
8434      AAB_SUN_MEMCPY_TEST_CT, FD_MACH_ONLY | FD_REPLACEMENT,
8435      aAab_Sun_MemcpyTests,   apzAab_Sun_MemcpyPatch, 0 },
8436
8437   {  zAab_Ultrix_Ansi_CompatName,    zAab_Ultrix_Ansi_CompatList,
8438      apzAab_Ultrix_Ansi_CompatMachs,
8439      AAB_ULTRIX_ANSI_COMPAT_TEST_CT, FD_MACH_ONLY | FD_REPLACEMENT,
8440      aAab_Ultrix_Ansi_CompatTests,   apzAab_Ultrix_Ansi_CompatPatch, 0 },
8441
8442   {  zAab_Ultrix_LimitsName,    zAab_Ultrix_LimitsList,
8443      apzAab_Ultrix_LimitsMachs,
8444      AAB_ULTRIX_LIMITS_TEST_CT, FD_MACH_ONLY | FD_REPLACEMENT,
8445      aAab_Ultrix_LimitsTests,   apzAab_Ultrix_LimitsPatch, 0 },
8446
8447   {  zAab_Ultrix_MemoryName,    zAab_Ultrix_MemoryList,
8448      apzAab_Ultrix_MemoryMachs,
8449      AAB_ULTRIX_MEMORY_TEST_CT, FD_MACH_ONLY | FD_REPLACEMENT,
8450      aAab_Ultrix_MemoryTests,   apzAab_Ultrix_MemoryPatch, 0 },
8451
8452   {  zAab_Ultrix_StringName,    zAab_Ultrix_StringList,
8453      apzAab_Ultrix_StringMachs,
8454      AAB_ULTRIX_STRING_TEST_CT, FD_MACH_ONLY | FD_REPLACEMENT,
8455      aAab_Ultrix_StringTests,   apzAab_Ultrix_StringPatch, 0 },
8456
8457   {  zAix_PthreadName,    zAix_PthreadList,
8458      apzAix_PthreadMachs,
8459      AIX_PTHREAD_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8460      aAix_PthreadTests,   apzAix_PthreadPatch, 0 },
8461
8462   {  zAix_SysmachineName,    zAix_SysmachineList,
8463      apzAix_SysmachineMachs,
8464      AIX_SYSMACHINE_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8465      aAix_SysmachineTests,   apzAix_SysmachinePatch, 0 },
8466
8467   {  zAix_SyswaitName,    zAix_SyswaitList,
8468      apzAix_SyswaitMachs,
8469      AIX_SYSWAIT_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8470      aAix_SyswaitTests,   apzAix_SyswaitPatch, 0 },
8471
8472   {  zAix_Syswait_2Name,    zAix_Syswait_2List,
8473      apzAix_Syswait_2Machs,
8474      AIX_SYSWAIT_2_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8475      aAix_Syswait_2Tests,   apzAix_Syswait_2Patch, 0 },
8476
8477   {  zAix_VolatileName,    zAix_VolatileList,
8478      apzAix_VolatileMachs,
8479      AIX_VOLATILE_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8480      aAix_VolatileTests,   apzAix_VolatilePatch, 0 },
8481
8482   {  zAlpha___AssertName,    zAlpha___AssertList,
8483      apzAlpha___AssertMachs,
8484      ALPHA___ASSERT_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8485      aAlpha___AssertTests,   apzAlpha___AssertPatch, 0 },
8486
8487   {  zAlpha___Extern_PrefixName,    zAlpha___Extern_PrefixList,
8488      apzAlpha___Extern_PrefixMachs,
8489      ALPHA___EXTERN_PREFIX_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8490      aAlpha___Extern_PrefixTests,   apzAlpha___Extern_PrefixPatch, 0 },
8491
8492   {  zAlpha___Extern_Prefix_StandardsName,    zAlpha___Extern_Prefix_StandardsList,
8493      apzAlpha___Extern_Prefix_StandardsMachs,
8494      ALPHA___EXTERN_PREFIX_STANDARDS_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8495      aAlpha___Extern_Prefix_StandardsTests,   apzAlpha___Extern_Prefix_StandardsPatch, 0 },
8496
8497   {  zAlpha___Extern_Prefix_Sys_StatName,    zAlpha___Extern_Prefix_Sys_StatList,
8498      apzAlpha___Extern_Prefix_Sys_StatMachs,
8499      ALPHA___EXTERN_PREFIX_SYS_STAT_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8500      aAlpha___Extern_Prefix_Sys_StatTests,   apzAlpha___Extern_Prefix_Sys_StatPatch, 0 },
8501
8502   {  zAlpha_AssertName,    zAlpha_AssertList,
8503      apzAlpha_AssertMachs,
8504      ALPHA_ASSERT_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8505      aAlpha_AssertTests,   apzAlpha_AssertPatch, 0 },
8506
8507   {  zAlpha_Bad_LvalName,    zAlpha_Bad_LvalList,
8508      apzAlpha_Bad_LvalMachs,
8509      ALPHA_BAD_LVAL_TEST_CT, FD_MACH_ONLY,
8510      aAlpha_Bad_LvalTests,   apzAlpha_Bad_LvalPatch, 0 },
8511
8512   {  zAlpha_GetoptName,    zAlpha_GetoptList,
8513      apzAlpha_GetoptMachs,
8514      ALPHA_GETOPT_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8515      aAlpha_GetoptTests,   apzAlpha_GetoptPatch, 0 },
8516
8517   {  zAlpha_ParensName,    zAlpha_ParensList,
8518      apzAlpha_ParensMachs,
8519      ALPHA_PARENS_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8520      aAlpha_ParensTests,   apzAlpha_ParensPatch, 0 },
8521
8522   {  zAlpha_PthreadName,    zAlpha_PthreadList,
8523      apzAlpha_PthreadMachs,
8524      ALPHA_PTHREAD_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8525      aAlpha_PthreadTests,   apzAlpha_PthreadPatch, 0 },
8526
8527   {  zAlpha_Pthread_GccName,    zAlpha_Pthread_GccList,
8528      apzAlpha_Pthread_GccMachs,
8529      ALPHA_PTHREAD_GCC_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8530      aAlpha_Pthread_GccTests,   apzAlpha_Pthread_GccPatch, 0 },
8531
8532   {  zAlpha_Pthread_InitName,    zAlpha_Pthread_InitList,
8533      apzAlpha_Pthread_InitMachs,
8534      ALPHA_PTHREAD_INIT_TEST_CT, FD_MACH_ONLY,
8535      aAlpha_Pthread_InitTests,   apzAlpha_Pthread_InitPatch, 0 },
8536
8537   {  zAlpha_SbrkName,    zAlpha_SbrkList,
8538      apzAlpha_SbrkMachs,
8539      ALPHA_SBRK_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8540      aAlpha_SbrkTests,   apzAlpha_SbrkPatch, 0 },
8541
8542   {  zAlpha_WcharName,    zAlpha_WcharList,
8543      apzAlpha_WcharMachs,
8544      ALPHA_WCHAR_TEST_CT, FD_MACH_ONLY,
8545      aAlpha_WcharTests,   apzAlpha_WcharPatch, 0 },
8546
8547   {  zAvoid_Bool_DefineName,    zAvoid_Bool_DefineList,
8548      apzAvoid_Bool_DefineMachs,
8549      AVOID_BOOL_DEFINE_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8550      aAvoid_Bool_DefineTests,   apzAvoid_Bool_DefinePatch, 0 },
8551
8552   {  zAvoid_Bool_TypeName,    zAvoid_Bool_TypeList,
8553      apzAvoid_Bool_TypeMachs,
8554      AVOID_BOOL_TYPE_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8555      aAvoid_Bool_TypeTests,   apzAvoid_Bool_TypePatch, 0 },
8556
8557   {  zAvoid_Wchar_T_TypeName,    zAvoid_Wchar_T_TypeList,
8558      apzAvoid_Wchar_T_TypeMachs,
8559      AVOID_WCHAR_T_TYPE_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8560      aAvoid_Wchar_T_TypeTests,   apzAvoid_Wchar_T_TypePatch, 0 },
8561
8562   {  zBad_Struct_TermName,    zBad_Struct_TermList,
8563      apzBad_Struct_TermMachs,
8564      BAD_STRUCT_TERM_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8565      aBad_Struct_TermTests,   apzBad_Struct_TermPatch, 0 },
8566
8567   {  zBadquoteName,    zBadquoteList,
8568      apzBadquoteMachs,
8569      BADQUOTE_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8570      aBadquoteTests,   apzBadquotePatch, 0 },
8571
8572   {  zBroken_Assert_StdioName,    zBroken_Assert_StdioList,
8573      apzBroken_Assert_StdioMachs,
8574      BROKEN_ASSERT_STDIO_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8575      aBroken_Assert_StdioTests,   apzBroken_Assert_StdioPatch, 0 },
8576
8577   {  zBroken_Assert_StdlibName,    zBroken_Assert_StdlibList,
8578      apzBroken_Assert_StdlibMachs,
8579      BROKEN_ASSERT_STDLIB_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8580      aBroken_Assert_StdlibTests,   apzBroken_Assert_StdlibPatch, 0 },
8581
8582   {  zBroken_CabsName,    zBroken_CabsList,
8583      apzBroken_CabsMachs,
8584      BROKEN_CABS_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8585      aBroken_CabsTests,   apzBroken_CabsPatch, 0 },
8586
8587   {  zBroken_NanName,    zBroken_NanList,
8588      apzBroken_NanMachs,
8589      BROKEN_NAN_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8590      aBroken_NanTests,   apzBroken_NanPatch, 0 },
8591
8592   {  zBsd_Stdio_Attrs_ConflictName,    zBsd_Stdio_Attrs_ConflictList,
8593      apzBsd_Stdio_Attrs_ConflictMachs,
8594      BSD_STDIO_ATTRS_CONFLICT_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8595      aBsd_Stdio_Attrs_ConflictTests,   apzBsd_Stdio_Attrs_ConflictPatch, 0 },
8596
8597   {  zCtrl_Quotes_DefName,    zCtrl_Quotes_DefList,
8598      apzCtrl_Quotes_DefMachs,
8599      CTRL_QUOTES_DEF_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8600      aCtrl_Quotes_DefTests,   apzCtrl_Quotes_DefPatch, 0 },
8601
8602   {  zCtrl_Quotes_UseName,    zCtrl_Quotes_UseList,
8603      apzCtrl_Quotes_UseMachs,
8604      CTRL_QUOTES_USE_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8605      aCtrl_Quotes_UseTests,   apzCtrl_Quotes_UsePatch, 0 },
8606
8607   {  zCxx_UnreadyName,    zCxx_UnreadyList,
8608      apzCxx_UnreadyMachs,
8609      CXX_UNREADY_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8610      aCxx_UnreadyTests,   apzCxx_UnreadyPatch, 0 },
8611
8612   {  zDarwin_Gcc4_BreakageName,    zDarwin_Gcc4_BreakageList,
8613      apzDarwin_Gcc4_BreakageMachs,
8614      DARWIN_GCC4_BREAKAGE_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8615      aDarwin_Gcc4_BreakageTests,   apzDarwin_Gcc4_BreakagePatch, 0 },
8616
8617   {  zDarwin_Private_ExternName,    zDarwin_Private_ExternList,
8618      apzDarwin_Private_ExternMachs,
8619      DARWIN_PRIVATE_EXTERN_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8620      aDarwin_Private_ExternTests,   apzDarwin_Private_ExternPatch, 0 },
8621
8622   {  zDec_Intern_AsmName,    zDec_Intern_AsmList,
8623      apzDec_Intern_AsmMachs,
8624      DEC_INTERN_ASM_TEST_CT, FD_MACH_ONLY,
8625      aDec_Intern_AsmTests,   apzDec_Intern_AsmPatch, 0 },
8626
8627   {  zDjgpp_Wchar_HName,    zDjgpp_Wchar_HList,
8628      apzDjgpp_Wchar_HMachs,
8629      DJGPP_WCHAR_H_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8630      aDjgpp_Wchar_HTests,   apzDjgpp_Wchar_HPatch, 0 },
8631
8632   {  zEcd_CursorName,    zEcd_CursorList,
8633      apzEcd_CursorMachs,
8634      ECD_CURSOR_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8635      aEcd_CursorTests,   apzEcd_CursorPatch, 0 },
8636
8637   {  zException_StructureName,    zException_StructureList,
8638      apzException_StructureMachs,
8639      EXCEPTION_STRUCTURE_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8640      aException_StructureTests,   apzException_StructurePatch, 0 },
8641
8642   {  zFreebsd_Gcc3_BreakageName,    zFreebsd_Gcc3_BreakageList,
8643      apzFreebsd_Gcc3_BreakageMachs,
8644      FREEBSD_GCC3_BREAKAGE_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8645      aFreebsd_Gcc3_BreakageTests,   apzFreebsd_Gcc3_BreakagePatch, 0 },
8646
8647   {  zFreebsd_Gcc4_BreakageName,    zFreebsd_Gcc4_BreakageList,
8648      apzFreebsd_Gcc4_BreakageMachs,
8649      FREEBSD_GCC4_BREAKAGE_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8650      aFreebsd_Gcc4_BreakageTests,   apzFreebsd_Gcc4_BreakagePatch, 0 },
8651
8652   {  zGlibc_Mutex_InitName,    zGlibc_Mutex_InitList,
8653      apzGlibc_Mutex_InitMachs,
8654      GLIBC_MUTEX_INIT_TEST_CT, FD_MACH_ONLY,
8655      aGlibc_Mutex_InitTests,   apzGlibc_Mutex_InitPatch, 0 },
8656
8657   {  zGnu_TypesName,    zGnu_TypesList,
8658      apzGnu_TypesMachs,
8659      GNU_TYPES_TEST_CT, FD_MACH_IFNOT | FD_SUBROUTINE,
8660      aGnu_TypesTests,   apzGnu_TypesPatch, 0 },
8661
8662   {  zHp_InlineName,    zHp_InlineList,
8663      apzHp_InlineMachs,
8664      HP_INLINE_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8665      aHp_InlineTests,   apzHp_InlinePatch, 0 },
8666
8667   {  zHp_SysfileName,    zHp_SysfileList,
8668      apzHp_SysfileMachs,
8669      HP_SYSFILE_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8670      aHp_SysfileTests,   apzHp_SysfilePatch, 0 },
8671
8672   {  zHpux10_Cpp_Pow_InlineName,    zHpux10_Cpp_Pow_InlineList,
8673      apzHpux10_Cpp_Pow_InlineMachs,
8674      HPUX10_CPP_POW_INLINE_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8675      aHpux10_Cpp_Pow_InlineTests,   apzHpux10_Cpp_Pow_InlinePatch, 0 },
8676
8677   {  zHpux11_Cpp_Pow_InlineName,    zHpux11_Cpp_Pow_InlineList,
8678      apzHpux11_Cpp_Pow_InlineMachs,
8679      HPUX11_CPP_POW_INLINE_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8680      aHpux11_Cpp_Pow_InlineTests,   apzHpux11_Cpp_Pow_InlinePatch, 0 },
8681
8682   {  zHpux10_Ctype_Declarations1Name,    zHpux10_Ctype_Declarations1List,
8683      apzHpux10_Ctype_Declarations1Machs,
8684      HPUX10_CTYPE_DECLARATIONS1_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8685      aHpux10_Ctype_Declarations1Tests,   apzHpux10_Ctype_Declarations1Patch, 0 },
8686
8687   {  zHpux10_Ctype_Declarations2Name,    zHpux10_Ctype_Declarations2List,
8688      apzHpux10_Ctype_Declarations2Machs,
8689      HPUX10_CTYPE_DECLARATIONS2_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8690      aHpux10_Ctype_Declarations2Tests,   apzHpux10_Ctype_Declarations2Patch, 0 },
8691
8692   {  zHpux10_Stdio_DeclarationsName,    zHpux10_Stdio_DeclarationsList,
8693      apzHpux10_Stdio_DeclarationsMachs,
8694      HPUX10_STDIO_DECLARATIONS_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8695      aHpux10_Stdio_DeclarationsTests,   apzHpux10_Stdio_DeclarationsPatch, 0 },
8696
8697   {  zHpux11_AbsName,    zHpux11_AbsList,
8698      apzHpux11_AbsMachs,
8699      HPUX11_ABS_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8700      aHpux11_AbsTests,   apzHpux11_AbsPatch, 0 },
8701
8702   {  zHpux11_FabsfName,    zHpux11_FabsfList,
8703      apzHpux11_FabsfMachs,
8704      HPUX11_FABSF_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8705      aHpux11_FabsfTests,   apzHpux11_FabsfPatch, 0 },
8706
8707   {  zHpux11_Size_TName,    zHpux11_Size_TList,
8708      apzHpux11_Size_TMachs,
8709      HPUX11_SIZE_T_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8710      aHpux11_Size_TTests,   apzHpux11_Size_TPatch, 0 },
8711
8712   {  zHpux11_SnprintfName,    zHpux11_SnprintfList,
8713      apzHpux11_SnprintfMachs,
8714      HPUX11_SNPRINTF_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8715      aHpux11_SnprintfTests,   apzHpux11_SnprintfPatch, 0 },
8716
8717   {  zHpux11_Uint32_CName,    zHpux11_Uint32_CList,
8718      apzHpux11_Uint32_CMachs,
8719      HPUX11_UINT32_C_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8720      aHpux11_Uint32_CTests,   apzHpux11_Uint32_CPatch, 0 },
8721
8722   {  zHpux11_VsnprintfName,    zHpux11_VsnprintfList,
8723      apzHpux11_VsnprintfMachs,
8724      HPUX11_VSNPRINTF_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8725      aHpux11_VsnprintfTests,   apzHpux11_VsnprintfPatch, 0 },
8726
8727   {  zHpux8_Bogus_InlinesName,    zHpux8_Bogus_InlinesList,
8728      apzHpux8_Bogus_InlinesMachs,
8729      HPUX8_BOGUS_INLINES_TEST_CT, FD_MACH_ONLY,
8730      aHpux8_Bogus_InlinesTests,   apzHpux8_Bogus_InlinesPatch, 0 },
8731
8732   {  zHpux_Ctype_MacrosName,    zHpux_Ctype_MacrosList,
8733      apzHpux_Ctype_MacrosMachs,
8734      HPUX_CTYPE_MACROS_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8735      aHpux_Ctype_MacrosTests,   apzHpux_Ctype_MacrosPatch, 0 },
8736
8737   {  zHpux_HtonlName,    zHpux_HtonlList,
8738      apzHpux_HtonlMachs,
8739      HPUX_HTONL_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8740      aHpux_HtonlTests,   apzHpux_HtonlPatch, 0 },
8741
8742   {  zHpux_Long_DoubleName,    zHpux_Long_DoubleList,
8743      apzHpux_Long_DoubleMachs,
8744      HPUX_LONG_DOUBLE_TEST_CT, FD_MACH_ONLY,
8745      aHpux_Long_DoubleTests,   apzHpux_Long_DoublePatch, 0 },
8746
8747   {  zHpux_SystimeName,    zHpux_SystimeList,
8748      apzHpux_SystimeMachs,
8749      HPUX_SYSTIME_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8750      aHpux_SystimeTests,   apzHpux_SystimePatch, 0 },
8751
8752   {  zHpux_Spu_InfoName,    zHpux_Spu_InfoList,
8753      apzHpux_Spu_InfoMachs,
8754      HPUX_SPU_INFO_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8755      aHpux_Spu_InfoTests,   apzHpux_Spu_InfoPatch, 0 },
8756
8757   {  zHpux_Extern_ErrnoName,    zHpux_Extern_ErrnoList,
8758      apzHpux_Extern_ErrnoMachs,
8759      HPUX_EXTERN_ERRNO_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8760      aHpux_Extern_ErrnoTests,   apzHpux_Extern_ErrnoPatch, 0 },
8761
8762   {  zHpux_Pthread_InitializersName,    zHpux_Pthread_InitializersList,
8763      apzHpux_Pthread_InitializersMachs,
8764      HPUX_PTHREAD_INITIALIZERS_TEST_CT, FD_MACH_ONLY,
8765      aHpux_Pthread_InitializersTests,   apzHpux_Pthread_InitializersPatch, 0 },
8766
8767   {  zHuge_Val_HexName,    zHuge_Val_HexList,
8768      apzHuge_Val_HexMachs,
8769      HUGE_VAL_HEX_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8770      aHuge_Val_HexTests,   apzHuge_Val_HexPatch, 0 },
8771
8772   {  zHuge_Valf_HexName,    zHuge_Valf_HexList,
8773      apzHuge_Valf_HexMachs,
8774      HUGE_VALF_HEX_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8775      aHuge_Valf_HexTests,   apzHuge_Valf_HexPatch, 0 },
8776
8777   {  zHuge_Vall_HexName,    zHuge_Vall_HexList,
8778      apzHuge_Vall_HexMachs,
8779      HUGE_VALL_HEX_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8780      aHuge_Vall_HexTests,   apzHuge_Vall_HexPatch, 0 },
8781
8782   {  zInt_Abort_Free_And_ExitName,    zInt_Abort_Free_And_ExitList,
8783      apzInt_Abort_Free_And_ExitMachs,
8784      INT_ABORT_FREE_AND_EXIT_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8785      aInt_Abort_Free_And_ExitTests,   apzInt_Abort_Free_And_ExitPatch, 0 },
8786
8787   {  zIo_Quotes_DefName,    zIo_Quotes_DefList,
8788      apzIo_Quotes_DefMachs,
8789      IO_QUOTES_DEF_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8790      aIo_Quotes_DefTests,   apzIo_Quotes_DefPatch, 0 },
8791
8792   {  zIo_Quotes_UseName,    zIo_Quotes_UseList,
8793      apzIo_Quotes_UseMachs,
8794      IO_QUOTES_USE_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8795      aIo_Quotes_UseTests,   apzIo_Quotes_UsePatch, 0 },
8796
8797   {  zIp_Missing_SemiName,    zIp_Missing_SemiList,
8798      apzIp_Missing_SemiMachs,
8799      IP_MISSING_SEMI_TEST_CT, FD_MACH_ONLY,
8800      aIp_Missing_SemiTests,   apzIp_Missing_SemiPatch, 0 },
8801
8802   {  zIrix___RestrictName,    zIrix___RestrictList,
8803      apzIrix___RestrictMachs,
8804      IRIX___RESTRICT_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8805      aIrix___RestrictTests,   apzIrix___RestrictPatch, 0 },
8806
8807   {  zIrix___Generic1Name,    zIrix___Generic1List,
8808      apzIrix___Generic1Machs,
8809      IRIX___GENERIC1_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8810      aIrix___Generic1Tests,   apzIrix___Generic1Patch, 0 },
8811
8812   {  zIrix___Generic2Name,    zIrix___Generic2List,
8813      apzIrix___Generic2Machs,
8814      IRIX___GENERIC2_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8815      aIrix___Generic2Tests,   apzIrix___Generic2Patch, 0 },
8816
8817   {  zIrix_Asm_ApostropheName,    zIrix_Asm_ApostropheList,
8818      apzIrix_Asm_ApostropheMachs,
8819      IRIX_ASM_APOSTROPHE_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8820      aIrix_Asm_ApostropheTests,   apzIrix_Asm_ApostrophePatch, 0 },
8821
8822   {  zIrix_Limits_ConstName,    zIrix_Limits_ConstList,
8823      apzIrix_Limits_ConstMachs,
8824      IRIX_LIMITS_CONST_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8825      aIrix_Limits_ConstTests,   apzIrix_Limits_ConstPatch, 0 },
8826
8827   {  zIrix_Socklen_TName,    zIrix_Socklen_TList,
8828      apzIrix_Socklen_TMachs,
8829      IRIX_SOCKLEN_T_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8830      aIrix_Socklen_TTests,   apzIrix_Socklen_TPatch, 0 },
8831
8832   {  zIrix_Stdio_Va_ListName,    zIrix_Stdio_Va_ListList,
8833      apzIrix_Stdio_Va_ListMachs,
8834      IRIX_STDIO_VA_LIST_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8835      aIrix_Stdio_Va_ListTests,   apzIrix_Stdio_Va_ListPatch, 0 },
8836
8837   {  zIrix_WcsftimeName,    zIrix_WcsftimeList,
8838      apzIrix_WcsftimeMachs,
8839      IRIX_WCSFTIME_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8840      aIrix_WcsftimeTests,   apzIrix_WcsftimePatch, 0 },
8841
8842   {  zIsc_FmodName,    zIsc_FmodList,
8843      apzIsc_FmodMachs,
8844      ISC_FMOD_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8845      aIsc_FmodTests,   apzIsc_FmodPatch, 0 },
8846
8847   {  zIsc_Omits_With_StdcName,    zIsc_Omits_With_StdcList,
8848      apzIsc_Omits_With_StdcMachs,
8849      ISC_OMITS_WITH_STDC_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8850      aIsc_Omits_With_StdcTests,   apzIsc_Omits_With_StdcPatch, 0 },
8851
8852   {  zKandr_ConcatName,    zKandr_ConcatList,
8853      apzKandr_ConcatMachs,
8854      KANDR_CONCAT_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8855      aKandr_ConcatTests,   apzKandr_ConcatPatch, 0 },
8856
8857   {  zLibc1_G_Va_ListName,    zLibc1_G_Va_ListList,
8858      apzLibc1_G_Va_ListMachs,
8859      LIBC1_G_VA_LIST_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8860      aLibc1_G_Va_ListTests,   apzLibc1_G_Va_ListPatch, 0 },
8861
8862   {  zLibc1_Ifdefd_MemxName,    zLibc1_Ifdefd_MemxList,
8863      apzLibc1_Ifdefd_MemxMachs,
8864      LIBC1_IFDEFD_MEMX_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8865      aLibc1_Ifdefd_MemxTests,   apzLibc1_Ifdefd_MemxPatch, 0 },
8866
8867   {  zLinux_Ia64_UcontextName,    zLinux_Ia64_UcontextList,
8868      apzLinux_Ia64_UcontextMachs,
8869      LINUX_IA64_UCONTEXT_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8870      aLinux_Ia64_UcontextTests,   apzLinux_Ia64_UcontextPatch, 0 },
8871
8872   {  zLynxos_No_Warning_In_Sys_Time_HName,    zLynxos_No_Warning_In_Sys_Time_HList,
8873      apzLynxos_No_Warning_In_Sys_Time_HMachs,
8874      LYNXOS_NO_WARNING_IN_SYS_TIME_H_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8875      aLynxos_No_Warning_In_Sys_Time_HTests,   apzLynxos_No_Warning_In_Sys_Time_HPatch, 0 },
8876
8877   {  zLynxos_Missing_PutenvName,    zLynxos_Missing_PutenvList,
8878      apzLynxos_Missing_PutenvMachs,
8879      LYNXOS_MISSING_PUTENV_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8880      aLynxos_Missing_PutenvTests,   apzLynxos_Missing_PutenvPatch, 0 },
8881
8882   {  zMachine_Ansi_H_Va_ListName,    zMachine_Ansi_H_Va_ListList,
8883      apzMachine_Ansi_H_Va_ListMachs,
8884      MACHINE_ANSI_H_VA_LIST_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8885      aMachine_Ansi_H_Va_ListTests,   apzMachine_Ansi_H_Va_ListPatch, 0 },
8886
8887   {  zMachine_NameName,    zMachine_NameList,
8888      apzMachine_NameMachs,
8889      MACHINE_NAME_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8890      aMachine_NameTests,   apzMachine_NamePatch, 0 },
8891
8892   {  zMath_ExceptionName,    zMath_ExceptionList,
8893      apzMath_ExceptionMachs,
8894      MATH_EXCEPTION_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8895      aMath_ExceptionTests,   apzMath_ExceptionPatch, 0 },
8896
8897   {  zMath_Huge_Val_From_Dbl_MaxName,    zMath_Huge_Val_From_Dbl_MaxList,
8898      apzMath_Huge_Val_From_Dbl_MaxMachs,
8899      MATH_HUGE_VAL_FROM_DBL_MAX_TEST_CT, FD_MACH_ONLY | FD_SHELL_SCRIPT,
8900      aMath_Huge_Val_From_Dbl_MaxTests,   apzMath_Huge_Val_From_Dbl_MaxPatch, 0 },
8901
8902   {  zNested_Auth_DesName,    zNested_Auth_DesList,
8903      apzNested_Auth_DesMachs,
8904      NESTED_AUTH_DES_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8905      aNested_Auth_DesTests,   apzNested_Auth_DesPatch, 0 },
8906
8907   {  zNested_MotorolaName,    zNested_MotorolaList,
8908      apzNested_MotorolaMachs,
8909      NESTED_MOTOROLA_TEST_CT, FD_MACH_ONLY,
8910      aNested_MotorolaTests,   apzNested_MotorolaPatch, 0 },
8911
8912   {  zNested_Sys_LimitsName,    zNested_Sys_LimitsList,
8913      apzNested_Sys_LimitsMachs,
8914      NESTED_SYS_LIMITS_TEST_CT, FD_MACH_ONLY,
8915      aNested_Sys_LimitsTests,   apzNested_Sys_LimitsPatch, 0 },
8916
8917   {  zNetbsd_Extra_SemicolonName,    zNetbsd_Extra_SemicolonList,
8918      apzNetbsd_Extra_SemicolonMachs,
8919      NETBSD_EXTRA_SEMICOLON_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8920      aNetbsd_Extra_SemicolonTests,   apzNetbsd_Extra_SemicolonPatch, 0 },
8921
8922   {  zNext_Math_PrefixName,    zNext_Math_PrefixList,
8923      apzNext_Math_PrefixMachs,
8924      NEXT_MATH_PREFIX_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8925      aNext_Math_PrefixTests,   apzNext_Math_PrefixPatch, 0 },
8926
8927   {  zNext_TemplateName,    zNext_TemplateList,
8928      apzNext_TemplateMachs,
8929      NEXT_TEMPLATE_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8930      aNext_TemplateTests,   apzNext_TemplatePatch, 0 },
8931
8932   {  zNext_VolitileName,    zNext_VolitileList,
8933      apzNext_VolitileMachs,
8934      NEXT_VOLITILE_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8935      aNext_VolitileTests,   apzNext_VolitilePatch, 0 },
8936
8937   {  zNext_Wait_UnionName,    zNext_Wait_UnionList,
8938      apzNext_Wait_UnionMachs,
8939      NEXT_WAIT_UNION_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8940      aNext_Wait_UnionTests,   apzNext_Wait_UnionPatch, 0 },
8941
8942   {  zNodeent_SyntaxName,    zNodeent_SyntaxList,
8943      apzNodeent_SyntaxMachs,
8944      NODEENT_SYNTAX_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8945      aNodeent_SyntaxTests,   apzNodeent_SyntaxPatch, 0 },
8946
8947   {  zObstack_Lvalue_CastName,    zObstack_Lvalue_CastList,
8948      apzObstack_Lvalue_CastMachs,
8949      OBSTACK_LVALUE_CAST_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8950      aObstack_Lvalue_CastTests,   apzObstack_Lvalue_CastPatch, 0 },
8951
8952   {  zOsf_Namespace_AName,    zOsf_Namespace_AList,
8953      apzOsf_Namespace_AMachs,
8954      OSF_NAMESPACE_A_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8955      aOsf_Namespace_ATests,   apzOsf_Namespace_APatch, 0 },
8956
8957   {  zOsf_Namespace_CName,    zOsf_Namespace_CList,
8958      apzOsf_Namespace_CMachs,
8959      OSF_NAMESPACE_C_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8960      aOsf_Namespace_CTests,   apzOsf_Namespace_CPatch, 0 },
8961
8962   {  zPthread_Page_SizeName,    zPthread_Page_SizeList,
8963      apzPthread_Page_SizeMachs,
8964      PTHREAD_PAGE_SIZE_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8965      aPthread_Page_SizeTests,   apzPthread_Page_SizePatch, 0 },
8966
8967   {  zPthread_Incomplete_Struct_ArgumentName,    zPthread_Incomplete_Struct_ArgumentList,
8968      apzPthread_Incomplete_Struct_ArgumentMachs,
8969      PTHREAD_INCOMPLETE_STRUCT_ARGUMENT_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8970      aPthread_Incomplete_Struct_ArgumentTests,   apzPthread_Incomplete_Struct_ArgumentPatch, 0 },
8971
8972   {  zRead_Ret_TypeName,    zRead_Ret_TypeList,
8973      apzRead_Ret_TypeMachs,
8974      READ_RET_TYPE_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8975      aRead_Ret_TypeTests,   apzRead_Ret_TypePatch, 0 },
8976
8977   {  zRpc_Xdr_Lvalue_Cast_AName,    zRpc_Xdr_Lvalue_Cast_AList,
8978      apzRpc_Xdr_Lvalue_Cast_AMachs,
8979      RPC_XDR_LVALUE_CAST_A_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8980      aRpc_Xdr_Lvalue_Cast_ATests,   apzRpc_Xdr_Lvalue_Cast_APatch, 0 },
8981
8982   {  zRpc_Xdr_Lvalue_Cast_BName,    zRpc_Xdr_Lvalue_Cast_BList,
8983      apzRpc_Xdr_Lvalue_Cast_BMachs,
8984      RPC_XDR_LVALUE_CAST_B_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8985      aRpc_Xdr_Lvalue_Cast_BTests,   apzRpc_Xdr_Lvalue_Cast_BPatch, 0 },
8986
8987   {  zRs6000_DoubleName,    zRs6000_DoubleList,
8988      apzRs6000_DoubleMachs,
8989      RS6000_DOUBLE_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8990      aRs6000_DoubleTests,   apzRs6000_DoublePatch, 0 },
8991
8992   {  zRs6000_FchmodName,    zRs6000_FchmodList,
8993      apzRs6000_FchmodMachs,
8994      RS6000_FCHMOD_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
8995      aRs6000_FchmodTests,   apzRs6000_FchmodPatch, 0 },
8996
8997   {  zRs6000_ParamName,    zRs6000_ParamList,
8998      apzRs6000_ParamMachs,
8999      RS6000_PARAM_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9000      aRs6000_ParamTests,   apzRs6000_ParamPatch, 0 },
9001
9002   {  zSco_MathName,    zSco_MathList,
9003      apzSco_MathMachs,
9004      SCO_MATH_TEST_CT, FD_MACH_ONLY,
9005      aSco_MathTests,   apzSco_MathPatch, 0 },
9006
9007   {  zSco_RegsetName,    zSco_RegsetList,
9008      apzSco_RegsetMachs,
9009      SCO_REGSET_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9010      aSco_RegsetTests,   apzSco_RegsetPatch, 0 },
9011
9012   {  zSco_Static_FuncName,    zSco_Static_FuncList,
9013      apzSco_Static_FuncMachs,
9014      SCO_STATIC_FUNC_TEST_CT, FD_MACH_ONLY,
9015      aSco_Static_FuncTests,   apzSco_Static_FuncPatch, 0 },
9016
9017   {  zSco_UtimeName,    zSco_UtimeList,
9018      apzSco_UtimeMachs,
9019      SCO_UTIME_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9020      aSco_UtimeTests,   apzSco_UtimePatch, 0 },
9021
9022   {  zSolaris_Math_1Name,    zSolaris_Math_1List,
9023      apzSolaris_Math_1Machs,
9024      SOLARIS_MATH_1_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9025      aSolaris_Math_1Tests,   apzSolaris_Math_1Patch, 0 },
9026
9027   {  zSolaris_Math_2Name,    zSolaris_Math_2List,
9028      apzSolaris_Math_2Machs,
9029      SOLARIS_MATH_2_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9030      aSolaris_Math_2Tests,   apzSolaris_Math_2Patch, 0 },
9031
9032   {  zSolaris_Math_3Name,    zSolaris_Math_3List,
9033      apzSolaris_Math_3Machs,
9034      SOLARIS_MATH_3_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9035      aSolaris_Math_3Tests,   apzSolaris_Math_3Patch, 0 },
9036
9037   {  zSolaris_Math_4Name,    zSolaris_Math_4List,
9038      apzSolaris_Math_4Machs,
9039      SOLARIS_MATH_4_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9040      aSolaris_Math_4Tests,   apzSolaris_Math_4Patch, 0 },
9041
9042   {  zSolaris_Math_5Name,    zSolaris_Math_5List,
9043      apzSolaris_Math_5Machs,
9044      SOLARIS_MATH_5_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9045      aSolaris_Math_5Tests,   apzSolaris_Math_5Patch, 0 },
9046
9047   {  zSolaris_Math_6Name,    zSolaris_Math_6List,
9048      apzSolaris_Math_6Machs,
9049      SOLARIS_MATH_6_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9050      aSolaris_Math_6Tests,   apzSolaris_Math_6Patch, 0 },
9051
9052   {  zSolaris_Math_7Name,    zSolaris_Math_7List,
9053      apzSolaris_Math_7Machs,
9054      SOLARIS_MATH_7_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9055      aSolaris_Math_7Tests,   apzSolaris_Math_7Patch, 0 },
9056
9057   {  zSolaris_Math_8Name,    zSolaris_Math_8List,
9058      apzSolaris_Math_8Machs,
9059      SOLARIS_MATH_8_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9060      aSolaris_Math_8Tests,   apzSolaris_Math_8Patch, 0 },
9061
9062   {  zSolaris_Math_9Name,    zSolaris_Math_9List,
9063      apzSolaris_Math_9Machs,
9064      SOLARIS_MATH_9_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9065      aSolaris_Math_9Tests,   apzSolaris_Math_9Patch, 0 },
9066
9067   {  zSolaris_Mutex_Init_1Name,    zSolaris_Mutex_Init_1List,
9068      apzSolaris_Mutex_Init_1Machs,
9069      SOLARIS_MUTEX_INIT_1_TEST_CT, FD_MACH_ONLY,
9070      aSolaris_Mutex_Init_1Tests,   apzSolaris_Mutex_Init_1Patch, 0 },
9071
9072   {  zSolaris_Mutex_Init_2Name,    zSolaris_Mutex_Init_2List,
9073      apzSolaris_Mutex_Init_2Machs,
9074      SOLARIS_MUTEX_INIT_2_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9075      aSolaris_Mutex_Init_2Tests,   apzSolaris_Mutex_Init_2Patch, 0 },
9076
9077   {  zSolaris_Rwlock_Init_1Name,    zSolaris_Rwlock_Init_1List,
9078      apzSolaris_Rwlock_Init_1Machs,
9079      SOLARIS_RWLOCK_INIT_1_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9080      aSolaris_Rwlock_Init_1Tests,   apzSolaris_Rwlock_Init_1Patch, 0 },
9081
9082   {  zSolaris_Once_Init_1Name,    zSolaris_Once_Init_1List,
9083      apzSolaris_Once_Init_1Machs,
9084      SOLARIS_ONCE_INIT_1_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9085      aSolaris_Once_Init_1Tests,   apzSolaris_Once_Init_1Patch, 0 },
9086
9087   {  zSolaris_Once_Init_2Name,    zSolaris_Once_Init_2List,
9088      apzSolaris_Once_Init_2Machs,
9089      SOLARIS_ONCE_INIT_2_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9090      aSolaris_Once_Init_2Tests,   apzSolaris_Once_Init_2Patch, 0 },
9091
9092   {  zSolaris_SocketName,    zSolaris_SocketList,
9093      apzSolaris_SocketMachs,
9094      SOLARIS_SOCKET_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9095      aSolaris_SocketTests,   apzSolaris_SocketPatch, 0 },
9096
9097   {  zSolaris_Stdio_TagName,    zSolaris_Stdio_TagList,
9098      apzSolaris_Stdio_TagMachs,
9099      SOLARIS_STDIO_TAG_TEST_CT, FD_MACH_ONLY,
9100      aSolaris_Stdio_TagTests,   apzSolaris_Stdio_TagPatch, 0 },
9101
9102   {  zSolaris_UnistdName,    zSolaris_UnistdList,
9103      apzSolaris_UnistdMachs,
9104      SOLARIS_UNISTD_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9105      aSolaris_UnistdTests,   apzSolaris_UnistdPatch, 0 },
9106
9107   {  zSolaris_WidecName,    zSolaris_WidecList,
9108      apzSolaris_WidecMachs,
9109      SOLARIS_WIDEC_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9110      aSolaris_WidecTests,   apzSolaris_WidecPatch, 0 },
9111
9112   {  zStatsswtchName,    zStatsswtchList,
9113      apzStatsswtchMachs,
9114      STATSSWTCH_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9115      aStatsswtchTests,   apzStatsswtchPatch, 0 },
9116
9117   {  zStdio_Stdarg_HName,    zStdio_Stdarg_HList,
9118      apzStdio_Stdarg_HMachs,
9119      STDIO_STDARG_H_TEST_CT, FD_MACH_IFNOT | FD_SUBROUTINE,
9120      aStdio_Stdarg_HTests,   apzStdio_Stdarg_HPatch, 0 },
9121
9122   {  zStdio_Va_ListName,    zStdio_Va_ListList,
9123      apzStdio_Va_ListMachs,
9124      STDIO_VA_LIST_TEST_CT, FD_MACH_IFNOT,
9125      aStdio_Va_ListTests,   apzStdio_Va_ListPatch, 0 },
9126
9127   {  zStdio_Va_List_ClientsName,    zStdio_Va_List_ClientsList,
9128      apzStdio_Va_List_ClientsMachs,
9129      STDIO_VA_LIST_CLIENTS_TEST_CT, FD_MACH_ONLY,
9130      aStdio_Va_List_ClientsTests,   apzStdio_Va_List_ClientsPatch, 0 },
9131
9132   {  zStrict_Ansi_NotName,    zStrict_Ansi_NotList,
9133      apzStrict_Ansi_NotMachs,
9134      STRICT_ANSI_NOT_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9135      aStrict_Ansi_NotTests,   apzStrict_Ansi_NotPatch, 0 },
9136
9137   {  zStrict_Ansi_Not_CtdName,    zStrict_Ansi_Not_CtdList,
9138      apzStrict_Ansi_Not_CtdMachs,
9139      STRICT_ANSI_NOT_CTD_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9140      aStrict_Ansi_Not_CtdTests,   apzStrict_Ansi_Not_CtdPatch, 0 },
9141
9142   {  zStrict_Ansi_OnlyName,    zStrict_Ansi_OnlyList,
9143      apzStrict_Ansi_OnlyMachs,
9144      STRICT_ANSI_ONLY_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9145      aStrict_Ansi_OnlyTests,   apzStrict_Ansi_OnlyPatch, 0 },
9146
9147   {  zStruct_FileName,    zStruct_FileList,
9148      apzStruct_FileMachs,
9149      STRUCT_FILE_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9150      aStruct_FileTests,   apzStruct_FilePatch, 0 },
9151
9152   {  zStruct_SockaddrName,    zStruct_SockaddrList,
9153      apzStruct_SockaddrMachs,
9154      STRUCT_SOCKADDR_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9155      aStruct_SockaddrTests,   apzStruct_SockaddrPatch, 0 },
9156
9157   {  zSun_Auth_ProtoName,    zSun_Auth_ProtoList,
9158      apzSun_Auth_ProtoMachs,
9159      SUN_AUTH_PROTO_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9160      aSun_Auth_ProtoTests,   apzSun_Auth_ProtoPatch, 0 },
9161
9162   {  zSun_Bogus_IfdefName,    zSun_Bogus_IfdefList,
9163      apzSun_Bogus_IfdefMachs,
9164      SUN_BOGUS_IFDEF_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9165      aSun_Bogus_IfdefTests,   apzSun_Bogus_IfdefPatch, 0 },
9166
9167   {  zSun_CatmacroName,    zSun_CatmacroList,
9168      apzSun_CatmacroMachs,
9169      SUN_CATMACRO_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9170      aSun_CatmacroTests,   apzSun_CatmacroPatch, 0 },
9171
9172   {  zSun_MallocName,    zSun_MallocList,
9173      apzSun_MallocMachs,
9174      SUN_MALLOC_TEST_CT, FD_MACH_ONLY,
9175      aSun_MallocTests,   apzSun_MallocPatch, 0 },
9176
9177   {  zSun_Rusers_SemiName,    zSun_Rusers_SemiList,
9178      apzSun_Rusers_SemiMachs,
9179      SUN_RUSERS_SEMI_TEST_CT, FD_MACH_ONLY,
9180      aSun_Rusers_SemiTests,   apzSun_Rusers_SemiPatch, 0 },
9181
9182   {  zSun_SignalName,    zSun_SignalList,
9183      apzSun_SignalMachs,
9184      SUN_SIGNAL_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9185      aSun_SignalTests,   apzSun_SignalPatch, 0 },
9186
9187   {  zSunos_StrlenName,    zSunos_StrlenList,
9188      apzSunos_StrlenMachs,
9189      SUNOS_STRLEN_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9190      aSunos_StrlenTests,   apzSunos_StrlenPatch, 0 },
9191
9192   {  zSvr4_Disable_OptName,    zSvr4_Disable_OptList,
9193      apzSvr4_Disable_OptMachs,
9194      SVR4_DISABLE_OPT_TEST_CT, FD_MACH_ONLY,
9195      aSvr4_Disable_OptTests,   apzSvr4_Disable_OptPatch, 0 },
9196
9197   {  zSvr4_GetcwdName,    zSvr4_GetcwdList,
9198      apzSvr4_GetcwdMachs,
9199      SVR4_GETCWD_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9200      aSvr4_GetcwdTests,   apzSvr4_GetcwdPatch, 0 },
9201
9202   {  zSvr4_KrnlName,    zSvr4_KrnlList,
9203      apzSvr4_KrnlMachs,
9204      SVR4_KRNL_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9205      aSvr4_KrnlTests,   apzSvr4_KrnlPatch, 0 },
9206
9207   {  zSvr4_ProfilName,    zSvr4_ProfilList,
9208      apzSvr4_ProfilMachs,
9209      SVR4_PROFIL_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9210      aSvr4_ProfilTests,   apzSvr4_ProfilPatch, 0 },
9211
9212   {  zSvr4_Sighandler_TypeName,    zSvr4_Sighandler_TypeList,
9213      apzSvr4_Sighandler_TypeMachs,
9214      SVR4_SIGHANDLER_TYPE_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9215      aSvr4_Sighandler_TypeTests,   apzSvr4_Sighandler_TypePatch, 0 },
9216
9217   {  zSvr4_Undeclared_GetrngeName,    zSvr4_Undeclared_GetrngeList,
9218      apzSvr4_Undeclared_GetrngeMachs,
9219      SVR4_UNDECLARED_GETRNGE_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9220      aSvr4_Undeclared_GetrngeTests,   apzSvr4_Undeclared_GetrngePatch, 0 },
9221
9222   {  zSysv68_StringName,    zSysv68_StringList,
9223      apzSysv68_StringMachs,
9224      SYSV68_STRING_TEST_CT, FD_MACH_ONLY,
9225      aSysv68_StringTests,   apzSysv68_StringPatch, 0 },
9226
9227   {  zSysz_Stdlib_For_SunName,    zSysz_Stdlib_For_SunList,
9228      apzSysz_Stdlib_For_SunMachs,
9229      SYSZ_STDLIB_FOR_SUN_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9230      aSysz_Stdlib_For_SunTests,   apzSysz_Stdlib_For_SunPatch, 0 },
9231
9232   {  zThread_KeywordName,    zThread_KeywordList,
9233      apzThread_KeywordMachs,
9234      THREAD_KEYWORD_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9235      aThread_KeywordTests,   apzThread_KeywordPatch, 0 },
9236
9237   {  zTinfo_CplusplusName,    zTinfo_CplusplusList,
9238      apzTinfo_CplusplusMachs,
9239      TINFO_CPLUSPLUS_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9240      aTinfo_CplusplusTests,   apzTinfo_CplusplusPatch, 0 },
9241
9242   {  zUltrix_Atexit_ParamName,    zUltrix_Atexit_ParamList,
9243      apzUltrix_Atexit_ParamMachs,
9244      ULTRIX_ATEXIT_PARAM_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9245      aUltrix_Atexit_ParamTests,   apzUltrix_Atexit_ParamPatch, 0 },
9246
9247   {  zUltrix_Atof_ParamName,    zUltrix_Atof_ParamList,
9248      apzUltrix_Atof_ParamMachs,
9249      ULTRIX_ATOF_PARAM_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9250      aUltrix_Atof_ParamTests,   apzUltrix_Atof_ParamPatch, 0 },
9251
9252   {  zUltrix_ConstName,    zUltrix_ConstList,
9253      apzUltrix_ConstMachs,
9254      ULTRIX_CONST_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9255      aUltrix_ConstTests,   apzUltrix_ConstPatch, 0 },
9256
9257   {  zUltrix_Const2Name,    zUltrix_Const2List,
9258      apzUltrix_Const2Machs,
9259      ULTRIX_CONST2_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9260      aUltrix_Const2Tests,   apzUltrix_Const2Patch, 0 },
9261
9262   {  zUltrix_Const3Name,    zUltrix_Const3List,
9263      apzUltrix_Const3Machs,
9264      ULTRIX_CONST3_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9265      aUltrix_Const3Tests,   apzUltrix_Const3Patch, 0 },
9266
9267   {  zUltrix_Fix_FixprotoName,    zUltrix_Fix_FixprotoList,
9268      apzUltrix_Fix_FixprotoMachs,
9269      ULTRIX_FIX_FIXPROTO_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9270      aUltrix_Fix_FixprotoTests,   apzUltrix_Fix_FixprotoPatch, 0 },
9271
9272   {  zUltrix_IfdefName,    zUltrix_IfdefList,
9273      apzUltrix_IfdefMachs,
9274      ULTRIX_IFDEF_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9275      aUltrix_IfdefTests,   apzUltrix_IfdefPatch, 0 },
9276
9277   {  zUltrix_LocaleName,    zUltrix_LocaleList,
9278      apzUltrix_LocaleMachs,
9279      ULTRIX_LOCALE_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9280      aUltrix_LocaleTests,   apzUltrix_LocalePatch, 0 },
9281
9282   {  zUltrix_Math_IfdefName,    zUltrix_Math_IfdefList,
9283      apzUltrix_Math_IfdefMachs,
9284      ULTRIX_MATH_IFDEF_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9285      aUltrix_Math_IfdefTests,   apzUltrix_Math_IfdefPatch, 0 },
9286
9287   {  zUltrix_Nested_IoctlName,    zUltrix_Nested_IoctlList,
9288      apzUltrix_Nested_IoctlMachs,
9289      ULTRIX_NESTED_IOCTL_TEST_CT, FD_MACH_ONLY,
9290      aUltrix_Nested_IoctlTests,   apzUltrix_Nested_IoctlPatch, 0 },
9291
9292   {  zUltrix_Nested_SvcName,    zUltrix_Nested_SvcList,
9293      apzUltrix_Nested_SvcMachs,
9294      ULTRIX_NESTED_SVC_TEST_CT, FD_MACH_ONLY,
9295      aUltrix_Nested_SvcTests,   apzUltrix_Nested_SvcPatch, 0 },
9296
9297   {  zUltrix_StatName,    zUltrix_StatList,
9298      apzUltrix_StatMachs,
9299      ULTRIX_STAT_TEST_CT, FD_MACH_ONLY,
9300      aUltrix_StatTests,   apzUltrix_StatPatch, 0 },
9301
9302   {  zUltrix_StaticName,    zUltrix_StaticList,
9303      apzUltrix_StaticMachs,
9304      ULTRIX_STATIC_TEST_CT, FD_MACH_ONLY,
9305      aUltrix_StaticTests,   apzUltrix_StaticPatch, 0 },
9306
9307   {  zUltrix_StdlibName,    zUltrix_StdlibList,
9308      apzUltrix_StdlibMachs,
9309      ULTRIX_STDLIB_TEST_CT, FD_MACH_ONLY,
9310      aUltrix_StdlibTests,   apzUltrix_StdlibPatch, 0 },
9311
9312   {  zUltrix_StringsName,    zUltrix_StringsList,
9313      apzUltrix_StringsMachs,
9314      ULTRIX_STRINGS_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9315      aUltrix_StringsTests,   apzUltrix_StringsPatch, 0 },
9316
9317   {  zUltrix_Strings2Name,    zUltrix_Strings2List,
9318      apzUltrix_Strings2Machs,
9319      ULTRIX_STRINGS2_TEST_CT, FD_MACH_ONLY,
9320      aUltrix_Strings2Tests,   apzUltrix_Strings2Patch, 0 },
9321
9322   {  zUltrix_Sys_TimeName,    zUltrix_Sys_TimeList,
9323      apzUltrix_Sys_TimeMachs,
9324      ULTRIX_SYS_TIME_TEST_CT, FD_MACH_ONLY,
9325      aUltrix_Sys_TimeTests,   apzUltrix_Sys_TimePatch, 0 },
9326
9327   {  zUltrix_UnistdName,    zUltrix_UnistdList,
9328      apzUltrix_UnistdMachs,
9329      ULTRIX_UNISTD_TEST_CT, FD_MACH_ONLY,
9330      aUltrix_UnistdTests,   apzUltrix_UnistdPatch, 0 },
9331
9332   {  zUnicosmk_RestrictName,    zUnicosmk_RestrictList,
9333      apzUnicosmk_RestrictMachs,
9334      UNICOSMK_RESTRICT_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9335      aUnicosmk_RestrictTests,   apzUnicosmk_RestrictPatch, 0 },
9336
9337   {  zUw7_Byteorder_FixName,    zUw7_Byteorder_FixList,
9338      apzUw7_Byteorder_FixMachs,
9339      UW7_BYTEORDER_FIX_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9340      aUw7_Byteorder_FixTests,   apzUw7_Byteorder_FixPatch, 0 },
9341
9342   {  zVa_I960_MacroName,    zVa_I960_MacroList,
9343      apzVa_I960_MacroMachs,
9344      VA_I960_MACRO_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9345      aVa_I960_MacroTests,   apzVa_I960_MacroPatch, 0 },
9346
9347   {  zVoid_NullName,    zVoid_NullList,
9348      apzVoid_NullMachs,
9349      VOID_NULL_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9350      aVoid_NullTests,   apzVoid_NullPatch, 0 },
9351
9352   {  zVxworks_Gcc_ProblemName,    zVxworks_Gcc_ProblemList,
9353      apzVxworks_Gcc_ProblemMachs,
9354      VXWORKS_GCC_PROBLEM_TEST_CT, FD_MACH_ONLY,
9355      aVxworks_Gcc_ProblemTests,   apzVxworks_Gcc_ProblemPatch, 0 },
9356
9357   {  zVxworks_Needs_VxtypesName,    zVxworks_Needs_VxtypesList,
9358      apzVxworks_Needs_VxtypesMachs,
9359      VXWORKS_NEEDS_VXTYPES_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9360      aVxworks_Needs_VxtypesTests,   apzVxworks_Needs_VxtypesPatch, 0 },
9361
9362   {  zVxworks_Needs_VxworksName,    zVxworks_Needs_VxworksList,
9363      apzVxworks_Needs_VxworksMachs,
9364      VXWORKS_NEEDS_VXWORKS_TEST_CT, FD_MACH_ONLY,
9365      aVxworks_Needs_VxworksTests,   apzVxworks_Needs_VxworksPatch, 0 },
9366
9367   {  zVxworks_TimeName,    zVxworks_TimeList,
9368      apzVxworks_TimeMachs,
9369      VXWORKS_TIME_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9370      aVxworks_TimeTests,   apzVxworks_TimePatch, 0 },
9371
9372   {  zWindiss_Math1Name,    zWindiss_Math1List,
9373      apzWindiss_Math1Machs,
9374      WINDISS_MATH1_TEST_CT, FD_MACH_ONLY,
9375      aWindiss_Math1Tests,   apzWindiss_Math1Patch, 0 },
9376
9377   {  zWindiss_Math2Name,    zWindiss_Math2List,
9378      apzWindiss_Math2Machs,
9379      WINDISS_MATH2_TEST_CT, FD_MACH_ONLY,
9380      aWindiss_Math2Tests,   apzWindiss_Math2Patch, 0 },
9381
9382   {  zWindiss_ValistName,    zWindiss_ValistList,
9383      apzWindiss_ValistMachs,
9384      WINDISS_VALIST_TEST_CT, FD_MACH_ONLY,
9385      aWindiss_ValistTests,   apzWindiss_ValistPatch, 0 },
9386
9387   {  zX11_ClassName,    zX11_ClassList,
9388      apzX11_ClassMachs,
9389      X11_CLASS_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9390      aX11_ClassTests,   apzX11_ClassPatch, 0 },
9391
9392   {  zX11_Class_UsageName,    zX11_Class_UsageList,
9393      apzX11_Class_UsageMachs,
9394      X11_CLASS_USAGE_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9395      aX11_Class_UsageTests,   apzX11_Class_UsagePatch, 0 },
9396
9397   {  zX11_NewName,    zX11_NewList,
9398      apzX11_NewMachs,
9399      X11_NEW_TEST_CT, FD_MACH_ONLY,
9400      aX11_NewTests,   apzX11_NewPatch, 0 },
9401
9402   {  zX11_SprintfName,    zX11_SprintfList,
9403      apzX11_SprintfMachs,
9404      X11_SPRINTF_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
9405      aX11_SprintfTests,   apzX11_SprintfPatch, 0 }
9406 };