mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
12 lines
142 B
C
12 lines
142 B
C
#include <errno.h>
|
|
#include "syscall.h"
|
|
|
|
long __syscall_ret(unsigned long r)
|
|
{
|
|
if (r > -4096UL) {
|
|
errno = -r;
|
|
return -1;
|
|
}
|
|
return r;
|
|
}
|