summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2012-04-25 08:59:30 +0100
committerJon TURNEY <jon.turney@dronecode.org.uk>2014-05-02 14:41:22 +0100
commit69808be1112b16e1b1dc0b6a08285aca941ba490 (patch)
treeb02432fb7b6ae3a53fa64eb0d7cfda7aa93e24c1
parent2441c79c33d9a2f298b32e75fa624db7d174c5bb (diff)
glean: Add missing stdlib.h include for system() call.
Include is necessary when building with WIN32_LEAN_AND_MEAN.
-rw-r--r--src/glean/environ.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glean/environ.cpp b/src/glean/environ.cpp
index 050d9da..b8af554 100644
--- a/src/glean/environ.cpp
+++ b/src/glean/environ.cpp
@@ -44,6 +44,7 @@
#elif defined(__MS__)
#include <stdio.h>
+#include <stdlib.h>
#include <sys/stat.h>
#endif