/* * Written by J.T. Conklin . * Public domain. * * Adapted for `long double' by Ulrich Drepper . */ #include RCSID("$NetBSD: $") ENTRY(__finitel) movl 12(%esp),%eax andl $0x7fff, %eax cmpl $0x7fff, %eax setne %al andl $0x000000ff, %eax ret END (__finitel) weak_alias (__finitel, finitel)