aboutsummaryrefslogtreecommitdiff
path: root/src/stat/mkfifoat.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stat/mkfifoat.c')
-rw-r--r--src/stat/mkfifoat.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stat/mkfifoat.c b/src/stat/mkfifoat.c
index d3a1f970..dae33257 100644
--- a/src/stat/mkfifoat.c
+++ b/src/stat/mkfifoat.c
@@ -4,3 +4,11 @@ int mkfifoat(int fd, const char *path, mode_t mode)
{
return mknodat(fd, path, mode | S_IFIFO, 0);
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif