1 // RUN: %clangxx_msan -O0 -g %s -o %t && %run %t
7 #include <sanitizer/msan_interface.h>
12 while (struct utmp
*ut
= getutent())
13 __msan_check_mem_is_initialized(ut
, sizeof(*ut
));
18 while (struct utmpx
*utx
= getutxent())
19 __msan_check_mem_is_initialized(utx
, sizeof(*utx
));