aboutsummaryrefslogtreecommitdiff
path: root/lstring.c
diff options
context:
space:
mode:
Diffstat (limited to 'lstring.c')
-rw-r--r--lstring.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lstring.c b/lstring.c
index ebae208a..c265d3d4 100644
--- a/lstring.c
+++ b/lstring.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstring.c,v 1.36 2000/05/10 16:33:20 roberto Exp roberto $ 2** $Id: lstring.c,v 1.37 2000/05/24 13:54:49 roberto Exp roberto $
3** String table (keeps all strings handled by Lua) 3** String table (keeps all strings handled by Lua)
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -9,11 +9,12 @@
9 9
10#define LUA_REENTRANT 10#define LUA_REENTRANT
11 11
12#include "lua.h"
13
12#include "lmem.h" 14#include "lmem.h"
13#include "lobject.h" 15#include "lobject.h"
14#include "lstate.h" 16#include "lstate.h"
15#include "lstring.h" 17#include "lstring.h"
16#include "lua.h"
17 18
18 19
19 20