diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2015-05-20 13:22:30 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2015-05-20 13:22:30 -0300 |
commit | a71c0ab8613bb8f14c91f9c3fc05e68c9a982206 (patch) | |
tree | 2ea78c8ccdb0469615dd9851488662af7ec538ae | |
parent | 04ba6ea83be2408ddc287db7fe69393bd31d171b (diff) | |
download | lua-a71c0ab8613bb8f14c91f9c3fc05e68c9a982206.tar.gz lua-a71c0ab8613bb8f14c91f9c3fc05e68c9a982206.tar.bz2 lua-a71c0ab8613bb8f14c91f9c3fc05e68c9a982206.zip |
detail (removed useless '#include')
-rw-r--r-- | ltable.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltable.c,v 2.108 2015/03/30 19:51:00 roberto Exp roberto $ | 2 | ** $Id: ltable.c,v 2.109 2015/04/02 21:09:51 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 | */ |
@@ -23,7 +23,6 @@ | |||
23 | ** Hence even when the load factor reaches 100%, performance remains good. | 23 | ** Hence even when the load factor reaches 100%, performance remains good. |
24 | */ | 24 | */ |
25 | 25 | ||
26 | #include <float.h> | ||
27 | #include <math.h> | 26 | #include <math.h> |
28 | #include <limits.h> | 27 | #include <limits.h> |
29 | 28 | ||