about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/arch-fork.h
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/unix/sysv/linux/arch-fork.h')
-rw-r--r--sysdeps/unix/sysv/linux/arch-fork.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/arch-fork.h b/sysdeps/unix/sysv/linux/arch-fork.h
index a01c32bd36..650f3ec79e 100644
--- a/sysdeps/unix/sysv/linux/arch-fork.h
+++ b/sysdeps/unix/sysv/linux/arch-fork.h
@@ -46,8 +46,6 @@ arch_fork (void *ctid)
   ret = INLINE_SYSCALL_CALL (clone, 0, flags, NULL, ctid, 0);
 #elif defined(__ASSUME_CLONE_BACKWARDS3)
   ret = INLINE_SYSCALL_CALL (clone, flags, 0, 0, NULL, ctid, 0);
-#elif defined(__ASSUME_CLONE2)
-  ret = INLINE_SYSCALL_CALL (clone2, flags, 0, 0, NULL, ctid, 0);
 #elif defined(__ASSUME_CLONE_DEFAULT)
   ret = INLINE_SYSCALL_CALL (clone, flags, 0, NULL, ctid, 0);
 #else