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

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