summaryrefslogtreecommitdiff
path: root/sysdeps/mach/mprotect.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/mach/mprotect.c')
-rw-r--r--sysdeps/mach/mprotect.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/mach/mprotect.c b/sysdeps/mach/mprotect.c
index 1031d8b563..2e55f90b78 100644
--- a/sysdeps/mach/mprotect.c
+++ b/sysdeps/mach/mprotect.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1994-2016 Free Software Foundation, Inc.
+/* Copyright (C) 1994-2018 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -25,7 +25,7 @@
(and sets errno). */
int
-__mprotect (__ptr_t addr, size_t len, int prot)
+__mprotect (void *addr, size_t len, int prot)
{
kern_return_t err;
vm_prot_t vmprot;
@@ -47,4 +47,5 @@ __mprotect (__ptr_t addr, size_t len, int prot)
}
return 0;
}
+libc_hidden_def (__mprotect)
weak_alias (__mprotect, mprotect)