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/freebsd/syscalls.master | |
parent | 6c130e2490332d6bb7f63081681feb45f7c3ea39 (diff) |
ACCOUNTING is optional. found by mpech. ok deraadt
Diffstat (limited to 'sys/compat/freebsd/syscalls.master')
-rw-r--r-- | sys/compat/freebsd/syscalls.master | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/compat/freebsd/syscalls.master b/sys/compat/freebsd/syscalls.master index 769220f9e89..62ce51d010c 100644 --- a/sys/compat/freebsd/syscalls.master +++ b/sys/compat/freebsd/syscalls.master @@ -1,4 +1,4 @@ - $OpenBSD: syscalls.master,v 1.23 2004/02/17 20:08:43 tedu Exp $ + $OpenBSD: syscalls.master,v 1.24 2004/05/28 18:28:14 tedu Exp $ ; $NetBSD: syscalls.master,v 1.3 1995/10/10 18:28:40 mycroft Exp $ ; from: @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -125,7 +125,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(char *namebuf); } +#ifdef ACCOUNTING 51 NOARGS { int sys_acct(char *path); } +#else +51 UNIMPL acct +#endif 52 NOARGS { int sys_sigpending(void); } 53 NOARGS { int sys_sigaltstack(struct sigaltstack *nss, \ struct sigaltstack *oss); } |