Update rollo and renderscript to the new ACC compiler interface.
diff --git a/rsScriptC.h b/rsScriptC.h
index c46901b..9d9ec49 100644
--- a/rsScriptC.h
+++ b/rsScriptC.h
@@ -69,6 +69,14 @@
 
     void clear();
     void runCompiler(Context *rsc);
+
+    struct SymbolTable_t {
+        const char * mName;
+        void * mPtr;
+        const char * mDecl;
+    };
+    static SymbolTable_t gSyms[];
+    static const SymbolTable_t * lookupSymbol(const char *);
 };