Stop intercepting clone function

Original function should now work OK with improved clone syscall
emulation.

Bug: 156271630
Test: bionic-unit-tests
Change-Id: I57967f532f0ebb7ba536f3b0e1757800a5231287
diff --git a/overriding/libc/stubs_arm.cpp b/overriding/libc/stubs_arm.cpp
index 82b02e8..1851f1b 100644
--- a/overriding/libc/stubs_arm.cpp
+++ b/overriding/libc/stubs_arm.cpp
@@ -41,7 +41,6 @@
 DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_getaddrinfofornetcontext);
 DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_mallopt);
 DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_set_abort_message);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(clone);
 DEFINE_INTERCEPTABLE_STUB_FUNCTION(freeaddrinfo);
 DEFINE_INTERCEPTABLE_STUB_FUNCTION(gai_strerror);
 DEFINE_INTERCEPTABLE_STUB_FUNCTION(getaddrinfo);
@@ -112,7 +111,6 @@
   INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", android_getaddrinfofornetcontext);
   INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", android_mallopt);
   INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", android_set_abort_message);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", clone);
   INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", freeaddrinfo);
   INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", gai_strerror);
   INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", getaddrinfo);
diff --git a/overriding/libc/stubs_arm64.cpp b/overriding/libc/stubs_arm64.cpp
index 82b02e8..1851f1b 100644
--- a/overriding/libc/stubs_arm64.cpp
+++ b/overriding/libc/stubs_arm64.cpp
@@ -41,7 +41,6 @@
 DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_getaddrinfofornetcontext);
 DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_mallopt);
 DEFINE_INTERCEPTABLE_STUB_FUNCTION(android_set_abort_message);
-DEFINE_INTERCEPTABLE_STUB_FUNCTION(clone);
 DEFINE_INTERCEPTABLE_STUB_FUNCTION(freeaddrinfo);
 DEFINE_INTERCEPTABLE_STUB_FUNCTION(gai_strerror);
 DEFINE_INTERCEPTABLE_STUB_FUNCTION(getaddrinfo);
@@ -112,7 +111,6 @@
   INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", android_getaddrinfofornetcontext);
   INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", android_mallopt);
   INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", android_set_abort_message);
-  INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", clone);
   INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", freeaddrinfo);
   INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", gai_strerror);
   INIT_INTERCEPTABLE_STUB_FUNCTION("libc.so", getaddrinfo);