#!/bin/sh
# Dispatcher for the Open Watcom tools
set -e
export WATCOM=/opt/watcom
tool=${0##*/}
INCLUDE="${INCLUDE:+$INCLUDE:}$WATCOM/h:$WATCOM/lh" \
EDPATH="$WATCOM/eddat" \
PATH="$WATCOM/binl64:$PATH" \
exec "$WATCOM/binl64/${tool#watcom-}" "$@"
