diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2017-08-27 21:59:53 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2017-08-27 21:59:53 +0000 |
commit | 7f5398b1f45a6105b16eeb5672676e0ada0e6d37 (patch) | |
tree | 7ed36e3384bee80b519d279b09da113e8d23a450 /libexec/ld.so/tib.c | |
parent | 1f33e8fe5544ebb65e81ef2b4c9a5924e3e5a7f2 (diff) |
Replace heaps of hand-written syscall stubs with a simpler framework
which is largely MI.
ok visa kettenis
Diffstat (limited to 'libexec/ld.so/tib.c')
-rw-r--r-- | libexec/ld.so/tib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/ld.so/tib.c b/libexec/ld.so/tib.c index a909488ebbe..b13c1b74da8 100644 --- a/libexec/ld.so/tib.c +++ b/libexec/ld.so/tib.c @@ -32,7 +32,7 @@ #include "syscall.h" /* If we need the syscall, use our local syscall definition */ -#define __set_tcb(tcb) _dl_set_tcb(tcb) +#define __set_tcb(tcb) _dl___set_tcb(tcb) __dso_hidden void *allocate_tib(size_t); |