Sign in
android
/
platform
/
external
/
compiler-rt
/
8984d7254161da3bf3e64f6b4da1b13a028f55d5
/
.
/
test
/
sanitizer_common
/
TestCases
/
Linux
/
closedir.c
blob: 990628db4027358af374554680d10feb868563fe [
file
] [
log
] [
blame
]
// Check that closedir(NULL) is ok.
// RUN: %clang -O2 %s -o %t && %run %t
#include
<sys/types.h>
#include
<dirent.h>
int
main
()
{
closedir
(
0
);
}