summaryrefslogtreecommitdiff
path: root/test/asan/TestCases/Linux/textdomain.c
blob: 9e249d95ce674e0ae50003613732173698ec2601 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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;
}