0e419987e4
simulator with the hope that once it works fine, we can remove the other two and only have one unified simulator. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8312 a1c6a512-1295-4272-9138-f99709370657
12 lines
373 B
C
12 lines
373 B
C
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
|
|
int rockbox_snprintf (char *buf, size_t size, const char *fmt, ...);
|
|
int rockbox_vsnprintf (char *buf, int size, const char *fmt, va_list ap);
|
|
int rockbox_fprintf (int fd, const char *fmt, ...);
|
|
|
|
#ifndef NO_REDEFINES_PLEASE
|
|
#define snprintf rockbox_snprintf
|
|
#define vsnprintf rockbox_vsnprintf
|
|
#define fprintf rockbox_fprintf
|
|
#endif
|