include cleanups: remove unused headers and add feature test macros
[musl] / src / internal / syscall_ret.c
1 #include <errno.h>
2
3 long __syscall_ret(unsigned long r)
4 {
5         if (r > -4096UL) {
6                 errno = -r;
7                 return -1;
8         }
9         return r;
10 }