#
# usage:	echon.sh
#
# abstract:	This Bourne Shell script echos a string without a newline.
#
# note(s):      1. This routine must be called using a . (period)
#
# Copyright (c) 1992-1998 The MathWorks, Inc. All Rights Reserved.
# $Revision: 1.6 $  $Date: 1999/01/11 19:24:43 $
#----------------------------------------------------------------------------
#
	if [ "`echo -n`" != "" ]; then
	    echo "$mesg\c"
	else
            echo -n "$mesg"
	fi
