Revert "async-safe logging: __ANDROID_API_LEVEL__ isn't a thing."

This reverts commit 0cad9cbd6468769757a9f20ecc126b2c0252791e.

Reason for revert: Droidmonitor created revert due to b/381893444. Will be verifying through ABTD before submission.

Change-Id: Ic9448200ae00fd7210931ccb37c5f6e0d59eb902
diff --git a/libc/async_safe/async_safe_log.cpp b/libc/async_safe/async_safe_log.cpp
index c24b326..07133b7 100644
--- a/libc/async_safe/async_safe_log.cpp
+++ b/libc/async_safe/async_safe_log.cpp
@@ -359,7 +359,7 @@
       buffer[1] = 'x';
       format_integer(buffer + 2, sizeof(buffer) - 2, value, 'x');
     } else if (c == 'm') {
-#if __ANDROID_API__ >= 35 // This library is used in mainline modules.
+#if __ANDROID_API_LEVEL__ >= 35 // This library is used in mainline modules.
       if (alternate) {
         const char* name = strerrorname_np(errno);
         if (name) {