소스 검색

needs "stdlib.h" (calls "exit")

Roberto Ierusalimschy 27 년 전
부모
커밋
783ba75129
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      lua.c

+ 2 - 1
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"