# -*- shell-script -*-
# This file defines a ksh alias.
# It also ends up in a zsh function directory
# so that zsh users can run this shell function with ksh scripts
if [ -n "${KSH_VERSION+x}" ]; then
   ml ()
   {
     eval "$($LMOD_DIR/ml_cmd "$@")"
   }
fi

