aboutsummaryrefslogtreecommitdiff
path: root/lref.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-02-08 14:39:42 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-02-08 14:39:42 -0200
commit74f1c3d025c6d8a714454470a953f383a1c6a641 (patch)
treecc89dfa109c64ed928217d777959ffc7ace12501 /lref.h
parent1f691a4fcd32b706c79e4c8cbff17c6ae985bc34 (diff)
downloadlua-74f1c3d025c6d8a714454470a953f383a1c6a641.tar.gz
lua-74f1c3d025c6d8a714454470a953f383a1c6a641.tar.bz2
lua-74f1c3d025c6d8a714454470a953f383a1c6a641.zip
small changes for "clean C"
Diffstat (limited to 'lref.h')
-rw-r--r--lref.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lref.h b/lref.h
index 1d140d38..4aec948d 100644
--- a/lref.h
+++ b/lref.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lref.h,v 1.4 1999/12/14 18:33:29 roberto Exp roberto $ 2** $Id: lref.h,v 1.5 1999/12/27 17:33:22 roberto Exp roberto $
3** reference mechanism 3** reference mechanism
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -16,7 +16,7 @@
16#define LOCK -4 16#define LOCK -4
17 17
18 18
19struct ref { 19struct Ref {
20 TObject o; 20 TObject o;
21 int st; /* can be LOCK, HOLD, COLLECTED, or next (for free list) */ 21 int st; /* can be LOCK, HOLD, COLLECTED, or next (for free list) */
22}; 22};