musl - an implementation of the standard library for Linux-based systems
blob: a3f471368fc36ec6ebadbfe37f81ace83aaa4c7b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#include <errno.h>
#include "syscall.h"
long __syscall_ret(unsigned long r)
{
if (r > -4096UL) {
errno = -r;
return -1;
}
return r;
}
|