summaryrefslogtreecommitdiff
path: root/src/terminate.cc
blob: 663fe52d1d121e1c22e5955d01dd159c2e47c737 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdlib.h>

namespace std
{
	/**
	 * Stub implementation of std::terminate.  Used when the STL implementation
	 * doesn't provide one.
	 */
	__attribute__((weak))
	void terminate()
	{
		abort();
	}
}