morpheus-base

morpheus base system
git clone git://git.2f30.org/morpheus-base
Log | Files | Refs

clear.c (154B)


      1 /* See LICENSE file for copyright and license details. */
      2 #include <stdio.h>
      3 #include <stdlib.h>
      4 
      5 int
      6 main(void)
      7 {
      8 	printf("\x1b[2J\x1b[H");
      9 	return 0;
     10 }