]> git.cworth.org Git - notmuch/blob - compat/have_d_type.c
notmuch (0.38.2-1.1) unstable; urgency=medium
[notmuch] / compat / have_d_type.c
1 #include <dirent.h>
2
3 int
4 main ()
5 {
6     struct dirent ent;
7
8     (void) ent.d_type;
9
10     return 0;
11 }