#!/bin/sh
nm -g $* | awk 'NF == 3 && $2 !~ /[VWa-z]/ { gsub("^stub_", "", $3); print; }'
