about summary refs log tree commit diff
path: root/sysdeps/stub/mmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/stub/mmap.c')
-rw-r--r--sysdeps/stub/mmap.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/sysdeps/stub/mmap.c b/sysdeps/stub/mmap.c
index 5ee4fa7797..e230c9d8a4 100644
--- a/sysdeps/stub/mmap.c
+++ b/sysdeps/stub/mmap.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
@@ -20,7 +20,7 @@ Cambridge, MA 02139, USA.  */
 #include <sys/mman.h>
 #include <errno.h>
 
-/* Map addresses starting near ADDR and extending for LEN bytes.  from
+/* Map addresses starting near ADDR and extending for LEN bytes.  From
    OFFSET into the file FD describes according to PROT and FLAGS.  If ADDR
    is nonzero, it is the desired mapping address.  If the MAP_FIXED bit is
    set in FLAGS, the mapping will be at ADDR exactly (which must be
@@ -30,9 +30,10 @@ Cambridge, MA 02139, USA.  */
    deallocates any previous mapping for the affected region.  */
 
 caddr_t
-mmap (caddr_t addr, size_t len, int prot, int flags, int fd, off_t offset)
+__mmap (caddr_t addr, size_t len, int prot, int flags, int fd, off_t offset)
 {
   errno = ENOSYS;
   return (caddr_t) -1;
 }
-	
+
+weak_alias (__mmap, mmap)