diff options
Diffstat (limited to 'lib/libc/gen/modf.c')
| -rw-r--r-- | lib/libc/gen/modf.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/lib/libc/gen/modf.c b/lib/libc/gen/modf.c index fde7cd82bab..586ed28a49a 100644 --- a/lib/libc/gen/modf.c +++ b/lib/libc/gen/modf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: modf.c,v 1.4 2011/07/08 22:48:19 martynas Exp $ */ +/* $OpenBSD: modf.c,v 1.5 2013/03/28 18:09:38 martynas Exp $ */ /* $NetBSD: modf.c,v 1.1 1995/02/10 17:50:25 cgd Exp $ */ /* @@ -28,8 +28,6 @@ * rights to redistribute these changes. */ -/* LINTLIBRARY */ - #include <sys/types.h> #include <machine/ieee.h> #include <errno.h> @@ -107,10 +105,5 @@ modf(double val, double *iptr) } #if LDBL_MANT_DIG == 53 -#ifdef lint -/* PROTOLIB1 */ -long double frexpl(long double, int *); -#else /* lint */ -__weak_alias(modfl, modf); -#endif /* lint */ +__strong_alias(modfl, modf); #endif /* LDBL_MANT_DIG == 53 */ |
