stdlib.h 209 B

12345678910111213141516
  1. #ifndef __GBLIBC_STDLIB_H_
  2. #define __GBLIBC_STDLIB_H_
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. int atoi(const char* str);
  7. void __attribute__((noreturn)) exit(int status);
  8. #ifdef __cplusplus
  9. }
  10. #endif
  11. #endif