mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
10 lines
191 B
C++
10 lines
191 B
C++
|
#pragma once
|
||
|
|
||
|
typedef long syscall_arg_t;
|
||
|
|
||
|
__attribute__((visibility("hidden")))
|
||
|
long __syscall_ret(unsigned long);
|
||
|
|
||
|
__attribute__((visibility("hidden")))
|
||
|
long __syscall(syscall_arg_t, ...);
|