blob: 577ab2db28db73f66db2ae5017c9dc281e653fcb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#include "nldbl-compat.h"
int
attribute_hidden
__isinfl (double x)
{
return isinf (x);
}
extern __typeof (__isinfl) isinfl attribute_hidden;
weak_alias (__isinfl, isinfl)
|