diff options
Diffstat (limited to 'share/examples/lkm/misc/module/misccall.c')
-rw-r--r-- | share/examples/lkm/misc/module/misccall.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/share/examples/lkm/misc/module/misccall.c b/share/examples/lkm/misc/module/misccall.c index 0de01ad97964..03856fd872ed 100644 --- a/share/examples/lkm/misc/module/misccall.c +++ b/share/examples/lkm/misc/module/misccall.c @@ -39,7 +39,7 @@ #include <sys/systm.h> /* XXX this should be in a header. */ -extern int misccall __P((struct proc *p, void *uap, int retval[])); +extern int misccall __P((struct proc *p, void *uap)); /* * This is the actual code for the system call... it can't be static because @@ -56,10 +56,9 @@ extern int misccall __P((struct proc *p, void *uap, int retval[])); * files into a single ".o" file for use by "modload". */ int -misccall( p, uap, retval) +misccall( p, uap) struct proc *p; void *uap; -int retval[]; { /* * Our new system call simply prints a message; it takes no |