xref: /freebsd/contrib/libcxxrt/terminate.cc (revision b1d046441de9053152c7cf03d6b60d9882687e1b)
1 #include <stdlib.h>
2 
3 namespace std
4 {
5 	/**
6 	 * Stub implementation of std::terminate.  Used when the STL implementation
7 	 * doesn't provide one.
8 	 */
9 	__attribute__((weak))
10 	void terminate()
11 	{
12 		abort();
13 	}
14 }
15