aboutsummaryrefslogtreecommitdiff
path: root/ltable.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-03-08 15:09:16 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-03-08 15:09:16 -0300
commitb5b230d95cdf0b7dbe94ec1a5a8433f93ac2de17 (patch)
tree9cc4873a1a80cb02137ec54abd21ce0a858b19b7 /ltable.c
parent7d57ea70bc975922485d589c8a6d8dedaa0fba02 (diff)
downloadlua-b5b230d95cdf0b7dbe94ec1a5a8433f93ac2de17.tar.gz
lua-b5b230d95cdf0b7dbe94ec1a5a8433f93ac2de17.tar.bz2
lua-b5b230d95cdf0b7dbe94ec1a5a8433f93ac2de17.zip
fewer #include's in luaconf.h
Diffstat (limited to 'ltable.c')
-rw-r--r--ltable.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ltable.c b/ltable.c
index 361facc8..d9c43a7f 100644
--- a/ltable.c
+++ b/ltable.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltable.c,v 2.14 2005/01/05 18:20:51 roberto Exp roberto $ 2** $Id: ltable.c,v 2.15 2005/01/10 18:17:39 roberto Exp roberto $
3** Lua tables (hash) 3** Lua tables (hash)
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -18,6 +18,7 @@
18** Hence even when the load factor reaches 100%, performance remains good. 18** Hence even when the load factor reaches 100%, performance remains good.
19*/ 19*/
20 20
21#include <math.h>
21#include <string.h> 22#include <string.h>
22 23
23#define ltable_c 24#define ltable_c