From 62aaf2691eec3053cacc5f3c456cbc2ac23ad23a Mon Sep 17 00:00:00 2001 From: martin Date: Sun, 30 Sep 2001 18:57:43 +0000 Subject: [PATCH] Make i386 kernels compile again. fcntl64 was still marked UNIMPL, but the implementation existed, causing a missing prototype warning. XXX I have no clue if this is the correct fix - someone able to test this please review it! --- sys/compat/linux/arch/i386/syscalls.master | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/compat/linux/arch/i386/syscalls.master b/sys/compat/linux/arch/i386/syscalls.master index 6c56cc1140e3..dae9c2b776c9 100644 --- a/sys/compat/linux/arch/i386/syscalls.master +++ b/sys/compat/linux/arch/i386/syscalls.master @@ -1,4 +1,4 @@ - $NetBSD: syscalls.master,v 1.58 2001/05/30 11:37:26 mrg Exp $ + $NetBSD: syscalls.master,v 1.59 2001/09/30 18:57:43 martin Exp $ ; @(#)syscalls.master 8.1 (Berkeley) 7/19/93 @@ -358,4 +358,4 @@ 218 UNIMPL mincore 219 UNIMPL madvise 220 UNIMPL getdents64 -221 UNIMPL fcntl64 +221 STD { int linux_sys_fcntl64(int fd, int cmd, long arg); }