diff --git a/src/core/io.c b/src/core/io.c index 0a6534d4..3540dd40 100644 --- a/src/core/io.c +++ b/src/core/io.c @@ -416,4 +416,7 @@ void janet_lib_io(JanetTable *env) { janet_core_def(env, "stdin", makef(stdin, IO_READ | IO_NOT_CLOSEABLE | IO_SERIALIZABLE), JDOC("The standard input file.")); + + janet_register_abstract_type(&cfun_io_filetype); + }