#!/bin/sh
for i in $*
do
	grep "EXPORT_SYMBOL.*(.*)" "$i" \
		| sed -e "s/EXPORT_SYMBOL.*(/  /" \
		| sed -e "s/).*$//"
done
