mirror of
https://github.com/Hizenberg469/C1-Linux_SYS_Prog-AS-.git
synced 2026-04-20 02:42:23 +03:00
How to make Makefile?
This commit is contained in:
27
Makefile_Assignment/trig_math/trig_math.h
Normal file
27
Makefile_Assignment/trig_math/trig_math.h
Normal file
@@ -0,0 +1,27 @@
|
||||
/*
|
||||
* =====================================================================================
|
||||
*
|
||||
* Filename: trig_math.h
|
||||
*
|
||||
* Description:
|
||||
*
|
||||
* Version: 1.0
|
||||
* Created: 04/02/24 07:37:55 PM IST
|
||||
* Revision: none
|
||||
* Compiler: gcc
|
||||
*
|
||||
* Author: YOUR NAME (),
|
||||
* Organization:
|
||||
*
|
||||
* =====================================================================================
|
||||
*/
|
||||
|
||||
#ifndef __TRIG_MATH__
|
||||
#define __TRIG_MATH__
|
||||
|
||||
#define PI 3.142
|
||||
|
||||
double sine(double x);
|
||||
double cosine(double x);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user