aboutsummaryrefslogtreecommitdiff
path: root/tai_add.c
blob: 4226ab4a7ee35440c5a80a9eb8216925033519f6 (plain)
1
2
3
4
5
6
#include "tai.h"

void tai_add(struct tai *t,const struct tai *u,const struct tai *v)
{
  t->x = u->x + v->x;
}