blob: 49476d2e176a83edabb9f1b5384ce0c4fa594009 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/*
* This only needs to contain symbols that are not listed in
* symbol maps from other parts of libc (i.e., not found in
* stdlib/Symbol.map, string/Symbol.map, sys/Symbol.map, ...).
*/
FBSD_1.0 {
__mcount;
alloca;
brk;
sbrk;
};
FBSD_1.3 {
__flt_rounds;
};
FBSD_1.4 {
__gnu_Unwind_Find_exidx;
dl_unwind_find_exidx;
};
FBSD_1.6 {
arm_drain_writebuf;
arm_sync_icache;
};
FBSDprivate_1.0 {
_brk;
__aeabi_read_tp;
___longjmp;
__longjmp;
signalcontext;
__signalcontext;
__siglongjmp;
_libc_arm_fpu_present;
};
|