#! /bin/sh
# Provision of this shell script should not be taken to imply that use of
# GNU eqn with groff -Tascii|-Tlatin1|-Tutf8|-Tcp1047 is supported.
# (The value required is dependent on the user's choice of shell,
#  and its associated POSIX emulation capabilities.)

case "$OSTYPE" in
  msys)
    GROFF_RUNTIME=${GROFF_BIN_PATH="/usr/local452/bin"}":" ;;
  cygwin)
    : ${GROFF_BIN_PATH="`cygpath -w '/usr/local452/bin'`"}
    GROFF_RUNTIME=`cygpath "$GROFF_BIN_PATH"`":" ;;
  *)
    GROFF_RUNTIME=${GROFF_BIN_PATH="/usr/local452/bin"}";" ;;
esac
PATH="$GROFF_RUNTIME$PATH"
export PATH
exec eqn -Tascii ${1+"$@"}

# eof
