glibc/sysdeps/ieee754/ldbl-opt/nldbl-isinf.c

11 lines
176 B
C
Raw Normal View History

2007-07-13 02:26:36 +08:00
#include "nldbl-compat.h"
int
attribute_hidden
__isinfl (double x)
{
return __isinf (x);
}
extern __typeof (__isinfl) isinfl attribute_hidden;
weak_alias (__isinfl, isinfl)