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
/
llrint.c
blob
4f583ae5536aa6152c3bab8671846da507f8f57e
1
#include <math.h>
2
3
/* uses LLONG_MAX > 2^53, see comments in lrint.c */
4
5
long long
llrint
(
double
x
)
6
{
7
return
rint
(
x
);
8
}