freebsd-dev/sys/kern/init_sysvec.c
1997-02-22 09:48:43 +00:00

31 lines
416 B
C

/*
* sysentvec for native FreeBSD a.out executable format.
*
* $Id$
*/
#include <sys/types.h>
#include <sys/param.h>
#include <sys/mount.h>
#include <sys/sysent.h>
#include <sys/sysproto.h>
#include <sys/syscall.h>
#include <sys/signalvar.h>
#include <machine/md_var.h>
struct sysentvec aout_sysvec = {
SYS_MAXSYSCALL,
sysent,
0,
0,
0,
0,
0,
0,
sendsig,
sigcode,
&szsigcode,
0,
"FreeBSD a.out"
};