diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2023-02-11 23:07:29 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2023-02-11 23:07:29 +0000 |
commit | 093c867c6043e3af2f4b845860e1e59452286937 (patch) | |
tree | 3225d278651946319a6b9686cf843a1f1645c4ef /sys/kern/syscalls.master | |
parent | 6b3c6d9f392a03c2ed83b3487ed43f174e081efb (diff) |
__syscall() is no longer neccessary since the system calls which needed
it are now unpadded
ok kettenis guenther
Diffstat (limited to 'sys/kern/syscalls.master')
-rw-r--r-- | sys/kern/syscalls.master | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master index 029d06a2b3b..4bb0a8c905b 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -1,4 +1,4 @@ -; $OpenBSD: syscalls.master,v 1.239 2023/01/07 05:24:58 guenther Exp $ +; $OpenBSD: syscalls.master,v 1.240 2023/02/11 23:07:25 deraadt Exp $ ; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $ ; @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -360,7 +360,7 @@ 196 OBSOL ogetdirentries48 197 STD { void *sys_pad_mmap(void *addr, size_t len, int prot, \ int flags, int fd, long pad, off_t pos); } -198 INDIR { quad_t sys___syscall(quad_t num, ...); } +198 OBSOL __syscall 199 STD NOLOCK { off_t sys_pad_lseek(int fd, int pad, off_t offset, \ int whence); } 200 STD { int sys_pad_truncate(const char *path, int pad, \ |