/*Copyright (C) 1992, 1996 by Thomas Glen Smith. All Rights Reserved.*/
/* aplnewl APL2 V1.0.0 *************************************************
* Called by getchrv and funcsusp to start a new output line. *
***********************************************************************/
#define INCLUDES STDIO
#include "includes.h"
void aplnewl(void)
{
extern int aplcurs;
printf("\n"); /* New line. */
aplcurs = 0; /* Reset count of characters output in line. */
}