runit

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

tai_sub.c (134B)


      1 /* Public domain. */
      2 
      3 #include "tai.h"
      4 
      5 void tai_sub(struct tai *t,const struct tai *u,const struct tai *v)
      6 {
      7   t->x = u->x - v->x;
      8 }