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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/userland/libc/stdlib/getenv.c b/userland/libc/stdlib/getenv.c
index 13d871c..0240d66 100644
--- a/userland/libc/stdlib/getenv.c
+++ b/userland/libc/stdlib/getenv.c
@@ -1,7 +1,7 @@
#include <stdlib.h>
char *getenv(const char *name) {
- (void)name;
- // FIXME
- return NULL;
+ (void)name;
+ // FIXME
+ return NULL;
}