mirror of
https://git.notmuchmail.org/git/notmuch
synced 2025-01-03 07:11:41 +01:00
13 lines
124 B
C
13 lines
124 B
C
|
#include <time.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int
|
||
|
main ()
|
||
|
{
|
||
|
struct tm tm;
|
||
|
|
||
|
(void) asctime_r (&tm, NULL);
|
||
|
|
||
|
return (0);
|
||
|
}
|