mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-25 12:28:09 +01:00
f7130468d2
[dgit import orig notmuch_0.28.2.orig.tar.gz]
11 lines
123 B
C
11 lines
123 B
C
#include <time.h>
|
|
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
struct tm tm;
|
|
|
|
(void) asctime_r (&tm, NULL);
|
|
|
|
return (0);
|
|
}
|