mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 17:12:06 +00:00
8 lines
102 B
C
8 lines
102 B
C
|
#include <linux/kernel.h>
|
||
|
#include <linux/errno.h>
|
||
|
|
||
|
long compat_ni_syscall(void)
|
||
|
{
|
||
|
return -ENOSYS;
|
||
|
}
|