haiku/src/bin/clear.c
Matt Madia 04c4314e15 Rewrote copyright header. s/OpenBeOS/Haiku.
Slight cleanup to included headers.
2013-02-16 14:07:00 -05:00

18 lines
248 B
C

/*
* Copyright 2001-2013 Haiku, Inc. All rights reserved.
* Distributed under the terms of the MIT License.
*
* Authors:
* Jan-Rixt Van Hoye, janvanhoye@pandora.be
*/
#include <stdlib.h>
int
main()
{
system("tput clear");
return 0;
}