You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
211 B
C

#include "taia.h"
/* XXX: breaks tai encapsulation */
void taia_addsec(struct taia *t,const struct taia *u,long secs)
{
t->sec.x = u->sec.x + (uint64)(int64)secs;
t->nano = u->nano;
t->atto = u->atto;
}