Always use unsigned char

char is unsigned by default on ARM, so make it so on other architectures as well

Bug: 37208566
Test: ran poc with and without change, ran CTS on x86 and ARM
Change-Id: I264db1dad884de7fd8f932cd9571199a1c517f6a
diff --git a/Android.bp b/Android.bp
index 79d444b..e9e3f98 100644
--- a/Android.bp
+++ b/Android.bp
@@ -51,6 +51,7 @@
     cflags: [
         "-O2",
         "-D_GNU_SOURCE",
+        "-funsigned-char",
     ],
 
     local_include_dirs: ["Tremolo"],