stdlib.h 269 B

12345678910111213141516
  1. #ifndef _BITS_STDLIB_H
  2. #define _BITS_STDLIB_H
  3. # define abort() __abort(__func__, __FILE__, __LINE__)
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. long double strtold(const char *nptr, char **endptr);
  8. #ifdef __cplusplus
  9. } // extern "C"
  10. #endif
  11. #endif /* _BITS_STDLIB_H */