| 817 | |
| 818 | |
| 819 | LUAMOD_API int luaopen_io (lua_State *L) { |
| 820 | luaL_newlib(L, iolib); /* new module */ |
| 821 | createmeta(L); |
| 822 | /* create (and set) default files */ |
| 823 | createstdfile(L, stdin, IO_INPUT, "stdin"); |
| 824 | createstdfile(L, stdout, IO_OUTPUT, "stdout"); |
| 825 | createstdfile(L, stderr, NULL, "stderr"); |
| 826 | return 1; |
| 827 | } |
| 828 |
nothing calls this directly
no test coverage detected