This commit is contained in:
Roberto Ierusalimschy
1997-12-23 17:24:19 -02:00
parent 807ba6301c
commit 541e722360
3 changed files with 12 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lobject.h,v 1.10 1997/11/27 18:25:06 roberto Exp roberto $
** $Id: lobject.h,v 1.11 1997/12/15 16:17:20 roberto Exp roberto $
** Type definitions for Lua objects
** See Copyright Notice in lua.h
*/
@@ -13,10 +13,16 @@
#include <limits.h>
/*
** "real" is the type "number" of Lua
** GREP LUA_NUMBER to change that
*/
#ifndef real
#define real float
#endif
#define Byte lua_Byte /* some systems have Byte as a predefined type */
typedef unsigned char Byte; /* unsigned 8 bits */