mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
16 lines
156 B
C
16 lines
156 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);
|
||
|
}
|
||
|
|