mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
Rename include dir to match the convention: from `wasm32-wasi` to `wasm-wasi-musl` Add building stubs which will be used to build and cache WASI libc sysroot.
21 lines
396 B
C
Vendored
21 lines
396 B
C
Vendored
#ifndef __wasilibc___header_stdlib_h
|
|
#define __wasilibc___header_stdlib_h
|
|
|
|
#define __need_size_t
|
|
#include <stddef.h>
|
|
|
|
#include <__functions_malloc.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void abort(void) __attribute__((__noreturn__));
|
|
void qsort(void *, size_t, size_t, int (*)(const void *, const void *));
|
|
void _Exit(int) __attribute__((__noreturn__));
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|