diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-03-09 23:54:16 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-03-09 23:54:16 +0000 |
commit | 2dddde253f5bb68c3cf3e60646e0f39220bcb9bb (patch) | |
tree | be16b7b3fa02ac4e10a5a8296023383c1f263490 | |
parent | 6c54dc0f2b3d7e495e44b756393684d75c16acee (diff) | |
download | rockbox-2dddde253f5bb68c3cf3e60646e0f39220bcb9bb.tar.gz rockbox-2dddde253f5bb68c3cf3e60646e0f39220bcb9bb.zip |
remove extra kludge we used to kill warnings on very old mingw cross-compile
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6178 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | uisimulator/common/io.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/uisimulator/common/io.c b/uisimulator/common/io.c index 8f72d4f94d..78fb835785 100644 --- a/uisimulator/common/io.c +++ b/uisimulator/common/io.c @@ -40,13 +40,6 @@ #include "dir-win32.h" #endif -#if defined(WIN32) && defined(__MINGW32__) -/* when building with cross-compiled mingw on Linux for win32, these protos - are missing */ -int _commit(int fd); -int snprintf (char *buf, size_t size, const char *fmt, ...); -#endif - #define MAX_PATH 260 #include <fcntl.h> |