summaryrefslogblamecommitdiff
path: root/src/internal/syscall_ret.c
blob: e4a1bdbe03f3cd0c1c64c355fcf0fc2ad592c0ba (plain) (tree)
1
2
3
4
5
6
7
8
9




                                   

                           

                          
                 
 
#include <errno.h>
#include <unistd.h>

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