1#!/bin/ksh
2
3# Get the address of a symbol in Hex.
4# $1 = object/executable file name
5# $2 = symbol name
6${srcdir}/gdb.hp/tools/odump -sym "$1" | grep "$2"$ | awk '{print $1}'
7
8exit 0
9