Remove dead longjmperror.

This used to be used by the ARM longjmp implementation, but hasn't been in
libc.so for as long as we've used a linker script.

Bug: N/A
Test: builds
Change-Id: I3dff4d154d5e317955c349c9eaa08b982cbf0285
This commit is contained in:
Elliott Hughes 2017-08-23 15:40:03 -07:00
parent 73c23ead42
commit 8f0c87e21f

View file

@ -39,7 +39,3 @@ void __assert(const char* file, int line, const char* failed_expression) {
void __assert2(const char* file, int line, const char* function, const char* failed_expression) {
async_safe_fatal("%s:%d: %s: assertion \"%s\" failed", file, line, function, failed_expression);
}
extern "C" __LIBC_HIDDEN__ void longjmperror() {
async_safe_fatal("longjmp botch");
}