ttail.c
author viric <viriketo@gmail.com>
Wed, 19 Oct 2016 22:09:43 +0200
changeset 353 cee48819d7e4
parent 339 350600fb772f
permissions -rw-r--r--
Added tag v1.0.0 for changeset 387687433b1e

/*
    Task Spooler - a task queue system for the unix user
    Copyright (C) 2007-2013  LluĂ­s Batlle i Rossell

    Please find the license in the provided COPYING file.
*/
#include <sys/time.h> /* Dep de main.h */
#include <stdio.h> /* Dep de main.h */

#include "main.h"

int main(int argc, char **argv)
{
    tail_file(argv[1]);
    return 0;
}