plan9port/src/lib9/getenv.c
rsc 2277c5d7bb Small tweaks
Lots of new code imported.
2004-03-21 04:33:13 +00:00

26 lines
281 B
C

#include <u.h>
#define NOPLAN9DEFINES
#include <libc.h>
char*
p9getenv(char *s)
{
char *t;
t = getenv(s);
if(t == 0)
return 0;
return strdup(t);
}
int
p9putenv(char *s, char *v)
{
char *t;
t = smprint("%s=%s", s, v);
if(t == nil)
return -1;
putenv(t);
return 0;
}