blob: c6ff71605ee17216a5d8b68a00c1d3541c53610f [file] [log] [blame]
#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);
}