diff options
author | 2014-01-19 10:25:45 +0000 | |
---|---|---|
committer | 2014-01-19 10:25:45 +0000 | |
commit | 8d8385d1a8dad4ef5a3683c39247c4ed9a5f873a (patch) | |
tree | 609b2ac99e772b8e7532d481afb70c61beefd7d0 | |
parent | Forget to remove the prototype for set_lids() after removing the definition (diff) | |
download | wireguard-openbsd-8d8385d1a8dad4ef5a3683c39247c4ed9a5f873a.tar.xz wireguard-openbsd-8d8385d1a8dad4ef5a3683c39247c4ed9a5f873a.zip |
Only i386 needs mquery; delete the static inlines from amd64 and hppa
-rw-r--r-- | libexec/ld.so/amd64/archdep.h | 10 | ||||
-rw-r--r-- | libexec/ld.so/hppa/archdep.h | 10 |
2 files changed, 2 insertions, 18 deletions
diff --git a/libexec/ld.so/amd64/archdep.h b/libexec/ld.so/amd64/archdep.h index 364123f0476..aba43d8be83 100644 --- a/libexec/ld.so/amd64/archdep.h +++ b/libexec/ld.so/amd64/archdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: archdep.h,v 1.4 2010/01/02 12:16:35 kettenis Exp $ */ +/* $OpenBSD: archdep.h,v 1.5 2014/01/19 10:25:45 guenther Exp $ */ /* * Copyright (c) 1998 Per Fogelstrom, Opsycon AB @@ -50,14 +50,6 @@ _dl_mmap(void *addr, unsigned int len, unsigned int prot, flags, fd, 0, offset)); } -static inline void * -_dl_mquery(void *addr, unsigned int len, unsigned int prot, - unsigned int flags, int fd, off_t offset) -{ - return((void *)_dl__syscall((quad_t)SYS_mquery, addr, len, prot, - flags, fd, 0, offset)); -} - static inline void RELOC_REL(Elf64_Rel *r, const Elf64_Sym *s, Elf64_Addr *p, unsigned long v) diff --git a/libexec/ld.so/hppa/archdep.h b/libexec/ld.so/hppa/archdep.h index fba6a235d2c..b298f599757 100644 --- a/libexec/ld.so/hppa/archdep.h +++ b/libexec/ld.so/hppa/archdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: archdep.h,v 1.8 2013/12/24 10:53:37 kettenis Exp $ */ +/* $OpenBSD: archdep.h,v 1.9 2014/01/19 10:25:45 guenther Exp $ */ /* * Copyright (c) 2004 Michael Shalayeff @@ -51,14 +51,6 @@ _dl_mmap(void *addr, unsigned int len, unsigned int prot, flags, fd, 0, offset)); } -static inline void * -_dl_mquery(void *addr, unsigned int len, unsigned int prot, - unsigned int flags, int fd, off_t offset) -{ - return((void *)_dl__syscall((quad_t)SYS_mquery, addr, len, prot, - flags, fd, 0, offset)); -} - static inline void RELOC_REL(Elf_Rel *r, const Elf_Sym *s, Elf_Addr *p, unsigned long v) |