summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Martin <mister_wavey@rockbox.org>2002-04-30 19:23:08 +0000
committerStuart Martin <mister_wavey@rockbox.org>2002-04-30 19:23:08 +0000
commite6ce5d548593652b3da3e458c85ae6a72996ae23 (patch)
tree5715920044c2cf0263e4f2216c1111c3145e1bda
parentb09b1a091b21db5dd0bbf0882daf20ce776b5316 (diff)
downloadrockbox-e6ce5d548593652b3da3e458c85ae6a72996ae23.tar.gz
rockbox-e6ce5d548593652b3da3e458c85ae6a72996ae23.zip
header for panic functions
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@339 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/panic.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/firmware/panic.h b/firmware/panic.h
new file mode 100644
index 0000000000..31542c1edf
--- /dev/null
+++ b/firmware/panic.h
@@ -0,0 +1,26 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2002 by wavey@wavey.org
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19
20#ifndef __PANIC_H__
21#define __PANIC_H__
22
23void panic( char *message );
24void panicf( char *fmt, ... );
25
26#endif /* __PANIC_H__ */