diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-04-19 17:41:07 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-04-19 17:41:07 +0000 |
commit | 2592d1ec8d6d664830057536c43ff85c957ca63f (patch) | |
tree | b984ea5143b03f89cc7a3bb69642dd3b930183ab /include | |
parent | 7ab174ed447f1c83855e1d36294b3fb15675ff9b (diff) | |
download | glibc-2592d1ec8d6d664830057536c43ff85c957ca63f.tar.gz glibc-2592d1ec8d6d664830057536c43ff85c957ca63f.tar.xz glibc-2592d1ec8d6d664830057536c43ff85c957ca63f.zip |
* include/sys/mman.h: Mark madvise hidden.
Diffstat (limited to 'include')
-rw-r--r-- | include/sys/mman.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/sys/mman.h b/include/sys/mman.h index 8c07a4e2c6..a4687b30f7 100644 --- a/include/sys/mman.h +++ b/include/sys/mman.h @@ -12,4 +12,7 @@ extern int __mprotect (void *__addr, size_t __len, int __prot); /* This one is Linux specific. */ extern void *__mremap (void *__addr, size_t __old_len, size_t __new_len, int __flags, ...); + +libc_hidden_proto (madvise); + #endif |