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