summaryrefslogtreecommitdiff
path: root/include/libc/math.h
blob: 1f2e97736f5715d538ee357544cfe1197536c9bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef MATH_H
#define MATH_H

#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif

float sinf(float);
double sin(double);
float cosf(float);
double cos(double);

float sqrtf(float);

#endif