mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-06 12:00:24 +08:00
8 lines
69 B
C
8 lines
69 B
C
|
#include <math.h>
|
||
|
|
||
|
int
|
||
|
foo (double d)
|
||
|
{
|
||
|
return floor (d) != 0.0;
|
||
|
}
|