[llvm-commits] [llvm] r79285 - /llvm/trunk/docs/tutorial/LangImpl2.html
John McCall
rjmccall at apple.com
Mon Aug 17 14:07:37 PDT 2009
Author: rjmccall
Date: Mon Aug 17 16:07:37 2009
New Revision: 79285
URL: http://llvm.org/viewvc/llvm-project?rev=79285&view=rev
Log:
#include <cstdlib> in the code listing for strtod.
Modified:
llvm/trunk/docs/tutorial/LangImpl2.html
Modified: llvm/trunk/docs/tutorial/LangImpl2.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/LangImpl2.html?rev=79285&r1=79284&r2=79285&view=diff
==============================================================================
--- llvm/trunk/docs/tutorial/LangImpl2.html (original)
+++ llvm/trunk/docs/tutorial/LangImpl2.html Mon Aug 17 16:07:37 2009
@@ -815,6 +815,7 @@
<div class="doc_code">
<pre>
#include <cstdio>
+#include <cstdlib>
#include <string>
#include <map>
#include <vector>
More information about the llvm-commits
mailing list