ttail.c
author viric <viriketo@gmail.com>
Wed, 19 Oct 2016 22:09:35 +0200
changeset 352 387687433b1e
parent 339 350600fb772f
permissions -rw-r--r--
Removing wrong tags

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