diff options
author | Martynas Venckus <martynas@cvs.openbsd.org> | 2008-12-12 18:53:07 +0000 |
---|---|---|
committer | Martynas Venckus <martynas@cvs.openbsd.org> | 2008-12-12 18:53:07 +0000 |
commit | 3b05cb6795d2f4bd86aeebda0552334a0ae4aaa4 (patch) | |
tree | 7b745873dc6ef6a10dfd5ba119a9ea7767945765 /lib | |
parent | c7ef273582ac756a3fee8791ee3e0ff197bc18d6 (diff) |
do the same as was done in mi version: do not include math.h, since isinf,
and isnan would expand to macros and compatibility aliases won't work
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/arch/vax/gen/isinf.c | 3 | ||||
-rw-r--r-- | lib/libc/arch/vax/gen/isnan.c | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/lib/libc/arch/vax/gen/isinf.c b/lib/libc/arch/vax/gen/isinf.c index f19a0b08337..435767ebc7d 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.9 2008/12/10 01:15:02 martynas Exp $ */ +/* $OpenBSD: isinf.c,v 1.10 2008/12/12 18:53:06 martynas Exp $ */ /*- * Copyright (c) 1991, 1993 @@ -30,7 +30,6 @@ */ #include <sys/cdefs.h> -#include <math.h> /* ARGSUSED */ int diff --git a/lib/libc/arch/vax/gen/isnan.c b/lib/libc/arch/vax/gen/isnan.c index bcc452025fa..260790bdc86 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.3 2008/12/10 01:15:02 martynas Exp $ */ +/* $OpenBSD: isnan.c,v 1.4 2008/12/12 18:53:06 martynas Exp $ */ /* * Copyright (c) Martynas Venckus <martynas@openbsd.org> * @@ -16,7 +16,6 @@ */ #include <sys/cdefs.h> -#include <math.h> /* ARGSUSED */ int |