1 /* Reimplementation of Daniel J. Bernsteins tai library.
2  * (C) 2001 Uwe Ohse, <uwe@ohse.de>.
3  *   Report any bugs to <uwe@ohse.de>.
4  * Placed in the public domain.
5  */
6 /* @(#) $Id: tai_now.c 1.3 01/05/02 09:55:30+00:00 uwe@fjoras.ohse.de $ */
7 #include <time.h>
8 #include "tai.h"
9 
10 void
tai_now(struct tai * target)11 tai_now (struct tai *target)
12 {
13 	time_t t=time((void *)0);
14 	tai_unix (target, t);
15 }
16