diff options
author | Bruce Korb <bkorb@gnu.org> | 2008-09-06 19:57:26 +0000 |
---|---|---|
committer | Bruce Korb <korbb@gcc.gnu.org> | 2008-09-06 19:57:26 +0000 |
commit | 6aa1f8c1901b70e3d64f8d68d3446c7c3a56474e (patch) | |
tree | 4e52f6dae3c611152e1d65b676f22e56f6f790d3 /fixincludes/tests/base | |
parent | 1b1f56cf4ded44b75c93b8285a66ec34e5c1316c (diff) | |
download | gcc-6aa1f8c1901b70e3d64f8d68d3446c7c3a56474e.zip gcc-6aa1f8c1901b70e3d64f8d68d3446c7c3a56474e.tar.gz gcc-6aa1f8c1901b70e3d64f8d68d3446c7c3a56474e.tar.bz2 |
fix glibc_mutex_init fix
From-SVN: r140071
Diffstat (limited to 'fixincludes/tests/base')
-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 5b358a3..9c9fc4e 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 5b5b1d1..389dacf 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 68ed2c8..4f18e71 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 */ |