mirror of https://github.com/zeldaret/tp.git
43 lines
787 B
C
43 lines
787 B
C
//
|
|
// Generated By: dol2asm
|
|
// Translation Unit: PPC_EABI/Src/math_ppc
|
|
//
|
|
|
|
#include "MSL_C/PPC_EABI/Src/math_ppc.h"
|
|
#include "dol2asm.h"
|
|
#include "dolphin/types.h"
|
|
#include "fdlibm.h"
|
|
|
|
//
|
|
// Forward References:
|
|
//
|
|
|
|
float tanf(float);
|
|
float sinf(float);
|
|
float cosf(float);
|
|
float acosf(float);
|
|
|
|
//
|
|
// Declarations:
|
|
//
|
|
|
|
/* 8036C9C4-8036C9E8 367304 0024+00 0/0 2/2 0/0 .text tanf */
|
|
float tanf(float x) {
|
|
return tan(x);
|
|
}
|
|
|
|
/* 8036C9E8-8036CA0C 367328 0024+00 0/0 4/4 0/0 .text sinf */
|
|
float sinf(float x) {
|
|
return sin(x);
|
|
}
|
|
|
|
/* 8036CA0C-8036CA30 36734C 0024+00 0/0 4/4 0/0 .text cosf */
|
|
float cosf(float x) {
|
|
return cos(x);
|
|
}
|
|
|
|
/* 8036CA30-8036CA54 367370 0024+00 0/0 1/1 0/0 .text acosf */
|
|
float acosf(float x) {
|
|
return acos(x);
|
|
}
|