1 2 3 4 5 6 7 8 9
#include "global.h" #ifndef __GNUC__ #define __builtin_sqrtf sqrtf #endif f32 sqrtf(f32 f) { return __builtin_sqrtf(f); }