commit 783ba75129543eeeab1fda5eec2e6df63031cf23
parent d49e4dd752928c5869a75c444b503060b2634968
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Mon, 19 Jan 1998 17:49:28 -0200
needs "stdlib.h" (calls "exit")
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lua.c b/lua.c
@@ -1,11 +1,12 @@
/*
-** $Id: lua.c,v 1.11 1997/12/22 18:05:23 roberto Exp roberto $
+** $Id: lua.c,v 1.12 1997/12/22 20:03:50 roberto Exp roberto $
** Lua stand-alone interpreter
** See Copyright Notice in lua.h
*/
#include <stdio.h>
+#include <stdlib.h>
#include <string.h>
#include "lua.h"