diff options
author | 2000-03-18 21:39:15 +0000 | |
---|---|---|
committer | 2000-03-18 21:39:15 +0000 | |
commit | fce0229eb136084b51e065a18c9799e0fe342e8e (patch) | |
tree | 2085cbc9cdd896b3a14dd289038a4a0aefdf8262 /sys/compat/linux/linux_syscallargs.h | |
parent | Implement vfork (ok jasoni). (diff) | |
download | wireguard-openbsd-fce0229eb136084b51e065a18c9799e0fe342e8e.tar.xz wireguard-openbsd-fce0229eb136084b51e065a18c9799e0fe342e8e.zip |
Sync.
Diffstat (limited to 'sys/compat/linux/linux_syscallargs.h')
-rw-r--r-- | sys/compat/linux/linux_syscallargs.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/compat/linux/linux_syscallargs.h b/sys/compat/linux/linux_syscallargs.h index 897e2be37ad..9cf66c0c302 100644 --- a/sys/compat/linux/linux_syscallargs.h +++ b/sys/compat/linux/linux_syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: linux_syscallargs.h,v 1.17 2000/03/13 08:18:56 jasoni Exp $ */ +/* $OpenBSD: linux_syscallargs.h,v 1.18 2000/03/18 21:39:16 ian Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.17 2000/03/13 08:18:30 jasoni Exp + * created from OpenBSD: syscalls.master,v 1.18 2000/03/18 21:36:02 ian Exp */ #define syscallarg(x) union { x datum; register_t pad; } @@ -550,3 +550,4 @@ int linux_sys_rt_sigprocmask __P((struct proc *, void *, register_t *)); int linux_sys_rt_sigpending __P((struct proc *, void *, register_t *)); int linux_sys_rt_sigsuspend __P((struct proc *, void *, register_t *)); int linux_sys_chown __P((struct proc *, void *, register_t *)); +int sys_vfork __P((struct proc *, void *, register_t *)); |