ttail.c
author viric <viriketo@gmail.com>
Fri, 25 Mar 2016 17:25:57 +0100
changeset 348 308315d04787
parent 339 350600fb772f
permissions -rw-r--r--
Fixing output file name passing and sending.

/*
    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;
}