diff options
| author | Rafaël Carré <rafael.carre@gmail.com> | 2010-07-01 08:40:00 +0000 |
|---|---|---|
| committer | Rafaël Carré <rafael.carre@gmail.com> | 2010-07-01 08:40:00 +0000 |
| commit | 7da040bf22e936c19a495bfe10b746be77a76d21 (patch) | |
| tree | f3b33a949a50e89eb9f35998fe91e0c3af45590e /apps/codecs/mp3_enc.c | |
| parent | ceab0b04ebb52da8fd632ed051cf833d35bbdd22 (diff) | |
| download | rockbox-7da040bf22e936c19a495bfe10b746be77a76d21.zip rockbox-7da040bf22e936c19a495bfe10b746be77a76d21.tar.gz rockbox-7da040bf22e936c19a495bfe10b746be77a76d21.tar.bz2 rockbox-7da040bf22e936c19a495bfe10b746be77a76d21.tar.xz | |
encoders are not built in sim builds
no need to check for SIMULATOR in the .c files
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27209 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/mp3_enc.c')
| -rw-r--r-- | apps/codecs/mp3_enc.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/apps/codecs/mp3_enc.c b/apps/codecs/mp3_enc.c index 2739778..17d980f 100644 --- a/apps/codecs/mp3_enc.c +++ b/apps/codecs/mp3_enc.c @@ -32,8 +32,6 @@ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Library General Public License for more details. -#ifndef SIMULATOR - #include <inttypes.h> #include "codeclib.h" @@ -2637,5 +2635,3 @@ enum codec_status codec_main(void) return CODEC_OK; } /* codec_start */ - -#endif /* ndef SIMULATOR */ |