aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/printnow.c
blob: 457605f3a5186f82598af157410c45e3afbe6268 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Prints the current time_t to stdout.  Equivalent to the
 * nonstandard %s format option to GNU date(1).
*/

#include <sys/types.h>
#include <stdio.h>
#include <time.h>

int main ()
{
    printf ("%lu\n", time(NULL));
    exit(0);
}