blob: 4859ca2a676103ae5d72c3a58654e08c226496d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef SYSCALL_H__
#define SYSCALL_H__
#ifdef __cplusplus
extern "C" {
#endif
void syscallWrapper() asm("playground$syscallWrapper")
#if defined(__x86_64__)
__attribute__((visibility("internal")))
#endif
;
#ifdef __cplusplus
}
#endif
#endif // SYSCALL_H__
|