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