diff options
| author | TakaRikka <38417346+TakaRikka@users.noreply.github.com> | 2024-04-15 17:39:47 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-15 18:39:47 -0600 |
| commit | a0a5d6b00a6fb0e0b88c5176b3ae307d194acff2 (patch) | |
| tree | c7032a9f2ca3db0b8db2f4fcc2f8be6b9fe1c78f /libs | |
| parent | ae4ef8e69d9d0029010b432a7e3040be55fd5351 (diff) | |
d_a_tag_event / d_a_tag_chkpoint done (#2133)
* cleanup evtarea
* d_a_tag_chkpoint done
* d_a_tag_event done
* remove asm
Diffstat (limited to 'libs')
| -rw-r--r-- | libs/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/cmath.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libs/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/cmath.h b/libs/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/cmath.h index 88866003e2..aff37fb6d1 100644 --- a/libs/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/cmath.h +++ b/libs/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/cmath.h @@ -7,10 +7,14 @@ namespace std { return ::fabsf(num); } */ -float fabsf(float num) { +inline float fabsf(float num) { return ::fabsf(num); } +inline float sqrt(float x) { + return ::sqrtf(x); +} + /* float abs(float num) { return ::fabsf(num); } */ |
