summaryrefslogtreecommitdiff
path: root/userland/libc/stdlib/getenv.c
diff options
context:
space:
mode:
Diffstat (limited to 'userland/libc/stdlib/getenv.c')
-rw-r--r--userland/libc/stdlib/getenv.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/userland/libc/stdlib/getenv.c b/userland/libc/stdlib/getenv.c
index 9a6a4e5..13d871c 100644
--- a/userland/libc/stdlib/getenv.c
+++ b/userland/libc/stdlib/getenv.c
@@ -1,6 +1,7 @@
#include <stdlib.h>
char *getenv(const char *name) {
+ (void)name;
// FIXME
return NULL;
}