diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2007-06-01 05:52:43 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2007-06-01 05:52:43 +0000 |
commit | f06ebeccb1533c9f283ca73299c499f674044551 (patch) | |
tree | 7cca147238cc0a5eeae28d1a3953f772b605f484 | |
parent | 8e75d9bf99242f8c8e9d60033f03801493638e43 (diff) |
add __signbitl for i387 (not used yet)
-rw-r--r-- | lib/libm/arch/i387/s_signbitl_e.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/libm/arch/i387/s_signbitl_e.c b/lib/libm/arch/i387/s_signbitl_e.c new file mode 100644 index 00000000000..a21c45ec143 --- /dev/null +++ b/lib/libm/arch/i387/s_signbitl_e.c @@ -0,0 +1,19 @@ +/* $OpenBSD: s_signbitl_e.c,v 1.1 2007/06/01 05:52:42 jason Exp $ */ + +/* + * Written by Jason L. Wright (jason@thought.net) in 2007 and placed + * into the public domain. + */ + +#include "math.h" +#include "math_private.h" + +/* __signbitl for extended long double */ + +int +__signbitl(long double l) +{ + ieee_extended_shape_type e; + e.value = l; + return (e.parts.msw & 0x8000); +} |