[comp.os.minix] clr.c with ANSI escape sequences

ast@cs.vu.nl (Andy Tanenbaum) (12/22/87)

/* clr - clear the screen		Author: Andy Tanenbaum */

main()
{
/* Clear the screen. */

  prints("\033[H\033[J");
  exit(0);
}