xref: /haiku/src/bin/clear.c (revision 1deede7388b04dbeec5af85cae7164735ea9e70d)
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