linux/arch/x86/ia32/nosyscall.c

8 lines
102 B
C

#include <linux/kernel.h>
#include <linux/errno.h>
long compat_ni_syscall(void)
{
return -ENOSYS;
}