]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/lib/eabi_compat.c
MX31: Added support for the Casio COM57H5M10XRC to QONG
[karo-tx-uboot.git] / arch / arm / lib / eabi_compat.c
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.
10  */
11
12 #include <common.h>
13
14 int raise (int signum)
15 {
16         printf("raise: Signal # %d caught\n", signum);
17         return 0;
18 }