summaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua.h b/lua.h
index 591c608a..bf247b4f 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.288 2013/04/26 15:39:25 roberto Exp roberto $ 2** $Id: lua.h,v 1.289 2013/05/14 16:00:11 roberto Exp roberto $
3** Lua - A Scripting Language 3** Lua - A Scripting Language
4** Lua.org, PUC-Rio, Brazil (http://www.lua.org) 4** Lua.org, PUC-Rio, Brazil (http://www.lua.org)
5** See Copyright Notice at the end of this file 5** See Copyright Notice at the end of this file
@@ -61,7 +61,7 @@ typedef int (*lua_CFunction) (lua_State *L);
61*/ 61*/
62typedef const char * (*lua_Reader) (lua_State *L, void *ud, size_t *sz); 62typedef const char * (*lua_Reader) (lua_State *L, void *ud, size_t *sz);
63 63
64typedef int (*lua_Writer) (lua_State *L, const void* p, size_t sz, void* ud); 64typedef int (*lua_Writer) (lua_State *L, const void *p, size_t sz, void *ud);
65 65
66 66
67/* 67/*