From 89261c4c9fdc9554cc72af94d4808fdd957bd7ce Mon Sep 17 00:00:00 2001 From: peter Date: Wed, 14 Jul 2004 00:03:30 +0000 Subject: Unmapped syscalls should be NOPROTO so that we don't get a duplicate prototype. (kldunloadf in this case) --- sys/compat/freebsd32/syscalls.master | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/compat/freebsd32/syscalls.master b/sys/compat/freebsd32/syscalls.master index a4f195f..1babf95 100644 --- a/sys/compat/freebsd32/syscalls.master +++ b/sys/compat/freebsd32/syscalls.master @@ -609,4 +609,4 @@ 441 UNIMPL ksem_timedwait 442 MNOPROTO { int thr_suspend(const struct timespec *timeout); } 443 MNOPROTO { int thr_wake(long id); } -444 MSTD { int kldunloadf(int fileid, int flags); } +444 MNOPROTO { int kldunloadf(int fileid, int flags); } -- cgit v1.1