summaryrefslogtreecommitdiff
path: root/src/internal/syscall_ret.c
blob: d99f4a5090c948938f31f4d9a4ce0bff01ac53b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include <errno.h>

long __syscall_ret(unsigned long r)
{
	if (r > -4096UL) {
		errno = -r;
		return -1;
	}
	return r;
}