root/src/bin/clear.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;
}