Include mach_syscallargs.h to (hopefully) get MACH_SYS_MAXSYSARGS.

This commit is contained in:
dsl 2007-12-11 08:06:16 +00:00
parent 02af069558
commit a5766b890b
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: mach_syscall.c,v 1.23 2007/12/10 22:28:45 dsl Exp $ */
/* $NetBSD: mach_syscall.c,v 1.24 2007/12/11 08:06:16 dsl Exp $ */
/*-
* Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: mach_syscall.c,v 1.23 2007/12/10 22:28:45 dsl Exp $");
__KERNEL_RCSID(0, "$NetBSD: mach_syscall.c,v 1.24 2007/12/11 08:06:16 dsl Exp $");
#include "opt_vm86.h"
@ -54,6 +54,7 @@ __KERNEL_RCSID(0, "$NetBSD: mach_syscall.c,v 1.23 2007/12/10 22:28:45 dsl Exp $"
#include <machine/psl.h>
#include <machine/userret.h>
#include <compat/mach/mach_syscall.h>
#include <compat/mach/mach_syscallargs.h>
void mach_syscall_intern(struct proc *);
void mach_syscall_plain(struct trapframe *);