summaryrefslogtreecommitdiffstats
path: root/jni/filters
diff options
context:
space:
mode:
authorKévin PETIT <kevin.petit@arm.com>2014-02-07 16:43:56 +0000
committerKévin PETIT <kevin.petit@arm.com>2014-03-05 12:47:36 +0000
commita2818d95445cde63d679e5678803417c475fc719 (patch)
treec525fbd082aff9936b0e43b5956a9eb9a763624b /jni/filters
parente9c89c814c97a74456ad1bf8d4c32a983663924c (diff)
downloadandroid_packages_apps_Gallery2-a2818d95445cde63d679e5678803417c475fc719.tar.gz
android_packages_apps_Gallery2-a2818d95445cde63d679e5678803417c475fc719.tar.bz2
android_packages_apps_Gallery2-a2818d95445cde63d679e5678803417c475fc719.zip
A couple of fixes
- using LDFLAGS doesn't pull the required dependencies, move to using LOCAL_SHARED_LIBRARIES - eliminate 'implicit declaration' warnings Change-Id: I57f6feca6bfcf8b2e9d439462a33c9757cdde07d Signed-off-by: Marcus Oakland <marcus.oakland@arm.com> Signed-off-by: Kévin PETIT <kevin.petit@arm.com>
Diffstat (limited to 'jni/filters')
-rw-r--r--jni/filters/hsv.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/jni/filters/hsv.c b/jni/filters/hsv.c
index aabd053fe..966b05abb 100644
--- a/jni/filters/hsv.c
+++ b/jni/filters/hsv.c
@@ -15,6 +15,7 @@
*/
#include <math.h>
+#include <stdlib.h> /* For abs */
#include "filters.h"
double fastevalPoly(double *poly,int n, double x){