aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-03-02 14:27:50 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-03-02 14:27:50 -0300
commit7b84f9e65c39542d16dc2b24bdfe5c07496f2042 (patch)
treea2f17d3ee9d40155bb12dbc096aa16a6414641fd /lstate.h
parent1e40b4dc615b7838305ea738bdd8e069adc0180f (diff)
downloadlua-7b84f9e65c39542d16dc2b24bdfe5c07496f2042.tar.gz
lua-7b84f9e65c39542d16dc2b24bdfe5c07496f2042.tar.bz2
lua-7b84f9e65c39542d16dc2b24bdfe5c07496f2042.zip
lower-case for macros with arguments
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/lstate.h b/lstate.h
index 757d46c3..21348211 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 1.52 2001/02/23 17:17:25 roberto Exp roberto $ 2** $Id: lstate.h,v 1.53 2001/02/23 20:30:01 roberto Exp roberto $
3** Global State 3** Global State
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -16,12 +16,12 @@
16** macros that control all entries and exits from Lua core machine 16** macros that control all entries and exits from Lua core machine
17** (mainly for thread syncronization) 17** (mainly for thread syncronization)
18*/ 18*/
19#ifndef LUA_LOCK 19#ifndef lua_lock
20#define LUA_LOCK(L) ((void) 0) 20#define lua_lock(L) ((void) 0)
21#endif 21#endif
22 22
23#ifndef LUA_UNLOCK 23#ifndef lua_unlock
24#define LUA_UNLOCK(L) ((void) 0) 24#define lua_unlock(L) ((void) 0)
25#endif 25#endif
26 26
27/* 27/*