#	@(#)leavelocks	1.1	one of many exit routines
# leavelocks:  
#	Default exit routine: leaves locks that were probably created
#	by other processes.  Exits with status of most recently
#	returned exit value.  Must be invoked with the dot (.)
#	command or will not find any TMPFILES to remove, and may not
#	have a proper exit value to use.
# Author:  D.L. Bamford, AO, SSD, COB, STS, ETC, 7/20/87

exitval=$?
rm -rf $TMPFILES >/dev/null 2>&1
exit ${exitval:-0}
