blob: d7266ac321572ffcc8ab080e3569098f6077c2dc [file] [log] [blame]
// RUN: %clangxx_msan -O0 -g %s -o %t && %run %t
// textdomain() is not a part of libc on FreeBSD and NetBSD.
// UNSUPPORTED: target={{.*(netbsd|freebsd).*}}
#include <libintl.h>
#include <stdio.h>
int main() {
const char *td = textdomain("abcd");
if (td[0] == 0) {
printf("Try read");
}
return 0;
}