ttail.c
author Lluís Batlle i Rossell <viric@viric.name>
Mon, 01 Apr 2024 11:06:42 +0200
changeset 379 1f8972dab2c1
parent 339 350600fb772f
permissions -rw-r--r--
Added signature for changeset 13554e106f17

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