aboutsummaryrefslogtreecommitdiff
path: root/lctype.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-06-18 09:51:05 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-06-18 09:51:05 -0300
commitb43300c14f562bcdc1050f2c05e52fac3f6c99b7 (patch)
treeb21fb2577e9f40340f22cbe44648a37f8d16f12f /lctype.h
parentaf70905246acfad225904b64d027e5b01c7b10eb (diff)
downloadlua-b43300c14f562bcdc1050f2c05e52fac3f6c99b7.tar.gz
lua-b43300c14f562bcdc1050f2c05e52fac3f6c99b7.tar.bz2
lua-b43300c14f562bcdc1050f2c05e52fac3f6c99b7.zip
change in 'LUAI_DDEC' to allow variables to be static in 'onelua'
+ change in 'LUAMOD_API' as opening functions do not need to be global
Diffstat (limited to 'lctype.h')
-rw-r--r--lctype.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lctype.h b/lctype.h
index 5dc17013..de1efd51 100644
--- a/lctype.h
+++ b/lctype.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lctype.h,v 1.11 2011/06/27 18:22:46 roberto Exp roberto $ 2** $Id: lctype.h,v 1.12 2011/07/15 12:50:29 roberto Exp roberto $
3** 'ctype' functions for Lua 3** 'ctype' functions for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -68,7 +68,7 @@
68 68
69 69
70/* two more entries for 0 and -1 (EOZ) */ 70/* two more entries for 0 and -1 (EOZ) */
71LUAI_DDEC const lu_byte luai_ctype_[UCHAR_MAX + 2]; 71LUAI_DDEC(const lu_byte luai_ctype_[UCHAR_MAX + 2];)
72 72
73 73
74#else /* }{ */ 74#else /* }{ */