diff options
author | Bruce Evans <bde@FreeBSD.org> | 1997-12-30 08:38:34 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1997-12-30 08:38:34 +0000 |
commit | d03815ca62b5b30e978ce30851d30ffc79337ebb (patch) | |
tree | cd22324099db7c1f1e9ea8c34a5d91c67e77ff20 /share/examples/lkm/syscall/module/newsyscall.c | |
parent | 1948b335baa0638c0dd6b0921426aea217abebbf (diff) |
Remove `retval' from syscall functions here too.
Notes
Notes:
svn path=/head/; revision=32119
Diffstat (limited to 'share/examples/lkm/syscall/module/newsyscall.c')
-rw-r--r-- | share/examples/lkm/syscall/module/newsyscall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/examples/lkm/syscall/module/newsyscall.c b/share/examples/lkm/syscall/module/newsyscall.c index bff2b9c639c5..44b6fab775a6 100644 --- a/share/examples/lkm/syscall/module/newsyscall.c +++ b/share/examples/lkm/syscall/module/newsyscall.c @@ -43,7 +43,7 @@ #include <sys/lkm.h> /* XXX this should be in a header. */ -extern int mycall __P((struct proc *p, void *uap, int retval[])); +extern int mycall __P((struct proc *p, void *uap)); /* XXX these should be generated by MOD_SYSCALL(). */ static int newsyscall_load __P((struct lkm_table *lkmtp, int cmd)); |