diff options
Diffstat (limited to 'src/stdio/remove.c')
-rw-r--r-- | src/stdio/remove.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdio/remove.c b/src/stdio/remove.c index 942e301a..9a3270dc 100644 --- a/src/stdio/remove.c +++ b/src/stdio/remove.c @@ -17,3 +17,11 @@ int remove(const char *path) #endif return __syscall_ret(r); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |