aboutsummaryrefslogtreecommitdiffhomepage
path: root/compat/have_d_type.c
blob: 9ca6c6e08ed6cad81e84bf012e224c3225fecce7 (plain)
1
2
3
4
5
6
7
8
9
10
#include <dirent.h>

int main()
{
    struct dirent ent;

    (void) ent.d_type;

    return 0;
}