diff options
author | 2002-04-28 20:55:14 +0000 | |
---|---|---|
committer | 2002-04-28 20:55:14 +0000 | |
commit | 433075b677c777521ff41c472a63bf121c105d64 (patch) | |
tree | 609507c55fce59c8a18b5b9d74380f01e5c6d9f2 /sys/lib/libkern/arch | |
parent | sync (diff) | |
download | wireguard-openbsd-433075b677c777521ff41c472a63bf121c105d64.tar.xz wireguard-openbsd-433075b677c777521ff41c472a63bf121c105d64.zip |
IEEE 754 floating point completion code, and implementation of the
FP_C (Floating Point Control Quadword).
From ross@NetBSD. Added a way to disable it with option NO_IEEE,
which appears on the ramdisks to save space. This affects only
programs compiled with -mieee, and what it essentially does is
enabling infinities and NaNs, instead of generating SIGFPE on
division by zero, overflow, etc.
ok art, deraadt
Diffstat (limited to 'sys/lib/libkern/arch')
-rw-r--r-- | sys/lib/libkern/arch/alpha/Makefile.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/lib/libkern/arch/alpha/Makefile.inc b/sys/lib/libkern/arch/alpha/Makefile.inc index af056c8c99f..b984665e3a5 100644 --- a/sys/lib/libkern/arch/alpha/Makefile.inc +++ b/sys/lib/libkern/arch/alpha/Makefile.inc @@ -1,10 +1,10 @@ -# $OpenBSD: Makefile.inc,v 1.11 2000/12/18 18:40:45 provos Exp $ +# $OpenBSD: Makefile.inc,v 1.12 2002/04/28 20:55:14 pvalchev Exp $ # $NetBSD: Makefile.inc,v 1.9 1996/08/27 00:44:24 cgd Exp $ SRCS+= __main.c imax.c imin.c lmax.c lmin.c max.c min.c ulmax.c ulmin.c \ memchr.c memcmp.c memset.c \ - bcmp.c bzero.S ffs.S strcat.c strcmp.c strcpy.c strlcat.c strlcpy.c \ - strlen.c strncmp.c \ + bcmp.c bzero.S ffs.S softfloat.c strcat.c strcmp.c strcpy.c \ + strlcat.c strlcpy.c strlen.c strncmp.c \ strncpy.c scanc.c skpc.c htonl.S htons.S ntohl.S ntohs.S \ random.c strncasecmp.c |