diff options
Diffstat (limited to 'userland/libc/stdlib/getenv.c')
-rw-r--r-- | userland/libc/stdlib/getenv.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/userland/libc/stdlib/getenv.c b/userland/libc/stdlib/getenv.c new file mode 100644 index 0000000..9a6a4e5 --- /dev/null +++ b/userland/libc/stdlib/getenv.c @@ -0,0 +1,6 @@ +#include <stdlib.h> + +char *getenv(const char *name) { + // FIXME + return NULL; +} |