How to make Makefile?

This commit is contained in:
2024-02-04 20:19:52 +05:30
parent ebafca3461
commit dee48d5d1b
8 changed files with 257 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
/*
* =====================================================================================
*
* 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__ */