ttail.c
author viric <viriketo@gmail.com>
Sun, 20 Mar 2016 11:25:41 +0100
changeset 345 c8fd555369d1
parent 339 350600fb772f
permissions -rw-r--r--
Description: Fix GCC type warning Author: Alexander Inyukhin <shurick@sectorb.msk.ru> Forwarded: yes Last-Update: 2012-05-27

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