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.
|
#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 + secs;
|
|
t->nano = u->nano;
|
|
t->atto = u->atto;
|
|
}
|