summary refs log tree commit diff
path: root/sysdeps/stub/munmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/stub/munmap.c')
-rw-r--r--sysdeps/stub/munmap.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sysdeps/stub/munmap.c b/sysdeps/stub/munmap.c
index c12889a1e5..ba61e0f97a 100644
--- a/sysdeps/stub/munmap.c
+++ b/sysdeps/stub/munmap.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1994 Free Software Foundation, Inc.
+/* Copyright (C) 1994, 1995 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
@@ -24,9 +24,10 @@ Cambridge, MA 02139, USA.  */
    bytes.  Returns 0 if successful, -1 for errors (and sets errno).  */
 
 int
-munmap (caddr_t addr, size_t len)
+__munmap (caddr_t addr, size_t len)
 {
   errno = ENOSYS;
   return -1;
 }
-	
+
+weak_alias (__munmap, munmap)