mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-15 01:21:06 +00:00
11 lines
174 B
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)
|