Fix wrong #ifdefs.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26022 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
110b30e044
commit
59d827f7a6
1 changed files with 3 additions and 3 deletions
|
@ -22,12 +22,12 @@ panic.c
|
||||||
debug.c
|
debug.c
|
||||||
|
|
||||||
/* Standard library */
|
/* Standard library */
|
||||||
#if !defined(SIMULATOR)
|
#if !defined(SIMULATOR) || defined(__MINGW32__) || defined(__CYGWIN__)
|
||||||
#if defined(__MINGW32__) || defined(__CYGWIN__)
|
|
||||||
libc/errno.c
|
libc/errno.c
|
||||||
/* alsa on linux requires a more advanced sprintf, i.e. not ours */
|
/* alsa on linux requires a more advanced sprintf, i.e. not ours */
|
||||||
libc/sprintf.c
|
libc/sprintf.c
|
||||||
#endif /* defined(__MINGW32__) || defined(__CYGWIN__) */
|
#endif /* !SIMULATOR || __MINGW32__ || __CYGWIN__ */
|
||||||
|
#if !defined(SIMULATOR)
|
||||||
libc/atoi.c
|
libc/atoi.c
|
||||||
libc/ctype.c
|
libc/ctype.c
|
||||||
libc/memcmp.c
|
libc/memcmp.c
|
||||||
|
|
Loading…
Reference in a new issue