Fix #ifdef statement.

Previous version did not compile with GCC.

Bug: None
Change-Id: I9f8b40e6e965a7573505cc7f3c1c650b37522926
diff --git a/Android.mk b/Android.mk
index b79a989..dd2db53 100644
--- a/Android.mk
+++ b/Android.mk
@@ -205,6 +205,8 @@
 LOCAL_MODULE_TAGS := optional
 LOCAL_CFLAGS := $(minijailCommonCFlags)
 LOCAL_CLANG := true
+# Don't build with ASan, but leave commented out for easy local debugging.
+# LOCAL_SANITIZE := address
 LOCAL_SRC_FILES := \
 	examples/drop_privs.cpp
 
diff --git a/util.h b/util.h
index b4efc2f..15dd56b 100644
--- a/util.h
+++ b/util.h
@@ -38,7 +38,11 @@
 }
 
 static inline int running_with_asan() {
-#if defined(__clang__) && __has_feature(address_sanitizer)
+#ifndef __has_feature
+#define __has_feature(x) 0
+#endif
+
+#if __has_feature(address_sanitizer)
 	return 1;
 #else
 	return 0;