]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/930513-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 930513-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/930513-1.c b/gcc/testsuite/gcc.c-torture/execute/930513-1.c
deleted file mode 100644 (file)
index 4544471..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-#include <stdio.h>
-char buf[2];
-
-f (fp)
-     int (*fp)(char *, const char *, ...);
-{
-  (*fp)(buf, "%.0f", 5.0);
-}
-
-main ()
-{
-  f (&sprintf);
-  if (buf[0] != '5' || buf[1] != 0)
-    abort ();
-  exit (0);
-}