diff options
author | korbb <korbb@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-09-06 19:57:26 +0000 |
---|---|---|
committer | korbb <korbb@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-09-06 19:57:26 +0000 |
commit | b32d497cafb846c4d5954a9b10f39ad1767579d0 (patch) | |
tree | 4e52f6dae3c611152e1d65b676f22e56f6f790d3 /fixincludes/tests | |
parent | ac044e18829c7f368395844bd69524ebdc295a76 (diff) | |
download | ppe42-gcc-b32d497cafb846c4d5954a9b10f39ad1767579d0.tar.gz ppe42-gcc-b32d497cafb846c4d5954a9b10f39ad1767579d0.zip |
fix glibc_mutex_init fix
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@140071 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'fixincludes/tests')
-rw-r--r-- | fixincludes/tests/base/internal/wchar_core.h | 2 | ||||
-rw-r--r-- | fixincludes/tests/base/math.h | 13 | ||||
-rw-r--r-- | fixincludes/tests/base/pthread.h | 1 |
3 files changed, 8 insertions, 8 deletions
diff --git a/fixincludes/tests/base/internal/wchar_core.h b/fixincludes/tests/base/internal/wchar_core.h index 5b358a32213..9c9fc4e97b2 100644 --- a/fixincludes/tests/base/internal/wchar_core.h +++ b/fixincludes/tests/base/internal/wchar_core.h @@ -11,5 +11,5 @@ #if defined( IRIX_WCSFTIME_CHECK ) #if _NO_XOPEN5 && !defined(__c99) -extern size_t wcsftime(wchar_t *, __SGI_LIBC_NAMESPACE_QUALIFIER size_t, const char *, const struct tm *); +extern size_t wcsftime(wchar_t *, __SGI_LIBC_NAMESPACE_QUALIFIER size_t, const char *, const struct tm *); #endif /* IRIX_WCSFTIME_CHECK */ diff --git a/fixincludes/tests/base/math.h b/fixincludes/tests/base/math.h index 5b5b1d1ede0..389dacf25c7 100644 --- a/fixincludes/tests/base/math.h +++ b/fixincludes/tests/base/math.h @@ -43,15 +43,11 @@ extern int matherr(); #endif /* EXCEPTION_STRUCTURE_CHECK */ -#if defined( HPUX11_CPP_POW_INLINE_CHECK ) - -#endif /* HPUX11_CPP_POW_INLINE_CHECK */ - - #if defined( HPPA_HPUX_FP_MACROS_CHECK ) #endif /* _INCLUDE_HPUX_SOURCE */ -#if defined(_INCLUDE_HPUX_SOURCE) || (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)) +#if defined(_INCLUDE_HPUX_SOURCE) || \ + (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)) # define FP_NORMAL 0 # define FP_ZERO 1 # define FP_INFINITE 2 @@ -64,6 +60,11 @@ extern int matherr(); #endif /* HPPA_HPUX_FP_MACROS_CHECK */ +#if defined( HPUX11_CPP_POW_INLINE_CHECK ) + +#endif /* HPUX11_CPP_POW_INLINE_CHECK */ + + #if defined( HPUX11_FABSF_CHECK ) #ifdef _PA_RISC #ifndef __cplusplus diff --git a/fixincludes/tests/base/pthread.h b/fixincludes/tests/base/pthread.h index 68ed2c8ab1a..4f18e718057 100644 --- a/fixincludes/tests/base/pthread.h +++ b/fixincludes/tests/base/pthread.h @@ -52,7 +52,6 @@ #define PTHREAD_RWLOCK_INITIALIZER {_PTHREAD_RWVALID | _PTHREAD_RWVF_STA, 0, 0, 0, 0, 0, 0, 0, 0, 0 } #define PTHREAD_RWLOCK_INITWITHNAME_NP(_n_,_a_) {_PTHREAD_RWVALID | _PTHREAD_RWVF_STA, _n_, _a_, 0, 0, 0, 0, 0, 0, 0 } - #endif /* ALPHA_PTHREAD_INIT_CHECK */ |