diff options
author | Bruce Korb <bkorb@gnu.org> | 2003-01-04 21:17:01 +0000 |
---|---|---|
committer | Bruce Korb <korbb@gcc.gnu.org> | 2003-01-04 21:17:01 +0000 |
commit | 871dab3eb671316f422c7f71463f60b410693de2 (patch) | |
tree | 8468a1f3256ba026a11fec3a375c39664a9a67c3 /gcc/fixinc/tests/base/assert.h | |
parent | 35d434edd9dcf9eb613c65ad3ed05c73a9a08bcd (diff) | |
download | gcc-871dab3eb671316f422c7f71463f60b410693de2.zip gcc-871dab3eb671316f422c7f71463f60b410693de2.tar.gz gcc-871dab3eb671316f422c7f71463f60b410693de2.tar.bz2 |
When wrapping files, guard with both the fix name and the file name
From-SVN: r60893
Diffstat (limited to 'gcc/fixinc/tests/base/assert.h')
-rw-r--r-- | gcc/fixinc/tests/base/assert.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/fixinc/tests/base/assert.h b/gcc/fixinc/tests/base/assert.h index 5140e89..2642cbe 100644 --- a/gcc/fixinc/tests/base/assert.h +++ b/gcc/fixinc/tests/base/assert.h @@ -7,14 +7,14 @@ This had to be done to correct non-standard usages in the original, manufacturer supplied header file. */ -#ifndef FIXINC_BROKEN_ASSERT_STDLIB_CHECK -#define FIXINC_BROKEN_ASSERT_STDLIB_CHECK 1 +#ifndef FIXINC_WRAP_ASSERT_H_BROKEN_ASSERT_STDLIB +#define FIXINC_WRAP_ASSERT_H_BROKEN_ASSERT_STDLIB 1 #ifdef __cplusplus #include <stdlib.h> #endif -#ifndef FIXINC_BROKEN_ASSERT_STDIO_CHECK -#define FIXINC_BROKEN_ASSERT_STDIO_CHECK 1 +#ifndef FIXINC_WRAP_ASSERT_H_BROKEN_ASSERT_STDIO +#define FIXINC_WRAP_ASSERT_H_BROKEN_ASSERT_STDIO 1 #include <stdio.h> @@ -38,6 +38,6 @@ extern FILE* stderr; extern void exit ( int ); #endif /* BROKEN_ASSERT_STDLIB_CHECK */ -#endif /* FIXINC_BROKEN_ASSERT_STDIO_CHECK */ +#endif /* FIXINC_WRAP_ASSERT_H_BROKEN_ASSERT_STDIO */ -#endif /* FIXINC_BROKEN_ASSERT_STDLIB_CHECK */ +#endif /* FIXINC_WRAP_ASSERT_H_BROKEN_ASSERT_STDLIB */ |