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

libc: implement putenv()

parent 6ae96391
No related branches found
No related tags found
No related merge requests found
......@@ -60,6 +60,11 @@ char* getenv(const char* name)
return NULL;
}
int putenv(char* string)
{
return 0; // no environent
}
template <typename N>
N strtoN(const char* s, char** e, int base)
{
......
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