blob: e4a1bdbe03f3cd0c1c64c355fcf0fc2ad592c0ba [file] [log] [blame]
#include <errno.h>
#include <unistd.h>
long __syscall_ret(unsigned long r)
{
if (r > -4096UL) {
errno = -r;
return -1;
}
return r;
}