summarylogtreecommitdiffstats
path: root/test.sh
blob: b769222547495e563ce9e9aebeacdf4f787ecc2a (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash
v=76
for s in $(nm -D /lib/libicutest.so|grep " [TRD] "|awk {'print $3'}|grep _$v)
	do echo "extern void* ${s};"
	for n in {64..50}
	do
		echo "void* ${s//_$v/_$n}=&${s};"
	done
done