]> git.notmuchmail.org Git - notmuch/blob - compat/have_timegm.c
b62b7937feab0362464bfb7856a15f4236978843
[notmuch] / compat / have_timegm.c
1 #include <time.h>
2 #include "compat.h"
3
4 int main()
5 {
6     return (int) timegm((struct tm *)0);
7 }