Fix wrong #ifdefs.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26022 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2010-05-14 12:52:15 +00:00
parent 110b30e044
commit 59d827f7a6

View file

@ -22,12 +22,12 @@ panic.c
debug.c
/* Standard library */
#if !defined(SIMULATOR)
#if defined(__MINGW32__) || defined(__CYGWIN__)
#if !defined(SIMULATOR) || defined(__MINGW32__) || defined(__CYGWIN__)
libc/errno.c
/* alsa on linux requires a more advanced sprintf, i.e. not ours */
libc/sprintf.c
#endif /* defined(__MINGW32__) || defined(__CYGWIN__) */
#endif /* !SIMULATOR || __MINGW32__ || __CYGWIN__ */
#if !defined(SIMULATOR)
libc/atoi.c
libc/ctype.c
libc/memcmp.c