diff options
Diffstat (limited to 'src/unistd/link.c')
-rw-r--r-- | src/unistd/link.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/link.c b/src/unistd/link.c index feec18e5..b4290edd 100644 --- a/src/unistd/link.c +++ b/src/unistd/link.c @@ -10,3 +10,11 @@ int link(const char *existing, const char *new) return syscall(SYS_linkat, AT_FDCWD, existing, AT_FDCWD, new, 0); #endif } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |