blob: f9b6a661fddd5802403b7ebf8c4fd6526e3bf8c1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*
* Items: closedir(
* Standardized-By: SuS
* Detected-by: gcc-4.4.3 + Linux
*/
#include <sys/types.h>
#include <dirent.h>
main(int arg, char **argv)
{
(void)closedir(0);
}
|