axle OS
x86_32 UNIX-like hobby OS
sincostan.h
1 #ifndef SINCOSTAN_H
2 #define SINCOSTAN_H
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 double sin(double x);
9 double cos(double x);
10 double tan(double x);
11 
12 #ifdef __cplusplus
13 }
14 #endif
15 #endif