configurable macros should live in llimits.h

This commit is contained in:
Roberto Ierusalimschy
2002-03-18 15:16:16 -03:00
parent 58badbab99
commit b7ed502dea
2 changed files with 17 additions and 17 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lobject.h,v 1.125 2002/03/05 12:42:47 roberto Exp roberto $
** $Id: lobject.h,v 1.126 2002/03/11 12:45:00 roberto Exp roberto $
** Type definitions for Lua objects
** See Copyright Notice in lua.h
*/
@@ -12,21 +12,6 @@
#include "lua.h"
#ifndef lua_assert
#define lua_assert(c) /* empty */
#endif
#ifndef UNUSED
#define UNUSED(x) ((void)(x)) /* to avoid warnings */
#endif
#ifndef cast
#define cast(t, exp) ((t)(exp))
#endif
/* tags for values visible from Lua */
#define NUM_TAGS 6