blob: 79b201758a4d2a9db8e31f8bac26a372a5a7e327 [file] [log] [blame]
Furquan Shaikh2af76f42014-04-28 16:39:40 -07001/*
Martin Roth96c075a2019-07-28 19:50:52 -06002 * This file is part of the coreboot project.
Furquan Shaikh2af76f42014-04-28 16:39:40 -07003 *
4 * This program is Free Software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2 of the
7 * License, or (at your option) any later version.
Martin Roth4af58862016-01-21 13:15:16 -07008 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Martin Roth96c075a2019-07-28 19:50:52 -060013 *
14 * Utility functions needed for (some) EABI conformant tool chains.
Furquan Shaikh2af76f42014-04-28 16:39:40 -070015 */
16
Furquan Shaikh2af76f42014-04-28 16:39:40 -070017int raise (int signum) __attribute__((used));
18int raise (int signum)
19{
20 return 0;
21}
22
23void __aeabi_unwind_cpp_pr0(void) __attribute__((used));
24void __aeabi_unwind_cpp_pr0(void)
25{
26};
27
28void __aeabi_unwind_cpp_pr1(void) __attribute__((used));
29void __aeabi_unwind_cpp_pr1(void)
30{
31};