diff options
author | John McCall <rjmccall@apple.com> | 2009-08-17 21:07:37 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2009-08-17 21:07:37 +0000 |
commit | 46c81814127e69e33ce60a461fbb02d6cd4657ac (patch) | |
tree | 3fa5d70a4046202516cfb876fd5542bd8b266fda /docs/tutorial | |
parent | 4c77dfa20c6cf96ef571a4ab5ff253e9b79a86c2 (diff) | |
download | external_llvm-46c81814127e69e33ce60a461fbb02d6cd4657ac.zip external_llvm-46c81814127e69e33ce60a461fbb02d6cd4657ac.tar.gz external_llvm-46c81814127e69e33ce60a461fbb02d6cd4657ac.tar.bz2 |
#include <cstdlib> in the code listing for strtod.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79285 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tutorial')
-rw-r--r-- | docs/tutorial/LangImpl2.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/tutorial/LangImpl2.html b/docs/tutorial/LangImpl2.html index 018d0be..3021560 100644 --- a/docs/tutorial/LangImpl2.html +++ b/docs/tutorial/LangImpl2.html @@ -815,6 +815,7 @@ course.) To build this, just compile with:</p> <div class="doc_code"> <pre> #include <cstdio> +#include <cstdlib> #include <string> #include <map> #include <vector> |