about summary refs log tree commit diff
path: root/sysdeps/ieee754/ldbl-opt/nldbl-finite.c
blob: fc51508f16291f95fba58430f0ace529713447df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include "nldbl-compat.h"

int
attribute_hidden
__finitel (double x)
{
  return isfinite (x);
}
extern __typeof (__finitel) finitel attribute_hidden;
weak_alias (__finitel, finitel)