xref: /openbsd-src/gnu/lib/libstdc++/libstdc++/testsuite/printnow.c (revision f6aab3d83b51b91c24247ad2c2573574de475a82)
1 /* Prints the current time_t to stdout.  Equivalent to the
2  * nonstandard %s format option to GNU date(1).
3 */
4 
5 #include <sys/types.h>
6 #include <stdio.h>
7 #include <time.h>
8 
9 int main ()
10 {
11     printf ("%lu\n", time(NULL));
12     exit(0);
13 }
14