lower-case for macros with arguments

This commit is contained in:
Roberto Ierusalimschy
2001-03-02 14:27:50 -03:00
parent 1e40b4dc61
commit 7b84f9e65c
10 changed files with 156 additions and 156 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lstate.h,v 1.52 2001/02/23 17:17:25 roberto Exp roberto $
** $Id: lstate.h,v 1.53 2001/02/23 20:30:01 roberto Exp roberto $
** Global State
** See Copyright Notice in lua.h
*/
@@ -16,12 +16,12 @@
** macros that control all entries and exits from Lua core machine
** (mainly for thread syncronization)
*/
#ifndef LUA_LOCK
#define LUA_LOCK(L) ((void) 0)
#ifndef lua_lock
#define lua_lock(L) ((void) 0)
#endif
#ifndef LUA_UNLOCK
#define LUA_UNLOCK(L) ((void) 0)
#ifndef lua_unlock
#define lua_unlock(L) ((void) 0)
#endif
/*