diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2003-08-23 20:01:58 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2003-08-23 20:01:58 +0000 |
commit | 39e263c714e0a0315bb931c11405d0987cefce5f (patch) | |
tree | 1268d632693dc31d14a3e786e2df64ea0e94728d /bin/systrace | |
parent | 58d9702cea30de41b591311643c9260a0b6c5e56 (diff) |
teach systrace about "aout" emul; henning@ ok.
Diffstat (limited to 'bin/systrace')
-rw-r--r-- | bin/systrace/openbsd-syscalls.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/systrace/openbsd-syscalls.c b/bin/systrace/openbsd-syscalls.c index 99b4ec201db..90f7ce32477 100644 --- a/bin/systrace/openbsd-syscalls.c +++ b/bin/systrace/openbsd-syscalls.c @@ -1,4 +1,4 @@ -/* $OpenBSD: openbsd-syscalls.c,v 1.20 2003/07/19 11:48:58 sturm Exp $ */ +/* $OpenBSD: openbsd-syscalls.c,v 1.21 2003/08/23 20:01:57 fgsch Exp $ */ /* * Copyright 2002 Niels Provos <provos@citi.umich.edu> * All rights reserved. @@ -93,6 +93,7 @@ struct emulation { static struct emulation emulations[] = { { "native", syscallnames, SYS_MAXSYSCALL }, + { "aout", syscallnames, SYS_MAXSYSCALL }, { "hpux", hpux_syscallnames, HPUX_SYS_MAXSYSCALL }, { "ibcs2", ibcs2_syscallnames, IBCS2_SYS_MAXSYSCALL }, { "linux", linux_syscallnames, LINUX_SYS_MAXSYSCALL }, |