| 1 | #ifndef __wasilibc___header_stdlib_h |
| 2 | #define __wasilibc___header_stdlib_h |
| 3 | |
| 4 | #define __need_size_t |
| 5 | #include <stddef.h> |
| 6 | |
| 7 | #include <__functions_malloc.h> |
| 8 | |
| 9 | #ifdef __cplusplus |
| 10 | extern "C" { |
| 11 | #endif |
| 12 | |
| 13 | void abort(void) __attribute__((__noreturn__)); |
| 14 | void qsort(void *, size_t, size_t, int (*)(const void *, const void *)); |
| 15 | void _Exit(int) __attribute__((__noreturn__)); |
| 16 | |
| 17 | #ifdef __cplusplus |
| 18 | } |
| 19 | #endif |
| 20 | |
| 21 | #endif |