summaryrefslogtreecommitdiff
path: root/test/misc/tst-scandir.c
blob: e1c72e3c9c46eba544ee4bf04a715e79fd55e388 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <dirent.h>
#include <errno.h>
#include <stdio.h> /* perror() */
#include <stdlib.h>

static int skip_all(const struct dirent *dirbuf)
{
	errno = EBADF;
	return 0;
}

int main(void)
{
	struct dirent **namelist;
	int n;

	n = scandir(".", &namelist, skip_all, 0);
	if (n < 0) {
		perror("scandir");
		return EXIT_FAILURE;
	}
	return EXIT_SUCCESS;
}