diff options
Diffstat (limited to 'sysdeps/unix/mman')
-rw-r--r-- | sysdeps/unix/mman/mmap.S | 6 | ||||
-rw-r--r-- | sysdeps/unix/mman/munmap.S | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/sysdeps/unix/mman/mmap.S b/sysdeps/unix/mman/mmap.S index dd60f43b34..9a9f1cdb6b 100644 --- a/sysdeps/unix/mman/mmap.S +++ b/sysdeps/unix/mman/mmap.S @@ -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 @@ -18,5 +18,7 @@ Cambridge, MA 02139, USA. */ #include <sysdep.h> -SYSCALL (mmap, 5) +SYSCALL__ (mmap, 5) ret + +weak_alias (__mmap, mmap) diff --git a/sysdeps/unix/mman/munmap.S b/sysdeps/unix/mman/munmap.S index 6b1ae163ee..3742a6d2c7 100644 --- a/sysdeps/unix/mman/munmap.S +++ b/sysdeps/unix/mman/munmap.S @@ -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 @@ -18,5 +18,7 @@ Cambridge, MA 02139, USA. */ #include <sysdep.h> -SYSCALL (munmap, 2) +SYSCALL__ (munmap, 2) ret + +weak_alias (__munmap, munmap) |