aboutsummaryrefslogtreecommitdiff
path: root/llex.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-12-04 15:38:31 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-12-04 15:38:31 -0200
commit27c6b4d42212eb0da07d9326470220818bb7b75f (patch)
tree8c2617a6a5bb0cfd8bbc75b8aba6e6308a9c8911 /llex.c
parent0bb8eb51517ef63c65fb986d711c3163ad0be38f (diff)
downloadlua-27c6b4d42212eb0da07d9326470220818bb7b75f.tar.gz
lua-27c6b4d42212eb0da07d9326470220818bb7b75f.tar.bz2
lua-27c6b4d42212eb0da07d9326470220818bb7b75f.zip
each .c file defines its own name
Diffstat (limited to 'llex.c')
-rw-r--r--llex.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/llex.c b/llex.c
index 7341dc1d..4b67b2d1 100644
--- a/llex.c
+++ b/llex.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.c,v 1.115 2002/10/22 16:45:52 roberto Exp roberto $ 2** $Id: llex.c,v 1.116 2002/10/23 19:08:13 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*/
@@ -8,6 +8,8 @@
8#include <ctype.h> 8#include <ctype.h>
9#include <string.h> 9#include <string.h>
10 10
11#define llex_c
12
11#include "lua.h" 13#include "lua.h"
12 14
13#include "ldo.h" 15#include "ldo.h"