From ae844dec6cde2e48e7390ff7929103fa85648490 Mon Sep 17 00:00:00 2001 From: matt Date: Thu, 30 Jan 2014 19:11:41 +0000 Subject: Make confiditon on FLOAT128 --- lib/libc/softfloat/unordtf2.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'lib/libc/softfloat') diff --git a/lib/libc/softfloat/unordtf2.c b/lib/libc/softfloat/unordtf2.c index 37120d10ced..ec3dda102ff 100644 --- a/lib/libc/softfloat/unordtf2.c +++ b/lib/libc/softfloat/unordtf2.c @@ -1,4 +1,4 @@ -/* $NetBSD: unordtf2.c,v 1.1 2014/01/30 19:06:54 matt Exp $ */ +/* $NetBSD: unordtf2.c,v 1.2 2014/01/30 19:11:41 matt Exp $ */ /* * Written by Richard Earnshaw, 2003. This file is in the Public Domain. @@ -10,9 +10,11 @@ #include #if defined(LIBC_SCCS) && !defined(lint) -__RCSID("$NetBSD: unordtf2.c,v 1.1 2014/01/30 19:06:54 matt Exp $"); +__RCSID("$NetBSD: unordtf2.c,v 1.2 2014/01/30 19:11:41 matt Exp $"); #endif /* LIBC_SCCS and not lint */ +#ifdef FLOAT128 + flag __unordtf2(float128, float128); flag @@ -26,3 +28,5 @@ __unordtf2(float128 a, float128 b) */ return 1 ^ (float128_eq(a, a) & float128_eq(b, b)); } + +#endif /* FLOAT128 */ -- cgit