1 /* unwrappers for thumb functions */ 2 /* this file SHOULD be compiled in native ARM mode */ 3 4 extern int fselect_sort(const void* v1, const void* v2); 5 int fselect_sort_nothumb(const void* v1, const void* v2) { 6 return fselect_sort(v1, v2); 7 }