1// REQUIRES: linux
2// RUN: %clangxx_msan -O0 %s -o %t && %run %t
3
4#include <stdlib.h>
5#include <sys/stat.h>
6
7int main(void) {
8 struct stat64 st;
9 if (fstat64(fd: 0, buf: &st))
10 exit(status: 1);
11
12 if (S_ISBLK(st.st_mode))
13 exit(status: 0);
14
15 return 0;
16}
17

source code of compiler-rt/test/msan/fstat64.cpp