repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git]
/
compiler-rt
/
test
/
sanitizer_common
/
TestCases
/
Linux
/
closedir.c
blob
990628db4027358af374554680d10feb868563fe
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
); }