diff options
Diffstat (limited to 'mk')
-rw-r--r-- | mk/help/c-functions.help | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mk/help/c-functions.help b/mk/help/c-functions.help new file mode 100644 index 00000000000..dcd1f9b90b9 --- /dev/null +++ b/mk/help/c-functions.help @@ -0,0 +1,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); +# |