Skip to content
Snippets Groups Projects
Commit 70530312 authored by Avi Kivity's avatar Avi Kivity
Browse files

libc: implement getenv()

parent 3c3f87c0
No related branches found
No related tags found
No related merge requests found
......@@ -48,3 +48,9 @@ char* realpath(const char* path, char* resolved_path)
strcpy(resolved_path, ret.c_str());
return resolved_path;
}
char* getenv(const char* name)
{
// no environment
return NULL;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment