aboutsummaryrefslogtreecommitdiff
path: root/src/stat/stat.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stat/stat.c')
-rw-r--r--src/stat/stat.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stat/stat.c b/src/stat/stat.c
index 23570e7a..cd9ccdfe 100644
--- a/src/stat/stat.c
+++ b/src/stat/stat.c
@@ -5,3 +5,11 @@ int stat(const char *restrict path, struct stat *restrict buf)
{
return fstatat(AT_FDCWD, path, buf, 0);
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif