diff options
author | H. Peter Anvin <hpa@linux.intel.com> | 2011-11-10 16:09:32 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@linux.intel.com> | 2011-11-10 16:09:32 -0800 |
commit | 6d6580f93811792db90d0937e6c388ee1f7d6536 (patch) | |
tree | 7bc2c73a1f43fc278fcc747f95894d5796184a9e | |
parent | 0bd96856278cf511d17122ea4a4de0431da378a1 (diff) | |
download | autogen-6d6580f93811792db90d0937e6c388ee1f7d6536.tar.gz autogen-6d6580f93811792db90d0937e6c388ee1f7d6536.tar.xz autogen-6d6580f93811792db90d0937e6c388ee1f7d6536.zip |
Add missing file nosyscall.c
-rw-r--r-- | arch/x86/ia32/nosyscall.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/x86/ia32/nosyscall.c b/arch/x86/ia32/nosyscall.c new file mode 100644 index 00000000000..51ecd5b4e78 --- /dev/null +++ b/arch/x86/ia32/nosyscall.c @@ -0,0 +1,7 @@ +#include <linux/kernel.h> +#include <linux/errno.h> + +long compat_ni_syscall(void) +{ + return -ENOSYS; +} |