diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-10-19 23:13:39 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-10-19 23:13:39 +0000 |
commit | 63756b017855ae5c31df7b8166e10e0410402f2e (patch) | |
tree | cdffa9ed9e62206f2532d7b8a57671f09c46c926 /lib | |
parent | 4253fd8a4d8567187accda27e999d8b2ba8d5bbe (diff) |
Remove old tame() stub
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/Symbols.list | 2 | ||||
-rw-r--r-- | lib/libc/sys/Makefile.inc | 4 | ||||
-rw-r--r-- | lib/libc/sys/tame.c | 16 |
3 files changed, 2 insertions, 20 deletions
diff --git a/lib/libc/Symbols.list b/lib/libc/Symbols.list index 87186ac0f22..3c32bac4966 100644 --- a/lib/libc/Symbols.list +++ b/lib/libc/Symbols.list @@ -230,7 +230,6 @@ _thread_sys_symlinkat _thread_sys_sync _thread_sys_sysarch _thread_sys_sysctl -_thread_sys_tame _thread_sys_truncate _thread_sys_umask _thread_sys_unlink @@ -427,7 +426,6 @@ symlinkat sync sysarch syscall -tame timer_create timer_delete timer_getoverrun diff --git a/lib/libc/sys/Makefile.inc b/lib/libc/sys/Makefile.inc index 98f7f4062f3..09b56d98efd 100644 --- a/lib/libc/sys/Makefile.inc +++ b/lib/libc/sys/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.132 2015/10/18 00:36:20 deraadt Exp $ +# $OpenBSD: Makefile.inc,v 1.133 2015/10/19 23:13:38 deraadt Exp $ # $NetBSD: Makefile.inc,v 1.35 1995/10/16 23:49:07 jtc Exp $ # @(#)Makefile.inc 8.1 (Berkeley) 6/17/93 @@ -17,7 +17,7 @@ SRCS+= posix_madvise.c w_fork.c # with old syscall interfaces. SRCS+= ftruncate.c lseek.c mquery.c mmap.c ptrace.c semctl.c truncate.c \ timer_create.c timer_delete.c timer_getoverrun.c timer_gettime.c \ - timer_settime.c pread.c preadv.c pwrite.c pwritev.c tame.c + timer_settime.c pread.c preadv.c pwrite.c pwritev.c # stack protector helper functions SRCS+= stack_protector.c diff --git a/lib/libc/sys/tame.c b/lib/libc/sys/tame.c deleted file mode 100644 index 077e1698edb..00000000000 --- a/lib/libc/sys/tame.c +++ /dev/null @@ -1,16 +0,0 @@ -/* $OpenBSD: tame.c,v 1.3 2015/10/09 06:10:57 deraadt Exp $ */ -/* - * Written by Artur Grabowski <art@openbsd.org> Public Domain - */ - -#include <sys/types.h> -#include <sys/syscall.h> -#include <unistd.h> - -int tame(const char *req, const char **paths); - -int -tame(const char *req, const char **paths) -{ - return (pledge(req, paths)); -} |