diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-09-23 06:41:47 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-09-23 06:41:47 -0700 |
commit | 1067252f091ca438d19929523baaa0f8bf6a51cb (patch) | |
tree | b29d524068a9a9a36e311c1e86bc5de84543bbe8 /sysif.c | |
parent | d5ec0bb0b9ec7f5f585d4dca3f16b29b3d43503b (diff) | |
download | txr-1067252f091ca438d19929523baaa0f8bf6a51cb.tar.gz txr-1067252f091ca438d19929523baaa0f8bf6a51cb.tar.bz2 txr-1067252f091ca438d19929523baaa0f8bf6a51cb.zip |
statf becomes external.
* sysif.c (statf): Linkage changed to
external. Also, fixed wrong name being passed
down to stat_impl.
* sysif.h (statf): Declaration updated.
Diffstat (limited to 'sysif.c')
-rw-r--r-- | sysif.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |