$FUNCNAME$
	_clip_retnd()
$CATEGORY$
	C-API
$SUMMARY$
	Post a numeric return value using a double type.
$LANG_RU$
	     double.
$SYNTAX$
	_clip_retnd(ClipMachine * cm,double n) --> void
$ARGUMENTS$
	<n> - a numeric expression of double type
$LANG_RU$
	<n> -    double
$RETURNS$
	_clip_retnd() has no return value.
$LANG_RU$
	_clip_retnd()    .
$DESCRIPTION$
	_clip_retnd() posts a numeric value into CLIP's return value area.
	When your exported function returns control to the calling CLIP
	program, the posted value becomes the CLIP return value of your
	exported function.
$LANG_RU$
	_clip_retnd()       
	  CLIP. ,   ,
	  C,      CLIP ,
	 	     ,
	        CLIP-.
$EXAMPLES$
	#include "clip.h"

	int clip_MYFUNCTION(ClipMachine * cm)
	{
		double n;
		/* ... */
		_clip_retnd(cm,n);
		return 0;
	}
$SEEALSO$
	_clip_parnd(),_clip_retni(),_clip_retnl(),_clip_stornd()
$END$
