/* File: addten.c Implementation of the add10() function. */ #include "addi.h" int add10(int n) { return add5( add5(n) ) ; }