diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2003-03-17 21:48:08 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2003-03-17 21:48:08 +0000 |
| commit | 3c6bb5c04051bc5d110b703142c05d3be7f0132f (patch) | |
| tree | d66d1d8169d68af0d605b0b134b968b52117460e | |
| parent | 1450f4a9b59f96676f7aa1ea205b47cc881ec06f (diff) | |
| download | rockbox-3c6bb5c04051bc5d110b703142c05d3be7f0132f.zip rockbox-3c6bb5c04051bc5d110b703142c05d3be7f0132f.tar.gz rockbox-3c6bb5c04051bc5d110b703142c05d3be7f0132f.tar.bz2 rockbox-3c6bb5c04051bc5d110b703142c05d3be7f0132f.tar.xz | |
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
| -rw-r--r-- | uisimulator/win32/sprintf.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/uisimulator/win32/sprintf.h b/uisimulator/win32/sprintf.h index 4e4bf25..6e2b17f 100644 --- a/uisimulator/win32/sprintf.h +++ b/uisimulator/win32/sprintf.h @@ -26,6 +26,7 @@ int snprintf (char *buf, size_t size, const char *fmt, ...); #ifndef NOCYGWIN int vsnprintf (char *buf, int size, const char *fmt, va_list ap); +char *strtok_r (char *, const char *, char **); #endif #endif /* __SPRINTF_H__ */ |