summaryrefslogtreecommitdiff
path: root/llex.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-12-02 14:41:29 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-12-02 14:41:29 -0200
commitb097076678a9ca637df9dae0089314acbb884dda (patch)
tree1233fa31e53c0328f8cd123edb2ea6308679831d /llex.c
parent8223ff473f3ffe782629fb1ba9ce1f96efeb7fd4 (diff)
downloadlua-github-b097076678a9ca637df9dae0089314acbb884dda.tar.gz
missing include
Diffstat (limited to 'llex.c')
-rw-r--r--llex.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/llex.c b/llex.c
index f9264cf0..c9250706 100644
--- a/llex.c
+++ b/llex.c
@@ -1,11 +1,12 @@
/*
-** $Id: llex.c,v 1.43 1999/11/09 17:59:35 roberto Exp roberto $
+** $Id: llex.c,v 1.44 1999/11/22 13:12:07 roberto Exp roberto $
** Lexical Analyzer
** See Copyright Notice in lua.h
*/
#include <ctype.h>
+#include <stdio.h>
#include <string.h>
#define LUA_REENTRANT