OSDN Git Service

* fixinc/fixtests.c(stdc_0_in_system_headers_test): Must return "FIX"
[pf3gnuchains/gcc-fork.git] / gcc / fixinc / inclhack.def
index 01ecb12..03b99cf 100644 (file)
@@ -104,7 +104,8 @@ fix = {
 fix = {
     hackname = AAB_dgux_int_varargs;
     files    = _int_varargs.h;
-    replace  = "#ifndef __INT_VARARGS_H
+    replace  =
+"#ifndef __INT_VARARGS_H
 \#define __INT_VARARGS_H
 
 /************************************************************************/
@@ -537,9 +538,7 @@ fix = {
     files    = limits.h;
     mach     = "*-*-ultrix4.3";
     replace  =
-'/*    @(#)limits.h                            */
-/* This file was generated by fixincludes      */
-\#ifndef _LIMITS_INCLUDED
+'#ifndef _LIMITS_INCLUDED
 \#define _LIMITS_INCLUDED
 \#include <sys/limits.h>
 \#endif /* _LIMITS_INCLUDED */
@@ -557,9 +556,7 @@ fix = {
     files    = memory.h;
     mach     = "*-*-ultrix4.3";
     replace  =
-'/*    @(#)memory.h                            */
-/* This file was generated by fixincludes      */
-\#ifndef _MEMORY_INCLUDED
+'#ifndef _MEMORY_INCLUDED
 \#define _MEMORY_INCLUDED
 \#include <strings.h>
 \#endif /* _MEMORY_INCLUDED */
@@ -577,9 +574,7 @@ fix = {
     files    = string.h;
     mach     = "*-*-ultrix4.3";
     replace  =
-'/*    @(#)string.h                            */
-/* This file was generated by fixincludes      */
-\#ifndef _STRING_INCLUDED
+'#ifndef _STRING_INCLUDED
 \#define _STRING_INCLUDED
 \#include <strings.h>
 \#endif /* _STRING_INCLUDED */
@@ -651,6 +646,19 @@ fix = {
 
 
 /*
+ *  Fix __assert declaration in assert.h on Alpha OSF/1.
+ */
+fix = {
+    hackname  = alpha___assert;
+    files     = "assert.h";
+    select    = '__assert\(char \*, char \*, int\)';
+    c_fix     = format;
+    c_fix_arg = "__assert(const char *, const char *, int)";
+    test_text = 'extern void __assert(char *, char *, int);';
+};
+
+
+/*
  *  Fix getopt declarations in stdio.h and stdlib.h on Alpha OSF/1 and AIX.
  */
 fix = {
@@ -1022,7 +1030,8 @@ fix = {
     c_fix     = format;
     c_fix_arg = "%0\n#include <sys/djtypes.h>";
     c_fix_arg = "#include <stddef.h>";
-    test_text = "__DJ_wint_t\n#undef __DJ_wint_t\n#define __DJ_wint_t";
+    test_text = "#include <stddef.h>\n"
+                "extern __DJ_wint_t x;\n";
 };
 
 /*
@@ -1337,6 +1346,8 @@ fix = {
     select = '(printf\(.*), /\* va_list \*/ char \*';
     c_fix  = format;
     c_fix_arg = "%1, __gnuc_va_list";
+    test_text =
+    "extern int printf( const char *, /* va_list */ char * );";
 };
 
 
@@ -1345,11 +1356,11 @@ fix = {
  */
 fix = {
     hackname   = irix_limits_const;
-    files      = limits.h;
+    files      = fixinc-test-limits.h, limits.h;
     select     = "^extern const ";
     c_fix      = format;
     c_fix_arg  = "extern __const ";
-    test_text   = "extern const char limit; /* test\n\tlimits */";
+    test_text   = "extern const char limit; /* test limits */";
 };
 
 
@@ -1972,6 +1983,7 @@ fix = {
                "|__STDC__[ \t]*!=[ \t]*1"
                "|__STDC__[ \t]*-[ \t]*0[ \t]*==[ \t]*0"
                ")(.*)";
+    c_test   = stdc_0_in_system_headers;
 
     c_fix     = format;
     c_fix_arg = "%1 !defined(__STRICT_ANSI__)%3";
@@ -1980,7 +1992,8 @@ fix = {
                 "#if __STDC__ == 0\n"
                 "#if __STDC__ != 1\n"
                 "#if __STDC__ - 0 == 0"
-               "/* not std C */\nint foo;\n#endif";
+               "/* not std C */\nint foo;\n"
+               "\n#end-end-end-end-if :-)";
 };
 
 /*
@@ -1989,15 +2002,11 @@ fix = {
  */
 fix = {
     hackname = strict_ansi_not_ctd;
-    files="limits.h";
-    files="math.h";
-    files="stdio.h";
-    files="signal.h";
-    files="stdlib.h";
-    files="time.h";
+    files    = math.h, limits.h, stdio.h, signal.h, stdlib.h, time.h;
     select   = "^([ \t]*[|&][|&][ \t(]*)"
                "(__STDC__[ \t]*-[ \t]*0[ \t]*==[ \t]*0"
                ")(.*)";
+    c_test   = stdc_0_in_system_headers;
 
     c_fix     = format;
     c_fix_arg = "%1 !defined(__STRICT_ANSI__)%3";
@@ -2018,6 +2027,7 @@ fix = {
                "|__STDC__[ \t]*-[ \t]*0[ \t]*==[ \t]*1"
                "|__STDC__[ \t]*-[ \t]*0[ \t]*!=[ \t]*0"
                ")(.*)";
+    c_test   = stdc_0_in_system_headers;
 
     c_fix     = format;
     c_fix_arg = "%1 defined(__STRICT_ANSI__)%3";
@@ -2057,7 +2067,9 @@ fix = {
   c_fix = format;
   c_fix_arg = "%1, {0}}";
   c_fix_arg = "(define[ \t]+PTHREAD_MUTEX_INITIALIZER.*),[ \t]*0}$";
-  test_text = "#define PTHREAD_MUTEX_INITIALIZER {{{0},0}, {{{0}}}, 0}";
+  test_text =
+  '#ident "@(#)pthread.h  1.26  98/04/12 SMI"'"\n"
+  "#define PTHREAD_MUTEX_INITIALIZER {{{0},0}, {{{0}}}, 0}";
 };