diff options
Diffstat (limited to 'src/stat/lstat.c')
-rw-r--r-- | src/stat/lstat.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stat/lstat.c b/src/stat/lstat.c index 6822fcae..38ef5948 100644 --- a/src/stat/lstat.c +++ b/src/stat/lstat.c @@ -5,3 +5,11 @@ int lstat(const char *restrict path, struct stat *restrict buf) { return fstatat(AT_FDCWD, path, buf, AT_SYMLINK_NOFOLLOW); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |