diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-06-08 19:12:04 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-06-08 19:12:04 +0000 |
commit | 6202dc46832397ea470c453f9ff9a636a5f1d96e (patch) | |
tree | 4435b4413e838d54ed8a706b21f0a710c7462622 /libc/sysdeps/linux/common/mremap.c | |
parent | 24f8b4932ab554e0639fbdb43598a5b39929297c (diff) |
need local prototype to make things happy
Diffstat (limited to 'libc/sysdeps/linux/common/mremap.c')
-rw-r--r-- | libc/sysdeps/linux/common/mremap.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/mremap.c b/libc/sysdeps/linux/common/mremap.c index cbd890272..5499c0975 100644 --- a/libc/sysdeps/linux/common/mremap.c +++ b/libc/sysdeps/linux/common/mremap.c @@ -13,6 +13,8 @@ #include <sys/mman.h> #undef mremap +void *mremap(void *, size_t, size_t, int, void *); + libc_hidden_proto(mremap) _syscall5(void *, mremap, void *, old_address, size_t, old_size, size_t, new_size, int, may_move, void *, new_address); |