diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-01-19 17:49:49 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-01-19 17:49:49 -0200 |
commit | 783ba75129543eeeab1fda5eec2e6df63031cf23 (patch) | |
tree | 0ceefbb7deb5118baba7c06defb9fc896ec47125 | |
parent | d49e4dd752928c5869a75c444b503060b2634968 (diff) | |
download | lua-783ba75129543eeeab1fda5eec2e6df63031cf23.tar.gz lua-783ba75129543eeeab1fda5eec2e6df63031cf23.tar.bz2 lua-783ba75129543eeeab1fda5eec2e6df63031cf23.zip |
needs "stdlib.h" (calls "exit")
-rw-r--r-- | lua.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,11 +1,12 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.c,v 1.11 1997/12/22 18:05:23 roberto Exp roberto $ | 2 | ** $Id: lua.c,v 1.12 1997/12/22 20:03:50 roberto Exp roberto $ |
3 | ** Lua stand-alone interpreter | 3 | ** Lua stand-alone interpreter |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
6 | 6 | ||
7 | 7 | ||
8 | #include <stdio.h> | 8 | #include <stdio.h> |
9 | #include <stdlib.h> | ||
9 | #include <string.h> | 10 | #include <string.h> |
10 | 11 | ||
11 | #include "lua.h" | 12 | #include "lua.h" |