added strtok_r() proto to build warning-free on mingw

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3471 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2003-03-17 21:48:08 +00:00
parent 1450f4a9b5
commit 3c6bb5c040

View file

@ -26,6 +26,7 @@
int snprintf (char *buf, size_t size, const char *fmt, ...); int snprintf (char *buf, size_t size, const char *fmt, ...);
#ifndef NOCYGWIN #ifndef NOCYGWIN
int vsnprintf (char *buf, int size, const char *fmt, va_list ap); int vsnprintf (char *buf, int size, const char *fmt, va_list ap);
char *strtok_r (char *, const char *, char **);
#endif #endif
#endif /* __SPRINTF_H__ */ #endif /* __SPRINTF_H__ */