12345678910111213141516171819202122232425262728293031 |
- #ifndef _STDLIB_H
- # error "Never use <bits/stdlib-float.h> directly; include <stdlib.h> instead."
- #endif
- #ifdef __USE_EXTERN_INLINES
- __BEGIN_NAMESPACE_STD
- __extern_inline double
- __NTH (atof (const char *__nptr))
- {
- return strtod (__nptr, (char **) NULL);
- }
- __END_NAMESPACE_STD
- #endif
|