Correct an nonsensical #if

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12800 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dave Chapman 2007-03-16 09:37:04 +00:00
parent a693481c2f
commit ce5383ee09

View file

@ -31,7 +31,7 @@
#define O_BINARY 0
/* Only Linux seems to need lseek64 and loff_t */
#if !defined(linux) && defined (__linux)
#if !defined(linux) && !defined (__linux)
#define loff_t off_t
#define lseek64 lseek
#endif