[scudo] Remove hard-coded use of AndroidConfig. (#66845)

The bionic wrappers hard-coded use of AndroidConfig. This overrides the
custom config code, so remove the hard-coding.

GitOrigin-RevId: 93e12f1160f91745bff3771d6f3f39e7f088cf78
diff --git a/lib/scudo/standalone/wrappers_c_bionic.cpp b/lib/scudo/standalone/wrappers_c_bionic.cpp
index 4e8e37a..4fed447 100644
--- a/lib/scudo/standalone/wrappers_c_bionic.cpp
+++ b/lib/scudo/standalone/wrappers_c_bionic.cpp
@@ -27,7 +27,7 @@
 
 extern "C" void SCUDO_PREFIX(malloc_postinit)();
 SCUDO_REQUIRE_CONSTANT_INITIALIZATION
-static scudo::Allocator<scudo::AndroidConfig, SCUDO_PREFIX(malloc_postinit)>
+static scudo::Allocator<scudo::Config, SCUDO_PREFIX(malloc_postinit)>
     SCUDO_ALLOCATOR;
 
 #include "wrappers_c.inc"