diff options
-rw-r--r-- | libc/libc.map.txt | 8 | ||||
-rw-r--r-- | libc/malloc_debug/Android.bp | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/libc/libc.map.txt b/libc/libc.map.txt index bc26d2a6b..b36ee4c5d 100644 --- a/libc/libc.map.txt +++ b/libc/libc.map.txt @@ -1468,10 +1468,10 @@ LIBC_Q { # introduced=Q __system_properties_init; # apex # Used by libmemunreachable - malloc_backtrace; # apex - malloc_disable; # apex - malloc_enable; # apex - malloc_iterate; # apex + malloc_backtrace; # apex vndk + malloc_disable; # apex vndk + malloc_enable; # apex vndk + malloc_iterate; # apex vndk # Used by libandroid_net android_getaddrinfofornet; # apex diff --git a/libc/malloc_debug/Android.bp b/libc/malloc_debug/Android.bp index bcbd7dac9..aae16f14d 100644 --- a/libc/malloc_debug/Android.bp +++ b/libc/malloc_debug/Android.bp @@ -3,8 +3,8 @@ // ============================================================== // Used by libmemunreachable cc_library_static { - name: "libc_malloc_debug_backtrace", + vendor_available: true, srcs: [ "backtrace.cpp", |