freebsd-dev/contrib/mdocml/test-dirent-namlen.c
Baptiste Daroussin 1fb816da82 Update to mandoc cvs version as of 20141201
- Compatiblity with existing manpages has been improved
- Now support ".so" directive with compressed manpages (which fixes a regression
we have since we have new man(1))
2014-12-02 23:24:57 +00:00

11 lines
126 B
C

#include <sys/types.h>
#include <dirent.h>
int
main(void)
{
struct dirent entry;
return (sizeof(entry.d_namlen) == 0);
}