]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libstdc++-v3/testsuite/printnow.c
Imported gcc-4.4.3
[msp430-gcc.git] / libstdc++-v3 / testsuite / printnow.c
diff --git a/libstdc++-v3/testsuite/printnow.c b/libstdc++-v3/testsuite/printnow.c
deleted file mode 100644 (file)
index 457605f..0000000
+++ /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);
-}