about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/tst-clone3.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/unix/sysv/linux/tst-clone3.c')
-rw-r--r--sysdeps/unix/sysv/linux/tst-clone3.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/sysdeps/unix/sysv/linux/tst-clone3.c b/sysdeps/unix/sysv/linux/tst-clone3.c
index 3683f83f7e..77b8731c08 100644
--- a/sysdeps/unix/sysv/linux/tst-clone3.c
+++ b/sysdeps/unix/sysv/linux/tst-clone3.c
@@ -78,13 +78,6 @@ do_test (void)
   pid_t ctid = CTID_INIT_VAL;
   pid_t tid;
 
-#ifdef __ia64__
-  extern int __clone2 (int (*__fn) (void *__arg), void *__child_stack_base,
-		       size_t __child_stack_size, int __flags,
-		       void *__arg, ...);
-  tid = __clone2 (f, st, sizeof (st), clone_flags, NULL, /* ptid */ NULL,
-		  /* tls */ NULL, &ctid);
-#else
 #if _STACK_GROWS_DOWN
   tid = clone (f, st + sizeof (st), clone_flags, NULL, /* ptid */ NULL,
 	       /* tls */ NULL, &ctid);
@@ -94,7 +87,6 @@ do_test (void)
 #else
 #error "Define either _STACK_GROWS_DOWN or _STACK_GROWS_UP"
 #endif
-#endif
   if (tid == -1)
     FAIL_EXIT1 ("clone failed: %m");