diff options
author | Nico Weber <nicolasweber@gmx.de> | 2013-06-22 00:40:40 (GMT) |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2013-06-22 00:40:40 (GMT) |
commit | 5ed055b3f7f5088c3ffc79d19dac14fe15b2afb8 (patch) | |
tree | 028a28ff9b54507eb817bb6aecb0cd02c583d13c | |
parent | 75918b84f78aaca2133f21622374019cd2ef17ee (diff) | |
download | Ninja-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.
-rw-r--r-- | src/manifest_parser.cc | 1 |
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" |