blob: 2dae3f552b3628f3ee44abe6b93595cf789bb256 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* STOPSHIP: remove this once the flounder blobs have been rebuilt (http://b/20065774). */
#if !defined(__clang__)
extern void __clear_cache(char*, char*);
extern char _Unwind_Backtrace;
extern char _Unwind_GetIP;
void* __bionic_libgcc_compat_symbols[] = {
&__clear_cache,
&_Unwind_Backtrace,
&_Unwind_GetIP,
};
#endif
|