mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 20:24:07 +00:00
16 lines
327 B
C++
16 lines
327 B
C++
#pragma once
|
|
|
|
#include <sys/syscall.h>
|
|
#include <syscall_arch.h>
|
|
|
|
typedef long syscall_arg_t;
|
|
|
|
__attribute__((visibility("hidden")))
|
|
long __syscall_ret(unsigned long);
|
|
|
|
__attribute__((visibility("hidden")))
|
|
long __syscall(syscall_arg_t, ...);
|
|
|
|
__attribute__((visibility("hidden")))
|
|
void *__vdsosym(const char *, const char *);
|