musl - an implementation of the standard library for Linux-based systems
blob: ca0b6a46aaed3cf97d61724923593ea1b9d7aaf3 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#include <math.h>
/* uses LONG_MAX > 2^24, see comments in lrint.c */
long lrintf(float x)
{
return rintf(x);
}
|