1#include <sys/types.h>
2#include <dirent.h>
3
4int
5main(void)
6{
7	struct dirent	 entry;
8
9	return sizeof(entry.d_namlen) == 0;
10}
11