You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
244 B
14 lines
244 B
4 months ago
|
// 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;
|
||
|
}
|