/* Reimplementation of Daniel J. Bernsteins tai library. * (C) 2001 Uwe Ohse, . * Report any bugs to . * Placed in the public domain. */ /* @(#) $Id: tai_sub.c 1.4 02/10/17 14:42:07+00:00 uwe@ranan.ohse.de $ */ #include "tai.h" void tai_sub (struct tai *target, const struct tai *s1, const struct tai *s2) { target->x = s1->x - s2->x; }