small changes for "clean C"

This commit is contained in:
Roberto Ierusalimschy
2000-02-08 14:39:42 -02:00
parent 1f691a4fcd
commit 74f1c3d025
15 changed files with 69 additions and 65 deletions

4
lref.h
View File

@@ -1,5 +1,5 @@
/*
** $Id: lref.h,v 1.4 1999/12/14 18:33:29 roberto Exp roberto $
** $Id: lref.h,v 1.5 1999/12/27 17:33:22 roberto Exp roberto $
** reference mechanism
** See Copyright Notice in lua.h
*/
@@ -16,7 +16,7 @@
#define LOCK -4
struct ref {
struct Ref {
TObject o;
int st; /* can be LOCK, HOLD, COLLECTED, or next (for free list) */
};