mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 19:08:09 +01:00
12 lines
123 B
C
12 lines
123 B
C
|
#include <time.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
struct tm tm;
|
||
|
|
||
|
(void) asctime_r (&tm, NULL);
|
||
|
|
||
|
return (0);
|
||
|
}
|