aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test-dirent-namlen.c
blob: 032e75eb09d23e2d6a3ce16249dcdecfb0bec010 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include <sys/types.h>
#include <dirent.h>

int
main(void)
{
	struct dirent	 entry;

	return sizeof(entry.d_namlen) == 0;
}