blob: 2dae3f552b3628f3ee44abe6b93595cf789bb256 [file] [log] [blame]
Elliott Hughes76e1cbc2015-04-03 11:27:53 -07001/* STOPSHIP: remove this once the flounder blobs have been rebuilt (http://b/20065774). */
2
Elliott Hughesdffd3c52015-04-03 13:37:18 -07003#if !defined(__clang__)
Elliott Hughes0975a5d2015-04-03 13:09:10 -07004
Elliott Hughes76e1cbc2015-04-03 11:27:53 -07005extern void __clear_cache(char*, char*);
6extern char _Unwind_Backtrace;
7extern char _Unwind_GetIP;
8
9void* __bionic_libgcc_compat_symbols[] = {
10 &__clear_cache,
11 &_Unwind_Backtrace,
12 &_Unwind_GetIP,
13};
Elliott Hughes0975a5d2015-04-03 13:09:10 -070014
15#endif