Files
haiku-beta6/src/apps/bin/clear.c
T
Phil Greenway cca694c746 Coded by Jan-Rixt Van Hoye
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5829 a95241bf-73f2-0310-859d-f6bbb57e9c96
2003-12-30 14:05:48 +00:00

24 lines
511 B
C

// ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
//
// Copyright (c) 2001-2003, OpenBeOS
//
// This software is part of the OpenBeOS distribution and is covered
// by the OpenBeOS license.
//
//
// File: clear.c
// Author: Jan-Rixt Van Hoye ([email protected])
// Description: clears the terminal screen
//
// ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
#include <stdlib.h>
int
main()
{
system("tput clear");
return 0;
}