/*****************************************************************************

	ExeCtL()

	This function executes a control-L command.

*****************************************************************************/

#include "ZPort.h"		/* define portability identifiers */
#include "DefChars.h"		/* define identifiers for characters */
#include "DefTeco.h"		/* define general identifiers */

extern	VOID	ZDspCh();	/* output a character to the terminal */

DEFAULT ExeCtL()			/* execute an control-L command */
{
	ZDspCh(FORMFD);
	return(SUCCESS);
}
