1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00
Files
glibc/sysdeps/ieee754/ldbl-opt/nldbl-isinf.c

11 lines
174 B
C

#include "nldbl-compat.h"
int
attribute_hidden
__isinfl (double x)
{
return isinf (x);
}
extern __typeof (__isinfl) isinfl attribute_hidden;
weak_alias (__isinfl, isinfl)