summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/csky/__syscall_error.c
blob: 346ce8a9212388b327df1885b98eb45e7b9c46fc (plain)
1
2
3
4
5
6
7
8
9
#include <errno.h>
#include <features.h>

int __syscall_error(int err_no)
{
	__set_errno(-err_no);
	return -1;
}