]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20021111-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20021111-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20021111-1.c b/gcc/testsuite/gcc.c-torture/execute/20021111-1.c
deleted file mode 100644 (file)
index b81fa0b..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-/* Origin: PR c/8467 */
-
-extern void abort (void);
-extern void exit (int);
-
-int aim_callhandler(int sess, int conn, unsigned short family, unsigned short type);
-
-int aim_callhandler(int sess, int conn, unsigned short family, unsigned short type)
-{
-  static int i = 0;
-
-  if (!conn)
-    return 0;
-
-  if (type == 0xffff)
-    {
-      return 0;
-    }
-
-  if (i >= 1)
-    abort ();
-
-  i++;
-  return aim_callhandler(sess, conn, family, (unsigned short) 0xffff);
-}
-
-int main (void)
-{
-  aim_callhandler (0, 1, 0, 0);
-  exit (0);
-}