1
0
Fork 0
forked from len0rd/rockbox

Changed the size argument to be a size_t type, to make the prototype look

like the system one as otherwise the compiler complains a lot.


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@805 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-05-30 06:31:24 +00:00
parent d69cb5545f
commit e29d0307cb

View file

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