Remove an unnecessary "art" prefix on functions in the art namespace.
Change-Id: I160bc78ef9000364f657a9972dd8c648ca2f53aa
diff --git a/src/runtime_support.h b/src/runtime_support.h
index 271cc83..c74b9c5 100644
--- a/src/runtime_support.h
+++ b/src/runtime_support.h
@@ -42,11 +42,11 @@
uint32_t IsAssignableFromCode(const Class* klass, const Class* ref_class);
void ObjectInitFromCode(Object* o);
extern void LockObjectFromCode(Thread* thread, Object* obj);
-uint32_t artTraceMethodUnwindFromCode(Thread* self);
-extern int artCmpgDouble(double a, double b);
-extern int artCmplDouble(double a, double b);
-extern int artCmpgFloat(float a, float b);
-extern int artCmplFloat(float a, float b);
+uint32_t TraceMethodUnwindFromCode(Thread* self);
+extern int CmpgDouble(double a, double b);
+extern int CmplDouble(double a, double b);
+extern int CmpgFloat(float a, float b);
+extern int CmplFloat(float a, float b);
extern int64_t D2L(double d);
extern int64_t F2L(float f);