summaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2013-06-07 11:51:10 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2013-06-07 11:51:10 -0300
commitc5069528e1da3d4651f167011404bcf388ba1c71 (patch)
treede0df5cad9b45a58fed1c60e7c31cc3eb5ded461 /lua.h
parent6fb0b1135090b1e4543438c56ae3e444abb5477d (diff)
downloadlua-github-c5069528e1da3d4651f167011404bcf388ba1c71.tar.gz
details ('Type* id' -> 'Type *id')
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 @@
/*
-** $Id: lua.h,v 1.288 2013/04/26 15:39:25 roberto Exp roberto $
+** $Id: lua.h,v 1.289 2013/05/14 16:00:11 roberto Exp roberto $
** Lua - A Scripting Language
** Lua.org, PUC-Rio, Brazil (http://www.lua.org)
** See Copyright Notice at the end of this file
@@ -61,7 +61,7 @@ typedef int (*lua_CFunction) (lua_State *L);
*/
typedef const char * (*lua_Reader) (lua_State *L, void *ud, size_t *sz);
-typedef int (*lua_Writer) (lua_State *L, const void* p, size_t sz, void* ud);
+typedef int (*lua_Writer) (lua_State *L, const void *p, size_t sz, void *ud);
/*