mirror of
https://git.proxmox.com/git/wasi-libc
synced 2025-08-24 11:18:53 +00:00

And clean up various stale declarations and macros that this turned up. In particular: - Don't install pthread.h or aio.h in THREAD_MODEL=single mode. - Don't define mkstemp and friends, since WASI currently has no support for temporary directories.
11 lines
216 B
C
11 lines
216 B
C
#ifndef _SYS_SYSCALL_H
|
|
#define _SYS_SYSCALL_H
|
|
|
|
#ifdef __wasilibc_unmodified_upstream /* WASI has no syscall */
|
|
#include <bits/syscall.h>
|
|
#else
|
|
/* The generic syscall funtion is not yet implemented. */
|
|
#endif
|
|
|
|
#endif
|