/* * ===================================================================================== * * Filename: common_math.h * * Description: * * Version: 1.0 * Created: 04/02/24 07:33:21 PM IST * Revision: none * Compiler: gcc * * Author: YOUR NAME (), * Organization: * * ===================================================================================== */ #ifndef __COMMON_MATH__ #define __COMMON_MATH__ double add (double a, double b); double sub (double a, double b); double mul (double a, double b); double div (double a, double b); double max (double a, double b); double min (double a, double b); #endif /* __COMMON_MATH__ */