summaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/lobject.h b/lobject.h
index a7286927..6637631a 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.h,v 1.128 2002/03/25 17:47:14 roberto Exp roberto $ 2** $Id: lobject.h,v 1.129 2002/04/05 18:54:31 roberto Exp roberto $
3** Type definitions for Lua objects 3** Type definitions for Lua objects
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -230,6 +230,15 @@ typedef struct Table {
230#define sizearray(t) ((t)->sizearray) 230#define sizearray(t) ((t)->sizearray)
231 231
232 232
233/*
234** masks for comparison results
235*/
236#define CMP_EQ 1
237#define CMP_LT 2
238#define CMP_GT 4
239#define CMP_N 8 /* not comparable values (e.g. NaN) */
240
241
233extern const TObject luaO_nilobject; 242extern const TObject luaO_nilobject;
234 243
235int luaO_log2 (unsigned int x); 244int luaO_log2 (unsigned int x);