mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
8099050c71
This is the result of running $ uncrustify --replace --config ../devel/uncrustify.cfg *.c *.h in the compat directory
12 lines
124 B
C
12 lines
124 B
C
#include <time.h>
|
|
#include <stdio.h>
|
|
|
|
int
|
|
main ()
|
|
{
|
|
struct tm tm;
|
|
|
|
(void) asctime_r (&tm, NULL);
|
|
|
|
return (0);
|
|
}
|