xref: /haiku/src/bin/clear.c (revision 8d2bf6953e851d431fc67de1bc970c40afa79e9f)
1 /*
2  * Copyright 2001-2013 Haiku, Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *				Jan-Rixt Van Hoye, janvanhoye@pandora.be
7  */
8 
9 
10 #include <stdlib.h>
11 
12 int
13 main()
14 {
15 	system("tput clear");
16 	return 0;
17 }
18