diff options
Diffstat (limited to 'src/unistd/renameat.c')
-rw-r--r-- | src/unistd/renameat.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/renameat.c b/src/unistd/renameat.c index c3b40a25..e0e83541 100644 --- a/src/unistd/renameat.c +++ b/src/unistd/renameat.c @@ -9,3 +9,11 @@ int renameat(int oldfd, const char *old, int newfd, const char *new) return syscall(SYS_renameat2, oldfd, old, newfd, new, 0); #endif } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |