Files
jsix/src/libraries/libc/stdlib/getenv.cpp
Justin C. Miller d7bf156b30 [libc] Move getenv back to stdlib
Why was I trying to put getenv in stdio? It belongs in stdlib.
2022-02-12 01:29:57 -08:00

4 lines
73 B
C++

#include <stdlib.h>
char * getenv(const char *name) { return nullptr; }