diff options
author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-12-23 01:27:39 +0000 |
---|---|---|
committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-12-23 01:27:39 +0000 |
commit | d43030ffb7c126202e425cf949d892f97651ce5d (patch) | |
tree | 9a659d6a8a93e3e9cd25237958160aa949265c5e /libstdc++-v3/doc/doxygen/stdheader.cc | |
parent | 88087e898a921f4adeb8e5612f521e8b47e4587d (diff) |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@142897 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/doc/doxygen/stdheader.cc')
-rw-r--r-- | libstdc++-v3/doc/doxygen/stdheader.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libstdc++-v3/doc/doxygen/stdheader.cc b/libstdc++-v3/doc/doxygen/stdheader.cc index a5145419b04c..8bcb1a059f9d 100644 --- a/libstdc++-v3/doc/doxygen/stdheader.cc +++ b/libstdc++-v3/doc/doxygen/stdheader.cc @@ -11,6 +11,7 @@ const char* const usage = "Takes no command-line arguments.\n" "\n"; +#include <cstdlib> #include <string> #include <map> #include <iostream> @@ -157,7 +158,7 @@ int main (int argc, char**) if (argc > 1) { std::cerr << usage; - exit(0); + std::exit(0); } init_map(); |