#!/bin/sh

if test "${ECHON}" = ""
then
 # Determine how to "echo" without newline: "echo -n" or "echo ...\c"
 if test "`echo -n`" = "-n"
 then
  ECHON="echo"; NNL="\c"
 else
  ECHON="echo -n"; NNL=""
 fi
fi

${ECHON} "${*}${NNL}"
