| 561 | } |
| 562 | |
| 563 | static int Lio_write(lua_State *L) { |
| 564 | int res; |
| 565 | (void)setmode(fileno(stdout), O_BINARY); |
| 566 | res = io_write(L, stdout, 1); |
| 567 | fflush(stdout); |
| 568 | (void)setmode(fileno(stdout), O_TEXT); |
| 569 | return res; |
| 570 | } |
| 571 | |
| 572 | static int Lio_dump(lua_State *L) { |
| 573 | int res; |
nothing calls this directly
no test coverage detected