mirror of
https://github.com/fluencelabs/musl
synced 2025-04-25 07:12:15 +00:00
17 lines
176 B
C
17 lines
176 B
C
|
#ifndef _SYS_SYSCALL_H
|
||
|
#define _SYS_SYSCALL_H
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#include <bits/syscall.h>
|
||
|
|
||
|
long syscall(long, ...);
|
||
|
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
#endif
|