summaryrefslogtreecommitdiff
path: root/firmware/debug.h
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-04-20 23:01:30 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-04-20 23:01:30 +0000
commitd057c07154b02a067051f8a4711b19e4011a16aa (patch)
treef9c6036c2e45336cff8c59dd5b70f91b7c46a8ab /firmware/debug.h
parent432ba31511bc1a00803657b4b4c60f27791608ba (diff)
downloadrockbox-d057c07154b02a067051f8a4711b19e4011a16aa.tar.gz
rockbox-d057c07154b02a067051f8a4711b19e4011a16aa.zip
First commit
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@156 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/debug.h')
-rw-r--r--firmware/debug.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/firmware/debug.h b/firmware/debug.h
new file mode 100644
index 0000000000..dc3053cb32
--- /dev/null
+++ b/firmware/debug.h
@@ -0,0 +1,25 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2002 by Linus Nielsen Feltzing
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#ifndef DEBUG_H
20#define DEBUG_H
21
22void debug(char *msg);
23void debugf(char *fmt, ...);
24
25#endif