-/* $OpenBSD: miscmod.c,v 1.3 2000/03/02 14:46:36 todd Exp $ */
+/* $OpenBSD: miscmod.c,v 1.4 2008/08/03 21:31:53 kettenis Exp $ */
/*
* Makefile for miscmod
*
* have 0 arguments to our system call.
*/
static struct sysent newent = {
- 0, 0, misccall /* # of args, args size, fn pointer*/
+ 0, 0, 0, misccall /* # of args, args size, flags, fn pointer*/
};
/*
-/* $OpenBSD: newsyscall.c,v 1.2 2000/03/02 14:46:38 todd Exp $ */
+/* $OpenBSD: newsyscall.c,v 1.3 2008/08/03 21:31:53 kettenis Exp $ */
/*
* Makefile for newsyscall
*
* have 0 arguments to our system call.
*/
static struct sysent newent = {
- 0, 0, mycall /* # of args, args size, fn. pointer */
+ 0, 0, 0, mycall /* # of args, args size, flags, fn. pointer */
};
MOD_SYSCALL( "newsyscall", -1, &newent)