brintos

brintos / llvm-project-archived public Read only

0
0
Text · 146 B · 990628d Raw
6 lines · c
1// Check that closedir(NULL) is ok.2// RUN: %clang -O2 %s -o %t && %run %t3#include <sys/types.h>4#include <dirent.h>5int main() { closedir(0); }6