]> git.proxmox.com Git - wasi-libc.git/blame - libc-bottom-half/headers/public/__header_stdlib.h
__wasi_thread_spawn: stop truncating the return value (#353)
[wasi-libc.git] / libc-bottom-half / headers / public / __header_stdlib.h
CommitLineData
b59b83cb
DG
1#ifndef __wasilibc___header_stdlib_h
2#define __wasilibc___header_stdlib_h
320054e8
DG
3
4#define __need_size_t
5#include <stddef.h>
6
7#include <__functions_malloc.h>
8
9#ifdef __cplusplus
10extern "C" {
11#endif
12
13void abort(void) __attribute__((__noreturn__));
14void qsort(void *, size_t, size_t, int (*)(const void *, const void *));
7ba6adfc 15void _Exit(int) __attribute__((__noreturn__));
320054e8
DG
16
17#ifdef __cplusplus
18}
19#endif
20
21#endif