| 830 | |
| 831 | |
| 832 | LUAMOD_API int luaopen_io (lua_State *L) { |
| 833 | luaL_newlib(L, iolib); /* new module */ |
| 834 | createmeta(L); |
| 835 | /* create (and set) default files */ |
| 836 | createstdfile(L, stdin, IO_INPUT, "stdin"); |
| 837 | createstdfile(L, stdout, IO_OUTPUT, "stdout"); |
| 838 | createstdfile(L, stderr, NULL, "stderr"); |
| 839 | return 1; |
| 840 | } |
| 841 |
nothing calls this directly
no test coverage detected