Browse Source

needs to include `stdlib.h' to access `getenv'

Roberto Ierusalimschy 21 years ago
parent
commit
cdcb236747
1 changed files with 2 additions and 1 deletions
  1. 2 1
      loadlib.c

+ 2 - 1
loadlib.c

@@ -1,5 +1,5 @@
 /*
 /*
-** $Id: loadlib.c,v 1.9 2004/11/11 15:42:57 roberto Exp roberto $
+** $Id: loadlib.c,v 1.10 2004/11/18 19:53:49 roberto Exp roberto $
 ** Dynamic library loader for Lua
 ** Dynamic library loader for Lua
 ** See Copyright Notice in lua.h
 ** See Copyright Notice in lua.h
 *
 *
@@ -26,6 +26,7 @@
 */
 */
 
 
 
 
+#include <stdlib.h>
 #include <string.h>
 #include <string.h>