#!/bin/sh
# $NetBSD: Findrefs,v 1.1.2.1 1997/12/25 20:32:44 perry Exp $

# Small helper to find out who pulls in X

[ "$1" ] || { echo "$0: match_string" ; exit 1; }

for f in *.lo
do
	nm -p $f | grep "$1" && echo $f
done

