freebsd-src/contrib/mandoc/test-dirent-namlen.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
124 B
C
Raw Normal View History

#include <sys/types.h>
#include <dirent.h>
int
main(void)
{
struct dirent entry;
2016-01-15 23:08:59 +00:00
return sizeof(entry.d_namlen) == 0;
}