diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-03-10 11:23:07 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-03-10 11:23:07 -0300 |
commit | 256d1bea08ca12890372c6c53fc191e7b90c5a8e (patch) | |
tree | e731ec849b3f846e31fe06fd41ac2933fea5e01c | |
parent | f2d35bdc7831dce6b1e9fcd639510bdc91488bc2 (diff) | |
download | lua-256d1bea08ca12890372c6c53fc191e7b90c5a8e.tar.gz lua-256d1bea08ca12890372c6c53fc191e7b90c5a8e.tar.bz2 lua-256d1bea08ca12890372c6c53fc191e7b90c5a8e.zip |
missing #include
-rw-r--r-- | ldo.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldo.c,v 1.38 1999/03/05 20:45:01 roberto Exp roberto $ | 2 | ** $Id: ldo.c,v 1.39 1999/03/10 14:19:41 roberto Exp roberto $ |
3 | ** Stack and Call structure of Lua | 3 | ** Stack and Call structure of Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -10,6 +10,7 @@ | |||
10 | #include <stdlib.h> | 10 | #include <stdlib.h> |
11 | #include <string.h> | 11 | #include <string.h> |
12 | 12 | ||
13 | #include "lauxlib.h" | ||
13 | #include "ldo.h" | 14 | #include "ldo.h" |
14 | #include "lfunc.h" | 15 | #include "lfunc.h" |
15 | #include "lgc.h" | 16 | #include "lgc.h" |