lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 256d1bea08ca12890372c6c53fc191e7b90c5a8e
parent f2d35bdc7831dce6b1e9fcd639510bdc91488bc2
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Wed, 10 Mar 1999 11:22:45 -0300

missing #include

Diffstat:
Mldo.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ldo.c b/ldo.c @@ -1,5 +1,5 @@ /* -** $Id: ldo.c,v 1.38 1999/03/05 20:45:01 roberto Exp roberto $ +** $Id: ldo.c,v 1.39 1999/03/10 14:19:41 roberto Exp roberto $ ** Stack and Call structure of Lua ** See Copyright Notice in lua.h */ @@ -10,6 +10,7 @@ #include <stdlib.h> #include <string.h> +#include "lauxlib.h" #include "ldo.h" #include "lfunc.h" #include "lgc.h"