Furquan Shaikh | 2af76f4 | 2014-04-28 16:39:40 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Utility functions needed for (some) EABI conformant tool chains. |
| 3 | * |
| 4 | * (C) Copyright 2009 Wolfgang Denk <wd@denx.de> |
| 5 | * |
| 6 | * This program is Free Software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License as |
| 8 | * published by the Free Software Foundation; either version 2 of the |
| 9 | * License, or (at your option) any later version. |
Martin Roth | 4af5886 | 2016-01-21 13:15:16 -0700 | [diff] [blame] | 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
Furquan Shaikh | 2af76f4 | 2014-04-28 16:39:40 -0700 | [diff] [blame] | 15 | */ |
| 16 | |
| 17 | #include <console/console.h> |
| 18 | |
| 19 | int raise (int signum) __attribute__((used)); |
| 20 | int raise (int signum) |
| 21 | { |
| 22 | return 0; |
| 23 | } |
| 24 | |
| 25 | void __aeabi_unwind_cpp_pr0(void) __attribute__((used)); |
| 26 | void __aeabi_unwind_cpp_pr0(void) |
| 27 | { |
| 28 | }; |
| 29 | |
| 30 | void __aeabi_unwind_cpp_pr1(void) __attribute__((used)); |
| 31 | void __aeabi_unwind_cpp_pr1(void) |
| 32 | { |
| 33 | }; |