aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/printnow.c
diff options
context:
space:
mode:
Diffstat (limited to 'libstdc++-v3/testsuite/printnow.c')
-rw-r--r--libstdc++-v3/testsuite/printnow.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/libstdc++-v3/testsuite/printnow.c b/libstdc++-v3/testsuite/printnow.c
deleted file mode 100644
index 457605f..0000000
--- a/libstdc++-v3/testsuite/printnow.c
+++ /dev/null
@@ -1,13 +0,0 @@
-/* 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);
-}