#! /bin/sh
# Pass in the architecture; returns whether find knows about prune
if [ "$1" = sun4 ] ; then
   echo 1
   exit
fi
if [ "$1" = rs6000 ] ; then
   echo 1
   exit
fi
if [ "$1" = IRIX ] ; then
   echo 1
   exit
fi
if [ "$1" = NeXT ] ; then
   echo 1
   exit
fi
if [ "$1" = cm5 ] ; then
   echo 1
   exit
fi
if [ "$1" = tc2000 ] ; then
   echo 1
   exit
fi
echo 0
