diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2004-05-28 18:28:15 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2004-05-28 18:28:15 +0000 |
commit | a7cd8a0dac9cb8621a54f41dd1671f75f2e4865f (patch) | |
tree | 41776dfe297956054ddc04025037d124b806a1f5 /sys/compat/osf1/syscalls.master | |
parent | 6c130e2490332d6bb7f63081681feb45f7c3ea39 (diff) |
ACCOUNTING is optional. found by mpech. ok deraadt
Diffstat (limited to 'sys/compat/osf1/syscalls.master')
-rw-r--r-- | sys/compat/osf1/syscalls.master | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/compat/osf1/syscalls.master b/sys/compat/osf1/syscalls.master index ed1d4bc5270..62c13fcae99 100644 --- a/sys/compat/osf1/syscalls.master +++ b/sys/compat/osf1/syscalls.master @@ -1,4 +1,4 @@ - $OpenBSD: syscalls.master,v 1.9 2003/01/30 03:29:49 millert Exp $ + $OpenBSD: syscalls.master,v 1.10 2004/05/28 18:28:14 tedu Exp $ ; $NetBSD: syscalls.master,v 1.29 1999/05/10 03:33:04 cgd Exp $ ; @(#)syscalls.master 8.1 (Berkeley) 7/19/93 @@ -106,7 +106,11 @@ 48 NOARGS { int sys_sigprocmask(int how, sigset_t mask); } 49 NOARGS { int sys_getlogin(char *namebuf, u_int namelen); } 50 NOARGS { int sys_setlogin(const char *namebuf); } +#ifdef ACCOUNTING 51 NOARGS { int sys_acct(const char *path); } +#else +51 UNIMPL acct +#endif 52 UNIMPL sigpending 53 STD { int osf1_sys_classcntl(int opcode, int arg1, \ int arg2, int arg3); } |