summaryrefslogtreecommitdiffstats
path: root/sysif.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysif.c')
-rw-r--r--sysif.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sysif.c b/sysif.c
index c8931895..1fe92471 100644
--- a/sysif.c
+++ b/sysif.c
@@ -1078,18 +1078,18 @@ void sysif_init(void)
mem_s = intern(lit("mem"), user_package);
#endif
- make_struct_type(stat_s, nil,
+ make_struct_type(stat_s, nil, nil,
list(dev_s, ino_s, mode_s, nlink_s, uid_s, gid_s,
rdev_s, size_s, blksize_s, blocks_s, atime_s,
- mtime_s, ctime_s, nao), nil, nil);
+ mtime_s, ctime_s, nao), nil, nil, nil);
#if HAVE_PWUID
- make_struct_type(passwd_s, nil,
+ make_struct_type(passwd_s, nil, nil,
list(name_s, passwd_s, uid_s, gid_s,
- gecos_s, dir_s, shell_s, nao), nil, nil);
+ gecos_s, dir_s, shell_s, nao), nil, nil, nil);
#endif
#if HAVE_GRGID
- make_struct_type(group_s, nil,
- list(name_s, passwd_s, gid_s, mem_s, nao), nil, nil);
+ make_struct_type(group_s, nil, nil,
+ list(name_s, passwd_s, gid_s, mem_s, nao), nil, nil, nil);
#endif
reg_fun(intern(lit("errno"), user_package), func_n1o(errno_wrap, 0));