diff options
Diffstat (limited to 'src/unistd/symlinkat.c')
-rw-r--r-- | src/unistd/symlinkat.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/symlinkat.c b/src/unistd/symlinkat.c index d1c59b4d..9b81ad90 100644 --- a/src/unistd/symlinkat.c +++ b/src/unistd/symlinkat.c @@ -5,3 +5,11 @@ int symlinkat(const char *existing, int fd, const char *new) { return syscall(SYS_symlinkat, existing, fd, new); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |