summary refs log tree commit diff
path: root/src/tai_sub.c
blob: e8916009d74af174a5a12494e5aa7527fe9e911d (plain) (blame)
1
2
3
4
5
6
7
8
/* Public domain. */

#include "tai.h"

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