bolt/deps/llvm-18.1.8/compiler-rt/test/asan/TestCases/Linux/textdomain.c
2025-02-14 19:21:04 +01:00

13 lines
244 B
C

// RUN: %clang_asan -O0 -g %s -o %t
// RUN: %env_asan_opts=strict_string_checks=1 %run %t
// Android NDK does not have libintl.h
// UNSUPPORTED: android
#include <stdlib.h>
#include <libintl.h>
int main() {
textdomain(NULL);
return 0;
}