fxlibc/src/stdlib/getenv.c

8 lines
89 B
C

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