diff options
| author | Bruce Evans <bde@FreeBSD.org> | 2007-06-14 06:39:18 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 2007-06-14 06:39:18 +0000 |
| commit | 4dbd66cbf3e97398a4df72a8e6bd6ea525cc928a (patch) | |
| tree | 2dedc23df4655a7ba0d8069b8cbcb6b653dfda1d | |
| parent | 212599721f3542c6f3c4f8ceb14fca46199fba41 (diff) | |
Notes
| -rw-r--r-- | lib/msun/Makefile | 2 | ||||
| -rw-r--r-- | lib/msun/src/math.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/msun/Makefile b/lib/msun/Makefile index 5a41425fcb34..3bd964021cbd 100644 --- a/lib/msun/Makefile +++ b/lib/msun/Makefile @@ -63,7 +63,7 @@ LIBCDIR= ${.CURDIR}/../libc CFLAGS+= -I${LIBCDIR}/include -I${LIBCDIR}/${MACHINE_ARCH} # C99 long double functions -COMMON_SRCS+= s_copysignl.c s_fabsl.c +COMMON_SRCS+= s_copysignl.c s_fabsl.c s_modfl.c .if ${LDBL_PREC} != 53 # If long double != double use these; otherwise, we alias the double versions. COMMON_SRCS+= s_fmal.c s_frexpl.c s_nextafterl.c s_nexttoward.c s_scalbnl.c diff --git a/lib/msun/src/math.h b/lib/msun/src/math.h index ba918a36ede6..a5d16c548a76 100644 --- a/lib/msun/src/math.h +++ b/lib/msun/src/math.h @@ -439,8 +439,8 @@ long double logl(long double); long lrintl(long double); #endif long lroundl(long double); -#if 0 long double modfl(long double, long double *); /* fundamentally !__pure2 */ +#if 0 long double nanl(const char *) __pure2; long double nearbyintl(long double); #endif |
