1fb816da82
- 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))
11 lines
126 B
C
11 lines
126 B
C
#include <sys/types.h>
|
|
#include <dirent.h>
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
struct dirent entry;
|
|
|
|
return (sizeof(entry.d_namlen) == 0);
|
|
}
|