summaryrefslogtreecommitdiffstats
path: root/lib/libc/arch/vax/gen/isnormal.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/arch/vax/gen/isnormal.c')
-rw-r--r--lib/libc/arch/vax/gen/isnormal.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/lib/libc/arch/vax/gen/isnormal.c b/lib/libc/arch/vax/gen/isnormal.c
index a8b41cabd6e..f84a2417e0c 100644
--- a/lib/libc/arch/vax/gen/isnormal.c
+++ b/lib/libc/arch/vax/gen/isnormal.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: isnormal.c,v 1.5 2012/12/05 23:19:59 deraadt Exp $ */
+/* $OpenBSD: isnormal.c,v 1.6 2013/03/28 18:09:38 martynas Exp $ */
/*
* Copyright (c) 2008 Martynas Venckus <martynas@openbsd.org>
*
@@ -15,8 +15,6 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/* LINTLIBRARY */
-
#include <sys/types.h>
#include <machine/vaxfp.h>
#include <math.h>
@@ -37,9 +35,4 @@ __isnormalf(float f)
return (p->fflt_exp != 0);
}
-#ifdef lint
-/* PROTOLIB1 */
-int __isnormall(long double);
-#else /* lint */
-__weak_alias(__isnormall, __isnormal);
-#endif /* lint */
+__strong_alias(__isnormall, __isnormal);