Expand PMF_FN_* macros.
[netbsd-mini2440.git] / distrib / sun2 / ramdisk / Showsyms
blob3dfe5073be70bb3969ca13e7a2754697be039476
1 #!/bin/sh
2 # $NetBSD$
3 # Small helper to print out symbols in a useful order.
5 tf=_tmp$$
7 nm -n rd_bin.syms | egrep -v ' (gcc2|___gnu)_compiled' > $tf
9 grep -i ' u ' $tf
10 grep -i ' a ' $tf
11 grep -i ' t ' $tf
12 grep -i ' d ' $tf
13 grep -i ' b ' $tf
14 rm -f $tf
16 nm -p rd_bin.syms | grep -i ' c '