summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/include/sys/syscall.h
blob: ceed6b59cb3ee550651c23c9758e06ff0106d6bb (plain)
1
2
3
4
5
6
7
8
9
10
#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