rustit/mirror_runit/runit-2.1.2/src/tai_now.c

10 lines
124 B
C
Raw Normal View History

2024-03-25 00:51:57 +01:00
/* Public domain. */
#include <time.h>
#include "tai.h"
void tai_now(struct tai *t)
{
tai_unix(t,time((time_t *) 0));
}