eris: get rid of hooks for luai_writestring.

This commit is contained in:
2021-10-21 13:49:28 -04:00
parent 1a25fed15f
commit 6a95f6deb5
4 changed files with 3 additions and 30 deletions

View File

@@ -83,15 +83,6 @@
#endif
void luai_writestring(const char *s, size_t len) {
fwrite((s), sizeof(char), (len), stdout);
}
void luai_writeline() {
fwrite("\n", sizeof(char), 1, stdout);
fflush(stdout);
}
static lua_State *globalL = NULL;
static const char *progname = LUA_PROGNAME;