diff options
| author | Stuart Martin <mister_wavey@rockbox.org> | 2002-04-30 19:23:08 +0000 |
|---|---|---|
| committer | Stuart Martin <mister_wavey@rockbox.org> | 2002-04-30 19:23:08 +0000 |
| commit | e6ce5d548593652b3da3e458c85ae6a72996ae23 (patch) | |
| tree | 5715920044c2cf0263e4f2216c1111c3145e1bda | |
| parent | b09b1a091b21db5dd0bbf0882daf20ce776b5316 (diff) | |
| download | rockbox-e6ce5d548593652b3da3e458c85ae6a72996ae23.zip rockbox-e6ce5d548593652b3da3e458c85ae6a72996ae23.tar.gz rockbox-e6ce5d548593652b3da3e458c85ae6a72996ae23.tar.bz2 rockbox-e6ce5d548593652b3da3e458c85ae6a72996ae23.tar.xz | |
header for panic functions
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@339 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/panic.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/firmware/panic.h b/firmware/panic.h new file mode 100644 index 0000000..31542c1 --- /dev/null +++ b/firmware/panic.h @@ -0,0 +1,26 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id$ + * + * Copyright (C) 2002 by wavey@wavey.org + * + * All files in this archive are subject to the GNU General Public License. + * See the file COPYING in the source tree root for full license agreement. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ + +#ifndef __PANIC_H__ +#define __PANIC_H__ + +void panic( char *message ); +void panicf( char *fmt, ... ); + +#endif /* __PANIC_H__ */ |