summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2009-01-24 03:47:09 +0000
committerMichael Sevakis <jethead71@rockbox.org>2009-01-24 03:47:09 +0000
commitb0befadad1d9ec691ba647b948422e66a43f3674 (patch)
tree92f5fe47e0826daab66d2e321c96412841392058 /apps/plugin.c
parentef8413eb4fd7fead45d33b3ecae003210978b85d (diff)
downloadrockbox-b0befadad1d9ec691ba647b948422e66a43f3674.tar.gz
rockbox-b0befadad1d9ec691ba647b948422e66a43f3674.zip
Include divide-by-zero handling within plugins and codecs for ARM processors.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19834 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index a19a08b5fb..1e86b4d07e 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -627,6 +627,9 @@ static const struct plugin_api rockbox_api = {
627 appsversion, 627 appsversion,
628 /* new stuff at the end, sort into place next time 628 /* new stuff at the end, sort into place next time
629 the API gets incompatible */ 629 the API gets incompatible */
630#ifdef CPU_ARM
631 __div0,
632#endif
630}; 633};
631 634
632int plugin_load(const char* plugin, const void* parameter) 635int plugin_load(const char* plugin, const void* parameter)