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
bits/syscall.h: add landlock syscalls from linux v5.13
[musl.git]
/
src
/
math
/
finite.c
blob
25a0575fb9757d6ddaec5a538db7984d007fdb55
1
#define _GNU_SOURCE
2
#include <math.h>
3
4
int
finite
(
double
x
)
5
{
6
return
isfinite
(
x
);
7
}