aboutsummaryrefslogtreecommitdiff
path: root/luaconf.h
diff options
context:
space:
mode:
Diffstat (limited to 'luaconf.h')
-rw-r--r--luaconf.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/luaconf.h b/luaconf.h
index 24d8da52..4f116cd3 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -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** ===================================================================