summaryrefslogtreecommitdiff
path: root/types.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-02-07 12:13:17 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-02-07 12:13:17 -0200
commit995a9f71885fc1979a9a23edc3c34e19b36e7653 (patch)
tree9fcf09085f4fc5f68a68118c4002b059c0a4e61d /types.h
parenta0ef046ef16e6bbf99fbbe594638593089253483 (diff)
downloadlua-995a9f71885fc1979a9a23edc3c34e19b36e7653.tar.gz
lua-995a9f71885fc1979a9a23edc3c34e19b36e7653.tar.bz2
lua-995a9f71885fc1979a9a23edc3c34e19b36e7653.zip
no more "Bool" type
Diffstat (limited to 'types.h')
-rw-r--r--types.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/types.h b/types.h
index 2d6cfa36..3719f41d 100644
--- a/types.h
+++ b/types.h
@@ -1,6 +1,6 @@
1/* 1/*
2** TeCGraf - PUC-Rio 2** TeCGraf - PUC-Rio
3** $Id: types.h,v 1.2 1994/12/27 20:41:47 celes Exp roberto $ 3** $Id: types.h,v 1.3 1995/02/06 19:32:43 roberto Exp roberto $
4*/ 4*/
5 5
6#ifndef types_h 6#ifndef types_h
@@ -12,8 +12,6 @@
12#define real float 12#define real float
13#endif 13#endif
14 14
15typedef int Bool; /* boolean values */
16
17#define Byte lua_Byte /* some systems have Byte as a predefined type */ 15#define Byte lua_Byte /* some systems have Byte as a predefined type */
18typedef unsigned char Byte; /* unsigned 8 bits */ 16typedef unsigned char Byte; /* unsigned 8 bits */
19 17