summaryrefslogtreecommitdiffstats
path: root/src/manifest_parser.cc
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2013-06-22 00:40:40 (GMT)
committerNico Weber <nicolasweber@gmx.de>2013-06-22 00:40:40 (GMT)
commit5ed055b3f7f5088c3ffc79d19dac14fe15b2afb8 (patch)
tree028a28ff9b54507eb817bb6aecb0cd02c583d13c /src/manifest_parser.cc
parent75918b84f78aaca2133f21622374019cd2ef17ee (diff)
downloadNinja-5ed055b3f7f5088c3ffc79d19dac14fe15b2afb8.zip
Ninja-5ed055b3f7f5088c3ffc79d19dac14fe15b2afb8.tar.gz
Ninja-5ed055b3f7f5088c3ffc79d19dac14fe15b2afb8.tar.bz2
Add stdlib.h include for atol().
This attempts to fix issue #600. `man atol` claims that atol() is in stdlib.h, which wasn't included yet.
Diffstat (limited to 'src/manifest_parser.cc')
-rw-r--r--src/manifest_parser.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/manifest_parser.cc b/src/manifest_parser.cc
index 3593567..d742331 100644
--- a/src/manifest_parser.cc
+++ b/src/manifest_parser.cc
@@ -15,6 +15,7 @@
#include "manifest_parser.h"
#include <stdio.h>
+#include <stdlib.h>
#include <vector>
#include "graph.h"