diff options
author | Thomas Martitz <kugel@rockbox.org> | 2009-02-11 16:37:12 +0000 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2009-02-11 16:37:12 +0000 |
commit | 548109084f739cf74d2263cbd136f82eb67ea9d5 (patch) | |
tree | 65038ab71d12e0ee6cb236b518b0ccf3bb531c8c /apps/codecs.c | |
parent | f2d5c3532fd21c04e77aa86732742b578283b697 (diff) |
Increase codec and plugin API version (due to changes it r19971), and sort the recently added things
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19973 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs.c')
-rw-r--r-- | apps/codecs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs.c b/apps/codecs.c index 4fcf9ce02f..565adcf203 100644 --- a/apps/codecs.c +++ b/apps/codecs.c @@ -101,6 +101,9 @@ struct codec_api ci = { NULL, /* configure */ /* kernel/ system */ +#ifdef CPU_ARM + __div0, +#endif PREFIX(sleep), yield, @@ -169,9 +172,6 @@ struct codec_api ci = { /* new stuff at the end, sort into place next time the API gets incompatible */ -#ifdef CPU_ARM - __div0, -#endif }; void codec_get_full_path(char *path, const char *codec_root_fn) |