#include "mathlib.h" int c_add(int a, int b) { return a + b; } int c_multiply(int a, int b) { return a * b; }