diff options
Diffstat (limited to 'lib/libc/softfloat')
| -rw-r--r-- | lib/libc/softfloat/unordtf2.c | 8 |
1 files changed, 6 insertions, 2 deletions
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 <sys/cdefs.h> #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 */ |
