#!/bin/sh
#
# Return with exit status 0 iff system is running hp-ux.

if test -f /bin/uname; then
    SYSTEM=`/bin/uname`
    if test "$SYSTEM" = "HP-UX"; then
	exit 0
        fi
    fi
exit 1
