14 lines · c
1// RUN: %clang_asan -O0 -g %s -o %t2// RUN: %env_asan_opts=strict_string_checks=1 %run %t3 4// Android NDK does not have libintl.h5// UNSUPPORTED: android6 7#include <stdlib.h>8#include <libintl.h>9 10int main() {11 textdomain(NULL);12 return 0;13}14