diff options
Diffstat (limited to 'lua.h')
| -rw-r--r-- | lua.h | 7 |
1 files changed, 4 insertions, 3 deletions
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: lua.h,v 1.156 2002/08/30 20:00:59 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.157 2002/09/02 20:00:41 roberto Exp roberto $ |
| 3 | ** Lua - An Extensible Extension Language | 3 | ** Lua - An Extensible Extension Language |
| 4 | ** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil | 4 | ** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil |
| 5 | ** http://www.lua.org mailto:info@lua.org | 5 | ** http://www.lua.org mailto:info@lua.org |
| @@ -86,9 +86,10 @@ typedef const char * (*lua_Chunkreader) (lua_State *L, void *ud, size_t *sz); | |||
| 86 | 86 | ||
| 87 | /* type of Numbers in Lua */ | 87 | /* type of Numbers in Lua */ |
| 88 | #ifndef LUA_NUMBER | 88 | #ifndef LUA_NUMBER |
| 89 | #define LUA_NUMBER double | 89 | typedef double lua_Number; |
| 90 | #endif | 90 | #else |
| 91 | typedef LUA_NUMBER lua_Number; | 91 | typedef LUA_NUMBER lua_Number; |
| 92 | #endif | ||
| 92 | 93 | ||
| 93 | 94 | ||
| 94 | /* mark for all API functions */ | 95 | /* mark for all API functions */ |
