ttail.c
author viric <viriketo@gmail.com>
Sat, 19 Mar 2016 11:16:42 +0100
changeset 341 1169cb2d5557
parent 339 350600fb772f
permissions -rw-r--r--
Increasing version to 0.7.6, and update manuals.

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