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

