#! /bin/sh
# Invoke compress, without silly 2.11-compatible header.

compress
status=$?
case "$status" in
2)	status=0	;;	# compress stupidity
esac
exit $status
