aboutsummaryrefslogtreecommitdiff
path: root/llex.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-06-03 11:09:57 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-06-03 11:09:57 -0300
commitff91b355f451c7b7fc286d8ca9bc8613096f497d (patch)
tree4d68b67ebcb9aa91cbdf27cec4529bc148863fcd /llex.c
parent5094c37988a535f665c874c2656a992670981451 (diff)
downloadlua-ff91b355f451c7b7fc286d8ca9bc8613096f497d.tar.gz
lua-ff91b355f451c7b7fc286d8ca9bc8613096f497d.tar.bz2
lua-ff91b355f451c7b7fc286d8ca9bc8613096f497d.zip
no more use of stdio inside the core (except for `tostring'...)
Diffstat (limited to 'llex.c')
-rw-r--r--llex.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/llex.c b/llex.c
index 08beda35..3e308753 100644
--- a/llex.c
+++ b/llex.c
@@ -1,12 +1,11 @@
1/* 1/*
2** $Id: llex.c,v 1.101 2002/05/15 18:57:44 roberto Exp roberto $ 2** $Id: llex.c,v 1.102 2002/05/16 18:39:46 roberto Exp roberto $
3** Lexical Analyzer 3** Lexical Analyzer
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
6 6
7 7
8#include <ctype.h> 8#include <ctype.h>
9#include <stdio.h>
10#include <string.h> 9#include <string.h>
11 10
12#include "lua.h" 11#include "lua.h"