summaryrefslogtreecommitdiffstats
path: root/sysif.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-04-15 06:39:40 -0700
committerKaz Kylheku <kaz@kylheku.com>2016-04-15 06:39:40 -0700
commitb1e62b22783b3fb3b32ccfae2f41c08433190538 (patch)
treeba194cf71b0b60336438baa5c4f0f3300fa3a31c /sysif.c
parent49d7f282199277cedfc90ab50d95efac6c8c87bd (diff)
downloadtxr-b1e62b22783b3fb3b32ccfae2f41c08433190538.tar.gz
txr-b1e62b22783b3fb3b32ccfae2f41c08433190538.tar.bz2
txr-b1e62b22783b3fb3b32ccfae2f41c08433190538.zip
Expose stat_to_struct outside of sysif.
* sysif.c (stat_to_struct): Change to external linkage. * sysif.h (stat_to_struct): Declared.
Diffstat (limited to 'sysif.c')
-rw-r--r--sysif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysif.c b/sysif.c
index 1ad5db35..1b9b07d3 100644
--- a/sysif.c
+++ b/sysif.c
@@ -608,7 +608,7 @@ static val stat_to_list(struct stat st)
nao);
}
-static val stat_to_struct(struct stat st)
+val stat_to_struct(struct stat st)
{
args_decl(args, ARGS_MIN);
val strct = make_struct(stat_s, nil, args);