/* Reimplementation of Daniel J. Bernsteins tai library.
 * (C) 2001 Uwe Ohse, <uwe@ohse.de>.
 *   Report any bugs to <uwe@ohse.de>.
 * Placed in the public domain.
 */
/* @(#) $Id: tai_now.c 1.3 01/05/02 09:55:30+00:00 uwe@fjoras.ohse.de $ */
#include <time.h>
#include "tai.h"

void
tai_now (struct tai *target)
{
	time_t t=time((void *)0);
	tai_unix (target, t);
}


syntax highlighted by Code2HTML, v. 0.9.1