diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-06-06 10:30:25 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-06-06 10:30:25 -0300 |
commit | d987cf1f812b131788029d6de0c81ed64020e522 (patch) | |
tree | d67230d0bd44584fc1616349ca14fb6ebfc94418 /lobject.h | |
parent | eca9fa02d2887d06cee5e2f742f7e3031ac76a51 (diff) | |
download | lua-d987cf1f812b131788029d6de0c81ed64020e522.tar.gz lua-d987cf1f812b131788029d6de0c81ed64020e522.tar.bz2 lua-d987cf1f812b131788029d6de0c81ed64020e522.zip |
new mark LUAI_DATA for extern data
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 2.13 2005/05/05 20:47:02 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 2.14 2005/05/31 14:25:18 roberto Exp roberto $ |
3 | ** Type definitions for Lua objects | 3 | ** Type definitions for Lua objects |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -357,7 +357,7 @@ typedef struct Table { | |||
357 | 357 | ||
358 | 358 | ||
359 | 359 | ||
360 | extern const TValue luaO_nilobject; | 360 | LUAI_DATA const TValue luaO_nilobject; |
361 | 361 | ||
362 | #define ceillog2(x) (luaO_log2((x)-1) + 1) | 362 | #define ceillog2(x) (luaO_log2((x)-1) + 1) |
363 | 363 | ||