summary refs log tree commit diff
path: root/sysdeps/mach/mprotect.c
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2017-09-12 01:34:19 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2017-09-12 01:34:19 +0200
commita166531fdf601560a0005479427f60d3173f8257 (patch)
tree238f328a341b9fe533ca1a125c7ccb5ac3fa2a44 /sysdeps/mach/mprotect.c
parent4b7d1efb51a529a1391e7326ef90cb51139d7eb6 (diff)
downloadglibc-a166531fdf601560a0005479427f60d3173f8257.tar.gz
glibc-a166531fdf601560a0005479427f60d3173f8257.tar.xz
glibc-a166531fdf601560a0005479427f60d3173f8257.zip
hurd: Fix build without NO_HIDDEN
	* posix/sched_primax.c (__sched_get_priority_max): Add
	libc_hidden_def.
	* posix/sched_primin.c (__sched_get_priority_min): Likewise.
	* sysdeps/mach/hurd/mmap.c (__mmap): Likewise.
	* sysdeps/mach/hurd/mmap64.c (__mmap64): Likewise.
	* sysdeps/mach/hurd/mprotect.c (__mprotect): Likewise.
	* sysdeps/mach/hurd/munmap.c (__munmap): Likewise.
	* sysdeps/mach/hurd/dl-sysdep.c (__GI___getpid,
	__GI___strtoul_internal, __GI_____strtoul_internal, __GI___chk_fail,
	__GI___fortify_fail, __GI___assert_fail, __GI___assert_perror_fail):
	Add aliases.
Diffstat (limited to 'sysdeps/mach/mprotect.c')
-rw-r--r--sysdeps/mach/mprotect.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sysdeps/mach/mprotect.c b/sysdeps/mach/mprotect.c
index 84a72850ac..680905703d 100644
--- a/sysdeps/mach/mprotect.c
+++ b/sysdeps/mach/mprotect.c
@@ -47,4 +47,5 @@ __mprotect (void *addr, size_t len, int prot)
     }
   return 0;
 }
+libc_hidden_def (__mprotect)
 weak_alias (__mprotect, mprotect)