/* $NetBSD: eqsf2.c,v 1.1 2000/06/06 08:15:03 bjh21 Exp $ */ /* * Written by Ben Harris, 2000. This file is in the Public Domain. */ #include #if defined(LIBC_SCCS) && !defined(lint) __RCSID("$NetBSD: eqsf2.c,v 1.1 2000/06/06 08:15:03 bjh21 Exp $"); #endif /* LIBC_SCCS and not lint */ #include "softfloat-for-gcc.h" #include "milieu.h" #include "softfloat.h" flag __eqsf2(float32, float32); flag __eqsf2(float32 a, float32 b) { /* libgcc1.c says !(a == b) */ return !float32_eq(a, b); }
NetBSD fork for lockdoc analysismerlin@scholz.ruhr
summaryrefslogtreecommitdiff
path: root/sys/arch/mipsco/include/param.h
AgeCommit message (Expand)Author
2009-12-14Merge from matt-nb5-mips64matt
2009-08-13Move MID_MACHINE to <mips/mips_param.h> and use local values so we don'tmatt
2009-03-14Remove all the __P() from sys (excluding sys/dist)dsl
2007-10-17Merge the ppcoea-renovation branch to HEAD.garbled
2007-07-26Move the include of <machine/intr.h> into the _KERNEL / _LOCORE #ifdefs.he
2006-09-26Protect from multiple inclusion.tsutsui
2006-09-10Change dumb DELAY(9) macro into inline version with asm liketsutsui
2005-12-11merge ktrace-lwp.christos
2003-08-07Move UCB-licensed code from 4-clause to 3-clause licence.agc
2002-02-26Purge CLSIZE, CLSIZELOG2 and MCLOFSET.simonb
2001-05-30use _KERNEL_OPTmrg
2000-08-12Initial commit of port to MIPS Computer Systems RC3xxx systems.wdk