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