1 #include <math.h>
2 #include "headers/truncf.h"
3 
truncf(float x)4 float truncf(float x)
5 {
6     return _truncf(x);
7 }
8