mirror of
https://github.com/zeldaret/oot
synced 2026-08-05 09:34:22 -04:00
3475651701
* libc cleanup * Suggested changes, small alloca tweak * Remove printf include
10 lines
127 B
C
10 lines
127 B
C
#include "global.h"
|
|
|
|
float absf(float n) {
|
|
#ifndef __GNUC__
|
|
return fabsf(n);
|
|
#else
|
|
return __builtin_fabsf(n);
|
|
#endif
|
|
}
|