diff options
author | Nico Weber <nicolasweber@gmx.de> | 2013-06-22 00:42:15 (GMT) |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2013-06-22 00:42:15 (GMT) |
commit | c8ac05c871a22cdd3b41ab76e72544524cedafae (patch) | |
tree | cc5e73901c9b545d27c51e140ccdeb0deecc1506 /src | |
parent | f4bd670da394174f29f9b99843ea6dfe192e6081 (diff) | |
parent | 5ed055b3f7f5088c3ffc79d19dac14fe15b2afb8 (diff) | |
download | Ninja-c8ac05c871a22cdd3b41ab76e72544524cedafae.zip Ninja-c8ac05c871a22cdd3b41ab76e72544524cedafae.tar.gz Ninja-c8ac05c871a22cdd3b41ab76e72544524cedafae.tar.bz2 |
Merge pull request #601 from nico/109fix
Add stdlib.h include for atol().
Diffstat (limited to 'src')
-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" |