#!/bin/sh
#
# cannot test for file existence, since we don't know where it is
uname=uname

case `$uname -s` in
	OS/2) exit 0 ;;
esac

exit 1
