blob: c27c54e35006615893af99fed2c62c95bec2ba48 [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.
10 */
11
12#include <console/console.h>
13
14int raise (int signum) __attribute__((used));
15int raise (int signum)
16{
17 return 0;
18}
19
20void __aeabi_unwind_cpp_pr0(void) __attribute__((used));
21void __aeabi_unwind_cpp_pr0(void)
22{
23};
24
25void __aeabi_unwind_cpp_pr1(void) __attribute__((used));
26void __aeabi_unwind_cpp_pr1(void)
27{
28};