summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/msun/Makefile2
-rw-r--r--lib/msun/src/math.h2
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