Hurd: Fix port deallocation on mknod error.
[glibc.git] / include / sys / mman.h
blob0a0e4a6533df9cd9153004967935766c7cc02ee6
1 #ifndef _SYS_MMAN_H
2 #include <misc/sys/mman.h>
4 #ifndef _ISOMAC
5 /* Now define the internal interfaces. */
6 extern void *__mmap (void *__addr, size_t __len, int __prot,
7 int __flags, int __fd, __off_t __offset);
8 extern void *__mmap64 (void *__addr, size_t __len, int __prot,
9 int __flags, int __fd, __off64_t __offset);
10 extern int __munmap (void *__addr, size_t __len);
11 extern int __mprotect (void *__addr, size_t __len, int __prot);
13 /* This one is Linux specific. */
14 extern void *__mremap (void *__addr, size_t __old_len,
15 size_t __new_len, int __flags, ...);
17 libc_hidden_proto (madvise);
18 #endif
20 #endif