#include <stdio.h>
#include <stdlib.h>
#include <time.h>

int
main(int argc, char *argv[])
{
    time_t t = time(NULL);

    printf("the time a mere line ago: %s", ctime(&t));
    exit(EXIT_SUCCESS);
}
