runit

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

tai_now.c (124B)


      1 /* Public domain. */
      2 
      3 #include <time.h>
      4 #include "tai.h"
      5 
      6 void tai_now(struct tai *t)
      7 {
      8   tai_unix(t,time((time_t *) 0));
      9 }