summaryrefslogtreecommitdiffstats
path: root/sysif.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysif.c')
-rw-r--r--sysif.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysif.c b/sysif.c
index 68971468..6f6ce7c0 100644
--- a/sysif.c
+++ b/sysif.c
@@ -660,9 +660,9 @@ static val statl(val path)
return stat_impl(path, w_lstat, lit("lstat"));
}
-static val statf(val stream)
+val statf(val stream)
{
- return stat_impl(stream, w_fstat, lit("lstat"));
+ return stat_impl(stream, w_fstat, lit("fstat"));
}
#if HAVE_PIPE