diff options
Diffstat (limited to 'include/sys/mman.h')
-rw-r--r-- | include/sys/mman.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sys/mman.h b/include/sys/mman.h index d8e2c7a93..609f78a73 100644 --- a/include/sys/mman.h +++ b/include/sys/mman.h @@ -76,6 +76,7 @@ extern void *mmap64 (void *__addr, size_t __len, int __prot, /* Deallocate any mapping for the region starting at ADDR and extending LEN bytes. Returns 0 if successful, -1 for errors (and sets errno). */ extern int munmap (void *__addr, size_t __len) __THROW; +libc_hidden_proto(munmap) /* Change the memory protection of the region starting at ADDR and extending LEN bytes to PROT. Returns 0 if successful, -1 for errors @@ -157,6 +158,7 @@ extern int mincore (void *__start, size_t __len, unsigned char *__vec) resides after a successful call. */ extern void *mremap (void *__addr, size_t __old_len, size_t __new_len, int __flags, ...) __THROW; +libc_hidden_proto(mremap) #ifdef __UCLIBC_LINUX_SPECIFIC__ /* Remap arbitrary pages of a shared backing store within an existing |