repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
don't reject unknown/future flags in sigaltstack, allow SS_AUTODISARM
[musl.git]
/
src
/
math
/
lrintf.c
blob
ca0b6a46aaed3cf97d61724923593ea1b9d7aaf3
1
#include <math.h>
2
3
/* uses LONG_MAX > 2^24, see comments in lrint.c */
4
5
long
lrintf
(
float
x
)
6
{
7
return
rintf
(
x
);
8
}