notmuch/compat/have_timegm.c
David Bremner f7130468d2 Import notmuch_0.28.2.orig.tar.gz
[dgit import orig notmuch_0.28.2.orig.tar.gz]
2019-02-17 07:30:33 -04:00

6 lines
75 B
C

#include <time.h>
int main()
{
return (int) timegm((struct tm *)0);
}