summaryrefslogtreecommitdiff
path: root/lzio.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-06-12 10:52:05 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-06-12 10:52:05 -0300
commit1de5587184eb2d8d9f379c661f77f7e450764894 (patch)
tree9be30539af6392679e56ae3cf336e2d2befc8255 /lzio.c
parent8ca9534d048782af13141874e0d2fec0d0f806af (diff)
downloadlua-github-1de5587184eb2d8d9f379c661f77f7e450764894.tar.gz
`lua.h' is included before any other Lua header file
Diffstat (limited to 'lzio.c')
-rw-r--r--lzio.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/lzio.c b/lzio.c
index cecd16a1..c523ece5 100644
--- a/lzio.c
+++ b/lzio.c
@@ -1,5 +1,5 @@
/*
-** $Id: lzio.c,v 1.11 2000/03/03 14:58:26 roberto Exp roberto $
+** $Id: lzio.c,v 1.12 2000/05/24 13:54:49 roberto Exp roberto $
** a generic input stream interface
** See Copyright Notice in lua.h
*/
@@ -9,6 +9,8 @@
#include <stdio.h>
#include <string.h>
+#include "lua.h"
+
#include "lzio.h"