#!/bin/sh
XLISPLIB=/usr/pkg/share/xlispstat export XLISPLIB
XLISPLIBEXEC=/usr/pkg/libexec/xlispstat export XLISPLIBEXEC
if test -f xlisp.wks; then WKS="xlisp.wks";
else WKS="${XLISPLIBEXEC}/xlisp.wks";
fi
if test -f xlisp; then XLISP=xlisp;
else XLISP="${XLISPLIBEXEC}/xlisp"
fi
exec ${XLISP} -w${WKS} $*
