diff options
Diffstat (limited to 'src/mman/mremap.c')
-rw-r--r-- | src/mman/mremap.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mman/mremap.c b/src/mman/mremap.c index cc6991a6..c1d7c0df 100644 --- a/src/mman/mremap.c +++ b/src/mman/mremap.c @@ -30,3 +30,11 @@ void *__mremap(void *old_addr, size_t old_len, size_t new_len, int flags, ...) } weak_alias(__mremap, mremap); + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |