2013-08-16 11:08:26 +01:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include <stdio.h>
|
2013-10-07 21:11:40 +03:00
|
|
|
#include <stdlib.h>
|
2013-08-16 11:08:26 +01:00
|
|
|
|
|
|
|
int
|
|
|
|
main(void)
|
|
|
|
{
|
2014-02-14 14:38:56 +01:00
|
|
|
printf("\x1b[2J\x1b[H");
|
2013-10-07 21:11:40 +03:00
|
|
|
return EXIT_SUCCESS;
|
2013-08-16 11:08:26 +01:00
|
|
|
}
|