diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2004-11-19 13:52:12 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2004-11-19 13:52:12 -0200 |
commit | cdcb236747a728e3ef0855aa16a42b73e7a9a6c6 (patch) | |
tree | 1caae3b4366546b238995eac8ea003dc848dbde3 | |
parent | 9be5844713036f89483c8f47dfaa45a1d52eb70f (diff) | |
download | lua-cdcb236747a728e3ef0855aa16a42b73e7a9a6c6.tar.gz lua-cdcb236747a728e3ef0855aa16a42b73e7a9a6c6.tar.bz2 lua-cdcb236747a728e3ef0855aa16a42b73e7a9a6c6.zip |
needs to include `stdlib.h' to access `getenv'
-rw-r--r-- | loadlib.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: loadlib.c,v 1.9 2004/11/11 15:42:57 roberto Exp roberto $ | 2 | ** $Id: loadlib.c,v 1.10 2004/11/18 19:53:49 roberto Exp roberto $ |
3 | ** Dynamic library loader for Lua | 3 | ** Dynamic library loader for Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | * | 5 | * |
@@ -26,6 +26,7 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | 28 | ||
29 | #include <stdlib.h> | ||
29 | #include <string.h> | 30 | #include <string.h> |
30 | 31 | ||
31 | 32 | ||