diff options
Diffstat (limited to 'sysdeps/mach/mprotect.c')
-rw-r--r-- | sysdeps/mach/mprotect.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/mach/mprotect.c b/sysdeps/mach/mprotect.c index 5f1dbe8b5c..9035d5b88c 100644 --- a/sysdeps/mach/mprotect.c +++ b/sysdeps/mach/mprotect.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994 Free Software Foundation, Inc. +/* Copyright (C) 1994, 1996 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 @@ -26,7 +26,7 @@ Cambridge, MA 02139, USA. */ (and sets errno). */ int -mprotect (caddr_t addr, size_t len, int prot) +__mprotect (caddr_t addr, size_t len, int prot) { kern_return_t err; vm_prot_t vmprot; @@ -48,3 +48,4 @@ mprotect (caddr_t addr, size_t len, int prot) } return 0; } +weak_alias (__mprotect, mprotect) |