Add "pecoff" emulation.

This commit is contained in:
itohy 2000-06-13 00:59:22 +00:00
parent f0abc226bd
commit 07db0e6ae9
1 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: setemul.c,v 1.2 2000/04/10 09:34:18 jdolecek Exp $ */
/* $NetBSD: setemul.c,v 1.3 2000/06/13 00:59:22 itohy Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@ -73,7 +73,7 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: setemul.c,v 1.2 2000/04/10 09:34:18 jdolecek Exp $");
__RCSID("$NetBSD: setemul.c,v 1.3 2000/06/13 00:59:22 itohy Exp $");
#endif /* not lint */
#include <sys/param.h>
@ -143,6 +143,8 @@ static struct emulation emulations[] = {
native_to_svr4_errno, NELEM(native_to_svr4_errno) },
{ "ultrix", ultrix_syscallnames, ULTRIX_SYS_MAXSYSCALL,
NULL, 0 },
{ "pecoff", syscallnames, SYS_MAXSYSCALL,
NULL, 0 },
{ NULL, NULL, 0,
NULL, 0 }
};