8 lines
102 B
C
8 lines
102 B
C
|
#include <math.h>
|
||
|
#include "headers/lroundf.h"
|
||
|
|
||
|
long int lroundf(float x)
|
||
|
{
|
||
|
return _lroundf(x);
|
||
|
}
|