X-Git-Url: https://git.cworth.org/git?p=notmuch;a=blobdiff_plain;f=compat%2Fcheck_asctime.c;fp=compat%2Fcheck_asctime.c;h=b0e56f0c1a2b10e1bb46564d91967cb829101bc8;hp=0000000000000000000000000000000000000000;hb=49a0b96486242ca4fc4d26e5b01a34e9df7a9f9f;hpb=31c7001c99e042c2722217410d8a913875d44149 diff --git a/compat/check_asctime.c b/compat/check_asctime.c new file mode 100644 index 00000000..b0e56f0c --- /dev/null +++ b/compat/check_asctime.c @@ -0,0 +1,11 @@ +#include +#include + +int main() +{ + struct tm tm; + + (void) asctime_r (&tm, NULL); + + return (0); +}