diff options
Diffstat (limited to 'luaconf.h')
-rw-r--r-- | luaconf.h | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: luaconf.h,v 1.99 2008/07/11 17:50:31 roberto Exp roberto $ | 2 | ** $Id: luaconf.h,v 1.100 2008/07/18 19:58:10 roberto Exp roberto $ |
3 | ** Configuration file for Lua | 3 | ** Configuration file for Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -221,6 +221,13 @@ | |||
221 | 221 | ||
222 | 222 | ||
223 | /* | 223 | /* |
224 | @@ luai_writestring defines how 'print' prints its results. | ||
225 | ** CHANGE it if your system does not have a useful stdout. | ||
226 | */ | ||
227 | #define luai_writestring(s,l) fwrite((s), sizeof(char), (l), stdout) | ||
228 | |||
229 | |||
230 | /* | ||
224 | ** {================================================================== | 231 | ** {================================================================== |
225 | ** Stand-alone configuration | 232 | ** Stand-alone configuration |
226 | ** =================================================================== | 233 | ** =================================================================== |