Files
oot/src/libultra/libc/absf.c
T
Tharo 3475651701 libc cleanup (#1568)
* libc cleanup

* Suggested changes, small alloca tweak

* Remove printf include
2023-10-27 16:06:44 +02:00

10 lines
127 B
C

#include "global.h"
float absf(float n) {
#ifndef __GNUC__
return fabsf(n);
#else
return __builtin_fabsf(n);
#endif
}