]> gcc.gnu.org Git - gcc.git/blob - libstdc++-v3/testsuite/printnow.c
* tree.c (walk_tree): Set lineno.
[gcc.git] / libstdc++-v3 / testsuite / printnow.c
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 }
This page took 0.036165 seconds and 5 git commands to generate.