mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-06 12:00:24 +08:00
11 lines
176 B
C
11 lines
176 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)
|