1 # $NetBSD: c-functions.help,v 1.1 2008/01/19 22:37:47 rillig Exp $
3 # The mremap function is not covered by POSIX, so operating systems are
4 # free to define the function as they want:
6 # NetBSD: void *mremap(void *oldp, size_t oldsize,
7 # void *newp, size_t newsize, int flags);
8 # Linux: void *mremap(void *old_address, size_t old_size,
9 # size_t new_size, unsigned long flags);
13 # The mount function is probably different on all operating systems. For
14 # some operating systems, it even changes between releases:
16 # NetBSD < 4.99.24: int mount(const char *type, const char *dir,
17 # int flags, void *data);
18 # NetBSD >= 4.99.24: int mount(const char *type, const char *dir,
19 # int flags, void *data, size_t data_len);
21 # See net/coda/patches/patch-ac 1.3 for an example.