coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
eabi_compat.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3  * Utility functions needed for (some) EABI conformant tool chains.
4  */
5 
6 int raise (int signum) __attribute__((used));
7 int raise (int signum)
8 {
9  return 0;
10 }
11 
12 void __aeabi_unwind_cpp_pr0(void) __attribute__((used));
14 {
15 };
16 
17 void __aeabi_unwind_cpp_pr1(void) __attribute__((used));
19 {
20 };
void __aeabi_unwind_cpp_pr1(void)
Definition: eabi_compat.c:22
void __aeabi_unwind_cpp_pr0(void)
Definition: eabi_compat.c:17