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

int
attribute_hidden
__isnanl (double x)
{
  return isnan (x);
}
extern __typeof (__isnanl) isnanl attribute_hidden;
weak_alias (__isnanl, isnanl)