aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-11-19 13:52:12 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-11-19 13:52:12 -0200
commitcdcb236747a728e3ef0855aa16a42b73e7a9a6c6 (patch)
tree1caae3b4366546b238995eac8ea003dc848dbde3
parent9be5844713036f89483c8f47dfaa45a1d52eb70f (diff)
downloadlua-cdcb236747a728e3ef0855aa16a42b73e7a9a6c6.tar.gz
lua-cdcb236747a728e3ef0855aa16a42b73e7a9a6c6.tar.bz2
lua-cdcb236747a728e3ef0855aa16a42b73e7a9a6c6.zip
needs to include `stdlib.h' to access `getenv'
-rw-r--r--loadlib.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/loadlib.c b/loadlib.c
index dabeaeba..b6e747af 100644
--- a/loadlib.c
+++ b/loadlib.c
@@ -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