summaryrefslogtreecommitdiff
path: root/src/libstddjb/tai_add.c
blob: 5a3d47a3bdc21173f55396b9db087ddf4626abbd (plain)
1
2
3
4
5
6
7
8
9
/* ISC license. */

#include <skalibs/tai.h>

int tai_add (tai_t *t, tai_t const *u, tai_t const *v)
{
  t->x = u->x + v->x ;
  return 1 ;
}