/* * math_32.cpp * */ #include "math_32.h" float math32_div(float a, float b) { return a/b; } float math32_mul(float a, float b) { return a*b; }