summaryrefslogtreecommitdiff
path: root/mk/help/c-functions.help
blob: dcd1f9b90b9892f793785b6e6cad1e92cdc08648 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# $NetBSD: c-functions.help,v 1.1 2008/01/19 22:37:47 rillig Exp $

# mremap
#
# The mremap function is not covered by POSIX, so operating systems are
# free to define the function as they want:
#
# NetBSD: void *mremap(void *oldp, size_t oldsize,
#			void *newp, size_t newsize, int flags);
# Linux: void *mremap(void *old_address, size_t old_size,
#			size_t new_size, unsigned long flags);
#