LINT 型数値と、int 型数値の和を計算します。
/* sadd.c */ #include "longint.h" LINT sadd(LINT a, int n) { linc(&a, n); return a; }