1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

(getenv): Use <stdlib.h> for prototype.

This commit is contained in:
Kevin Ryde 2003-08-12 20:23:35 +00:00
parent 4d332f190c
commit 6a4d17af96

View file

@ -22,6 +22,7 @@
#endif
#include <errno.h>
#include <stdlib.h> /* for getenv */
#include "libguile/_scm.h"
@ -74,7 +75,6 @@ SCM_DEFINE (scm_system, "system", 0, 1, 0,
#undef FUNC_NAME
#endif /* HAVE_SYSTEM */
extern char *getenv();
SCM_DEFINE (scm_getenv, "getenv", 1, 0, 0,
(SCM nam),
"Looks up the string @var{name} in the current environment. The return\n"