diff options
-rw-r--r-- | lib/msun/i387/fenv.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/msun/i387/fenv.h b/lib/msun/i387/fenv.h index d62dcf8..cbe9a6b 100644 --- a/lib/msun/i387/fenv.h +++ b/lib/msun/i387/fenv.h @@ -80,6 +80,8 @@ typedef __uint16_t fexcept_t; #define _SSE_ROUND_SHIFT 3 #define _SSE_EMASK_SHIFT 7 +__BEGIN_DECLS + /* After testing for SSE support once, we cache the result in __has_sse. */ enum __sse_support { __SSE_YES, __SSE_NO, __SSE_UNK }; extern enum __sse_support __has_sse; @@ -91,8 +93,6 @@ int __test_sse(void); (__has_sse == __SSE_UNK && __test_sse())) #endif -__BEGIN_DECLS - /* Default floating-point environment */ extern const fenv_t __fe_dfl_env; #define FE_DFL_ENV (&__fe_dfl_env) |