summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJohn McCall <rjmccall@apple.com>2009-08-17 21:07:37 +0000
committerJohn McCall <rjmccall@apple.com>2009-08-17 21:07:37 +0000
commit46c81814127e69e33ce60a461fbb02d6cd4657ac (patch)
tree3fa5d70a4046202516cfb876fd5542bd8b266fda /docs
parent4c77dfa20c6cf96ef571a4ab5ff253e9b79a86c2 (diff)
downloadllvm-46c81814127e69e33ce60a461fbb02d6cd4657ac.tar.gz
llvm-46c81814127e69e33ce60a461fbb02d6cd4657ac.tar.bz2
llvm-46c81814127e69e33ce60a461fbb02d6cd4657ac.tar.xz
#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')
-rw-r--r--docs/tutorial/LangImpl2.html1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/tutorial/LangImpl2.html b/docs/tutorial/LangImpl2.html
index 018d0be760..30215608a8 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 &lt;cstdio&gt;
+#include &lt;cstdlib&gt;
#include &lt;string&gt;
#include &lt;map&gt;
#include &lt;vector&gt;