[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / compiler-rt / test / sanitizer_common / TestCases / Linux / closedir.c
blob990628db4027358af374554680d10feb868563fe
1 // Check that closedir(NULL) is ok.
2 // RUN: %clang -O2 %s -o %t && %run %t
3 #include <sys/types.h>
4 #include <dirent.h>
5 int main() { closedir(0); }