1
0
Fork 0
forked from len0rd/rockbox

Had to include <stddef.h> so that size_t is defined.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@861 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Felix Arends 2002-05-31 20:27:36 +00:00
parent 0bb897ae8d
commit d1ffa5452b

View file

@ -20,6 +20,8 @@
#ifndef __SPRINTF_H__
#define __SPRINTF_H__
#include <stddef.h>
int snprintf (char *buf, size_t size, const char *fmt, ...);
#endif /* __SPRINTF_H__ */