Shipwright/soh/src/libultra/libc/absf.c

6 lines
62 B
C

#include "global.h"
f32 absf(f32 a) {
return fabsf(a);
}