mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
e79a7fccfb
Move compat_ni_syscall out of ia32entry.S and into its own .c file. Although this is a trivial function, it is not performance-critical, and this will simplify further cleanups. Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
7 lines
102 B
C
7 lines
102 B
C
#include <linux/kernel.h>
|
|
#include <linux/errno.h>
|
|
|
|
long compat_ni_syscall(void)
|
|
{
|
|
return -ENOSYS;
|
|
}
|