* rtti.c (get_tinfo_fn_dynamic): If this function is called an
[official-gcc.git] / libstdc++ / stdexcepti.cc
blob3b03acd63f44c5a6b2e10129a4ca0444c4bbf92b
1 // Implementation file for Exception Support for -*- C++ -*-
2 // This file is part of the GNU ANSI C++ Library.
4 #ifdef __GNUG__
5 #pragma implementation "stdexcept"
6 #endif
8 #include <stdexcept>
10 // Entry points for string.
12 void
13 __out_of_range (const char *s)
15 throw out_of_range (s);
18 void __length_error (const char *s)
20 throw length_error (s);