summaryrefslogtreecommitdiff
path: root/userland/libc/stdlib/getenv.c
blob: 0240d669c20868e53f38c775c31f235fde15b2cc (plain)
1
2
3
4
5
6
7
#include <stdlib.h>

char *getenv(const char *name) {
  (void)name;
  // FIXME
  return NULL;
}