fa00327fbf
* intl/l10nflist.c: Fix conditional on #include <argz.h>. * libio/stdio.h (FOPEN_MAX, FILENAME_MAX, TMP_MAX, L_tmpnam): Macros removed. Instead, include <stdio_lim.h>. * libio/_G_config.h: New file. * libio/Makefile (headers): Add _G_config.h. * MakeTAGS (po/errlist.pot): Extract from sysdeps/gnu/errlist.c.
18 lines
318 B
ArmAsm
18 lines
318 B
ArmAsm
/*
|
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <machine/asm.h>
|
|
|
|
RCSID("$NetBSD: s_finite.S,v 1.4 1995/05/08 23:57:41 jtc Exp $")
|
|
|
|
ENTRY(__finite)
|
|
movl 8(%esp),%eax
|
|
andl $0x7ff00000, %eax
|
|
cmpl $0x7ff00000, %eax
|
|
setnel %eax
|
|
andl $0x000000ff, %eax
|
|
ret
|
|
weak_alias (__finite, finite)
|