notmuch/compat/have_timegm.c
uncrustify 8099050c71 compat: run uncrustify
This is the result of running

     $ uncrustify --replace --config ../devel/uncrustify.cfg *.c *.h

in the compat directory
2019-06-14 07:41:27 -03:00

7 lines
78 B
C

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