blob: b443e0045cb994cf1547476d368b04eccd568c06 [file] [log] [blame]
Furquan Shaikh2af76f42014-04-28 16:39:40 -07001/*
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 Roth4af58862016-01-21 13:15:16 -070010 *
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 Shaikh2af76f42014-04-28 16:39:40 -070015 */
16
17#include <console/console.h>
18
19int raise (int signum) __attribute__((used));
20int raise (int signum)
21{
22 return 0;
23}
24
25void __aeabi_unwind_cpp_pr0(void) __attribute__((used));
26void __aeabi_unwind_cpp_pr0(void)
27{
28};
29
30void __aeabi_unwind_cpp_pr1(void) __attribute__((used));
31void __aeabi_unwind_cpp_pr1(void)
32{
33};