aboutsummaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-06-06 10:30:25 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-06-06 10:30:25 -0300
commitd987cf1f812b131788029d6de0c81ed64020e522 (patch)
treed67230d0bd44584fc1616349ca14fb6ebfc94418 /llex.h
parenteca9fa02d2887d06cee5e2f742f7e3031ac76a51 (diff)
downloadlua-d987cf1f812b131788029d6de0c81ed64020e522.tar.gz
lua-d987cf1f812b131788029d6de0c81ed64020e522.tar.bz2
lua-d987cf1f812b131788029d6de0c81ed64020e522.zip
new mark LUAI_DATA for extern data
Diffstat (limited to 'llex.h')
-rw-r--r--llex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/llex.h b/llex.h
index 835a6879..a62a20e0 100644
--- a/llex.h
+++ b/llex.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.h,v 1.53 2005/04/07 13:09:07 roberto Exp roberto $ 2** $Id: llex.h,v 1.54 2005/04/25 19:24:10 roberto Exp roberto $
3** Lexical Analyzer 3** Lexical Analyzer
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -37,7 +37,7 @@ enum RESERVED {
37 37
38 38
39/* array with token `names' */ 39/* array with token `names' */
40extern const char *const luaX_tokens []; 40LUAI_DATA const char *const luaX_tokens [];
41 41
42 42
43typedef union { 43typedef union {