#!/bin/csh -f
if ( "`uname -s`" =~ IRIX* ) then
xdiff ref/$1 cmp/$1
else
if -e tkdiff then
tkdiff ref/$1 cmp/$1
else
diff ref/$1 cmp/$1
endif

