1
0
Fork 0
forked from len0rd/rockbox

added protos and fixed to make them work as proper newlib replacement

headers


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1034 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-06-17 13:19:18 +00:00
parent d2e0214738
commit f7b10a3747
2 changed files with 11 additions and 6 deletions

View file

@ -1,6 +1,8 @@
#ifndef _STDIO_H_
#define _STDIO_H_
#include <_ansi.h>
#define __need_size_t
#include <stddef.h>
@ -31,11 +33,7 @@
#define __VALIST char*
#endif
int _EXFUN(fprintf, (FILE *, const char *, ...));
int _EXFUN(fscanf, (FILE *, const char *, ...));
int _EXFUN(printf, (const char *, ...));
int _EXFUN(vfprintf, (FILE *, const char *, __VALIST));
int _EXFUN(vprintf, (const char *, __VALIST));
int _EXFUN(vsprintf, (char *, const char *, __VALIST));
int snprintf (char *buf, size_t size, const char *fmt, ...);
int vsnprintf (char *buf, int size, const char *fmt, __VALIST ap);
#endif /* _STDIO_H_ */