summaryrefslogtreecommitdiffstats
path: root/lib/libc
diff options
context:
space:
mode:
authormartynas <martynas@openbsd.org>2008-12-12 23:44:37 +0000
committermartynas <martynas@openbsd.org>2008-12-12 23:44:37 +0000
commit2d513790850b3ff0e05e8207dad8a6e821cded10 (patch)
tree8d66a053e37b4af457291de0fb8c22feea2a18f7 /lib/libc
parentCheck for zero'd spd data even if we pass the checksum (diff)
downloadwireguard-openbsd-2d513790850b3ff0e05e8207dad8a6e821cded10.tar.xz
wireguard-openbsd-2d513790850b3ff0e05e8207dad8a6e821cded10.zip
__isinff and __isnanf
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/arch/vax/gen/isinf.c4
-rw-r--r--lib/libc/arch/vax/gen/isnan.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/arch/vax/gen/isinf.c b/lib/libc/arch/vax/gen/isinf.c
index 435767ebc7d..636e7983da4 100644
--- a/lib/libc/arch/vax/gen/isinf.c
+++ b/lib/libc/arch/vax/gen/isinf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: isinf.c,v 1.10 2008/12/12 18:53:06 martynas Exp $ */
+/* $OpenBSD: isinf.c,v 1.11 2008/12/12 23:44:37 martynas Exp $ */
/*-
* Copyright (c) 1991, 1993
@@ -40,7 +40,7 @@ __isinf(double d)
/* ARGSUSED */
int
-isinff(float f)
+__isinff(float f)
{
return(0);
}
diff --git a/lib/libc/arch/vax/gen/isnan.c b/lib/libc/arch/vax/gen/isnan.c
index 260790bdc86..1b33ca64234 100644
--- a/lib/libc/arch/vax/gen/isnan.c
+++ b/lib/libc/arch/vax/gen/isnan.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: isnan.c,v 1.4 2008/12/12 18:53:06 martynas Exp $ */
+/* $OpenBSD: isnan.c,v 1.5 2008/12/12 23:44:37 martynas Exp $ */
/*
* Copyright (c) Martynas Venckus <martynas@openbsd.org>
*
@@ -26,7 +26,7 @@ __isnan(double d)
/* ARGSUSED */
int
-isnanf(float f)
+__isnanf(float f)
{
return(0);
}