notmuch/compat/have_timegm.c

7 lines
75 B
C
Raw Normal View History

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