1 // Implementation file for Exception Support for -*- C++ -*-
2 // This file is part of the GNU ANSI C++ Library.
5 #pragma implementation "stdexcept"
10 // Entry points for string.
13 __out_of_range (const char *s
)
15 throw std::out_of_range (s
);
18 void __length_error (const char *s
)
20 throw std::length_error (s
);