diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2003-09-05 06:20:05 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2003-09-05 06:20:05 +0000 |
commit | f88c789f2a33ba245027aee2c985e46961e55aff (patch) | |
tree | 51cd19294ee9f5b7e8cbcdc10f70aa7e9115174c /include | |
parent | cc34fc6fe0a465d6d9cf1b89014ec0ccaf67aa31 (diff) |
Move an #endif that was in the wrong place.
Diffstat (limited to 'include')
-rw-r--r-- | include/stdlib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index 82f1643b6..b183c0bdd 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -162,7 +162,6 @@ __extension__ extern long long int atoll (__const char *__nptr) __THROW __attribute_pure__; __END_NAMESPACE_C99 #endif -#endif /* __UCLIBC_HAS_FLOATS__ */ #ifdef __UCLIBC_HAS_FLOATS__ __BEGIN_NAMESPACE_STD @@ -181,6 +180,7 @@ extern long double strtold (__const char *__restrict __nptr, char **__restrict __endptr) __THROW; __END_NAMESPACE_C99 #endif +#endif /* __UCLIBC_HAS_FLOATS__ */ __BEGIN_NAMESPACE_STD /* Convert a string to a long integer. */ |