summaryrefslogtreecommitdiffstats
path: root/lib/msun/src/s_rint.c
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1997-02-16 18:26:31 +0000
committerbde <bde@FreeBSD.org>1997-02-16 18:26:31 +0000
commit9e8f1bd4ec847780eb9aaf168c43f1271f0e37f5 (patch)
treeceebd776f63210707bd1eec59b604a7213f9a2ac /lib/msun/src/s_rint.c
parent85bd6daaf1022d92875e9125182a7b3db3f3b183 (diff)
downloadFreeBSD-src-9e8f1bd4ec847780eb9aaf168c43f1271f0e37f5.zip
FreeBSD-src-9e8f1bd4ec847780eb9aaf168c43f1271f0e37f5.tar.gz
Select between the generic math functions and the i387-specific ones
at runtime. etc/make.conf: Nuked HAVE_FPU option. lib/msun/Makefile: Always build the i387 objects. Copy the i387 source files at build time so that the i387 objects have different names. This is simpler than renaming the files in the cvs repository or repeating half of bsd.lib.mk to add explicit rules. lib/msun/src/*.c: Renamed all functions that have an i387-specific version by adding `__generic_' to their names. lib/msun/src/get_hw_float.c: New file for getting machdep.hw_float from the kernel. sys/i386/include/asmacros.h: Abuse the ENTRY() macro to generate jump vectors and associated code. This works much like PIC PLT dynamic initialization. The PIC case is messy. The old i387 entry points are renamed. Renaming is easier here because the names are given by macro expansions.
Diffstat (limited to 'lib/msun/src/s_rint.c')
-rw-r--r--lib/msun/src/s_rint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/msun/src/s_rint.c b/lib/msun/src/s_rint.c
index 44e9353..aa41452 100644
--- a/lib/msun/src/s_rint.c
+++ b/lib/msun/src/s_rint.c
@@ -45,9 +45,9 @@ TWO52[2]={
};
#ifdef __STDC__
- double rint(double x)
+ double __generic_rint(double x)
#else
- double rint(x)
+ double __generic_rint(x)
double x;
#endif
{
OpenPOWER on IntegriCloud