$FUNCNAME$
	_clip_retnl()
$CATEGORY$
	C-API
$SUMMARY$
	Post a numeric return value using a long type.
$LANG_RU$
	     long.
$SYNTAX$
	_clip_retnl(ClipMachine * cm,long n) --> void
$ARGUMENTS$
	<n> - a numeric expression of long type
$LANG_RU$
	<n> -    long
$RETURNS$
	_clip_retnl() has no return value.
$LANG_RU$
	_clip_retnl()    .
$DESCRIPTION$
	_clip_retnl() 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_retnl()       
	  CLIP. ,   ,
	  C,      CLIP ,
	 	     ,
	        CLIP-.
$EXAMPLES$
	#include "clip.h"

	int clip_MYFUNCTION(ClipMachine * cm)
	{
		long n;
		/* ... */
		_clip_retnl(cm,n);
		return 0;
	}
$SEEALSO$
	_clip_parnl(),_clip_retni(),_clip_retnd(),_clip_stornl()
$END$
