diff options
author | Peter Wemm <peter@FreeBSD.org> | 2004-07-14 00:03:30 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 2004-07-14 00:03:30 +0000 |
commit | 1174965ee2706aa59114fdcbfb2a3753106e6bf6 (patch) | |
tree | 60130e2d9753f000023c091a7d0aa022352fae66 /sys/compat/freebsd32 | |
parent | e378b41cb4c59163562f6431ee93afa00942d8af (diff) | |
download | src-1174965ee2706aa59114fdcbfb2a3753106e6bf6.tar.gz src-1174965ee2706aa59114fdcbfb2a3753106e6bf6.zip |
Unmapped syscalls should be NOPROTO so that we don't get a duplicate
prototype. (kldunloadf in this case)
Notes
Notes:
svn path=/head/; revision=132126
Diffstat (limited to 'sys/compat/freebsd32')
-rw-r--r-- | sys/compat/freebsd32/syscalls.master | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/compat/freebsd32/syscalls.master b/sys/compat/freebsd32/syscalls.master index a4f195f74e5c..1babf95361cd 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); } |