1
0
Fork 0
forked from len0rd/rockbox

Const policed pointer arguments to functions, part 4

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5001 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2004-08-18 19:59:06 +00:00
parent f50bbce438
commit 2f20b3e784
5 changed files with 7 additions and 7 deletions

View file

@ -20,8 +20,8 @@
#define DEBUG_H
extern void debug_init(void);
extern void debugf(char* fmt,...);
extern void ldebugf(char* file, int line, char *fmt, ...);
extern void debugf(const char* fmt,...);
extern void ldebugf(const char* file, int line, const char *fmt, ...);
#ifdef __GNUC__