| /* | |
| * Adapted from u-boot's arch/arm/lib/eabi_compat.c | |
| * | |
| * Copyright (C) 2017, Red Hat Inc, Andrew Jones <drjones@redhat.com> | |
| * | |
| * This work is licensed under the terms of the GNU GPL, version 2. | |
| */ | |
| #include <libcflat.h> | |
| int raise(int signum __unused) | |
| { | |
| printf("Divide by zero!\n"); | |
| abort(); | |
| return 0; | |
| } | |
| /* Dummy functions to avoid linker complaints */ | |
| void __aeabi_unwind_cpp_pr0(void) | |
| { | |
| } | |
| void __aeabi_unwind_cpp_pr1(void) | |
| { | |
| } |