Commit a8ddeb78 by Benjamin Kosnik Committed by Benjamin Kosnik

stdheader.cc: Add cstdlib include.

2008-12-22  Benjamin Kosnik  <bkoz@redhat.com>

	* doc/doxygen/stdheader.cc: Add cstdlib include.
	* doc/doxygen/user.cfg.in: Regenerate for doxygen 1.5.7.

From-SVN: r142897
parent 70e352ae
2008-12-22 Benjamin Kosnik <bkoz@redhat.com>
* doc/doxygen/stdheader.cc: Add cstdlib.
* doc/doxygen/user.cfg.in: Regenerate for doxygen 1.5.7.
2008-12-21 Andrew Pinski <pinskia@gmail.com> 2008-12-21 Andrew Pinski <pinskia@gmail.com>
PR target/38300 PR target/38300
......
...@@ -11,6 +11,7 @@ const char* const usage = ...@@ -11,6 +11,7 @@ const char* const usage =
"Takes no command-line arguments.\n" "Takes no command-line arguments.\n"
"\n"; "\n";
#include <cstdlib>
#include <string> #include <string>
#include <map> #include <map>
#include <iostream> #include <iostream>
...@@ -157,7 +158,7 @@ int main (int argc, char**) ...@@ -157,7 +158,7 @@ int main (int argc, char**)
if (argc > 1) if (argc > 1)
{ {
std::cerr << usage; std::cerr << usage;
exit(0); std::exit(0);
} }
init_map(); init_map();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment