diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-01-01 22:37:05 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-01-01 22:37:05 +0100 |
commit | 86fb2d323eea968b55805459cab497c69b3344b8 (patch) | |
tree | 0c39ee4aac614cca19290fed50919cfdf4829c29 /utils.h | |
parent | e4f960ca74af4a89743bb5266423b13e3d1b6235 (diff) |
fix clearenv() on mac os x
Diffstat (limited to 'utils.h')
-rw-r--r-- | utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -42,7 +42,7 @@ static inline void clearenv(void) { extern char **environ; - environ = NULL; + *environ = NULL; } #endif |