Commit 6735066b authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix getenv

parent 528a7cab
...@@ -135,7 +135,7 @@ static inline lldiv_t lldiv (long long numer, long long denom) ...@@ -135,7 +135,7 @@ static inline lldiv_t lldiv (long long numer, long long denom)
#endif #endif
#ifndef HAVE_GETENV #ifndef HAVE_GETENV
static inline getenv (const char *name) static inline char *getenv (const char *name)
{ {
(void)name; (void)name;
return NULL; return NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment