Files
Diddy-Kong-Racing/include/libc/math.h
T
c41bbf9131 Match 3 libultra funcs + some texture init labels (#383)
* Fix warnings

* Update src/thread0_epc.c

Co-authored-by: Ryan Myers <ryan.p.myers@gmail.com>

* identify some texture init stuff

* match _Litob

* match cosf

* match sinf

* formatting

* Update math.h

* Delete sinf.s

* quick fix

---------

Co-authored-by: Ryan Myers <ryan.p.myers@gmail.com>
2023-04-16 14:50:14 +01:00

11 lines
150 B
C

#ifndef MATH_H
#define MATH_H
#define M_PI 3.14159265358979323846
f32 sinf(f32 x); //official name: fsin
f32 cosf(f32 x);
f32 sqrtf(f32 x);
#endif