diff options
author | peter <peter@FreeBSD.org> | 2003-07-23 04:53:47 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2003-07-23 04:53:47 +0000 |
commit | 52ebc02e142d76325570f2edbf2032977e674d7d (patch) | |
tree | 4a260472bb8a86bcc6fd933fe4725a9d0363f0b0 /lib/msun/src/s_ilogb.c | |
parent | d0f145218dac9a16b45e76cb6228f2eead2f6b2e (diff) | |
download | FreeBSD-src-52ebc02e142d76325570f2edbf2032977e674d7d.zip FreeBSD-src-52ebc02e142d76325570f2edbf2032977e674d7d.tar.gz |
Only provide one copy of the math functions. If we provide a MD function,
do not also provide a __generic_XXX version as well. This is how we
used to runtime select the generic vs i387 versions on the i386 platform.
This saves a pile of #defines in the src/math_private.h file to undo the
__generic_XXX renames in some of the *.c files.
Diffstat (limited to 'lib/msun/src/s_ilogb.c')
-rw-r--r-- | lib/msun/src/s_ilogb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/msun/src/s_ilogb.c b/lib/msun/src/s_ilogb.c index f73aa5b..ef24efa 100644 --- a/lib/msun/src/s_ilogb.c +++ b/lib/msun/src/s_ilogb.c @@ -23,7 +23,7 @@ static char rcsid[] = "$FreeBSD$"; #include "math.h" #include "math_private.h" - int __generic_ilogb(double x) + int ilogb(double x) { int32_t hx,lx,ix; |