diff options
-rw-r--r-- | lua.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.c,v 1.193 2010/10/18 16:06:33 roberto Exp roberto $ | 2 | ** $Id: lua.c,v 1.194 2010/10/25 19:01:37 roberto Exp roberto $ |
3 | ** Lua stand-alone interpreter | 3 | ** Lua stand-alone interpreter |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -185,7 +185,7 @@ static int docall (lua_State *L, int narg, int nres) { | |||
185 | 185 | ||
186 | 186 | ||
187 | static void print_version (void) { | 187 | static void print_version (void) { |
188 | printf("%s\n", LUA_COPYRIGHT); | 188 | luai_writestring(LUA_COPYRIGHT "\n", sizeof(LUA_COPYRIGHT) + 1); |
189 | } | 189 | } |
190 | 190 | ||
191 | 191 | ||