Fixed surplus newlines on output with Lua 5.1.

This commit is contained in:
Johny Mattsson 2021-08-30 17:54:23 +10:00
parent ba36857c50
commit 4c21bd6b9a
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@
** model but changing `fputs' to put the strings at a proper place
** (a console window or a log file, for instance).
*/
#ifdef LUA_CROSS_COMPILER
#if !defined(LUA_USE_ESP8266)
#undef puts
#define puts(s) printf("%s",s)
#endif