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/math.h | |
parent | 1b1f56cf4ded44b75c93b8285a66ec34e5c1316c (diff) | |
download | gcc-6aa1f8c1901b70e3d64f8d68d3446c7c3a56474e.tar.gz |
fix glibc_mutex_init fix
From-SVN: r140071
Diffstat (limited to 'fixincludes/tests/base/math.h')
-rw-r--r-- | fixincludes/tests/base/math.h | 13 |
1 files changed, 7 insertions, 6 deletions
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 |