stdlib.h 404 B

1234567891011121314151617181920
  1. #ifndef _BITS_STDLIB_H
  2. #define _BITS_STDLIB_H
  3. // C++ needs abort to be a function, and cannot use this
  4. #ifndef __cplusplus
  5. // Override abort function with detailed abort in C
  6. #define abort() __abort(__func__, __FILE__, __LINE__)
  7. #endif
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. long double strtold(const char *nptr, char **endptr);
  12. #ifdef __cplusplus
  13. } // extern "C"
  14. #endif
  15. #endif /* _BITS_STDLIB_H */