diff options
author | Martynas Venckus <martynas@cvs.openbsd.org> | 2008-12-10 01:15:03 +0000 |
---|---|---|
committer | Martynas Venckus <martynas@cvs.openbsd.org> | 2008-12-10 01:15:03 +0000 |
commit | 8f0cfa27d663f63d55199b1e5cfc60fb60d0b644 (patch) | |
tree | d69c6db8fa507ce0d05b05d79d2492da1faef59c /lib/libc/gen | |
parent | 0d45787e277d38b2d40639aa72603d75a9fafc17 (diff) |
use sys/cdefs.h; pointed out by theo
Diffstat (limited to 'lib/libc/gen')
-rw-r--r-- | lib/libc/gen/fpclassify.c | 4 | ||||
-rw-r--r-- | lib/libc/gen/frexp.c | 4 | ||||
-rw-r--r-- | lib/libc/gen/isfinite.c | 4 | ||||
-rw-r--r-- | lib/libc/gen/isinf.c | 4 | ||||
-rw-r--r-- | lib/libc/gen/isnan.c | 4 | ||||
-rw-r--r-- | lib/libc/gen/isnormal.c | 4 | ||||
-rw-r--r-- | lib/libc/gen/signbit.c | 4 |
7 files changed, 14 insertions, 14 deletions
diff --git a/lib/libc/gen/fpclassify.c b/lib/libc/gen/fpclassify.c index 60d21770bfb..6f0636044dc 100644 --- a/lib/libc/gen/fpclassify.c +++ b/lib/libc/gen/fpclassify.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fpclassify.c,v 1.3 2008/12/09 19:52:34 martynas Exp $ */ +/* $OpenBSD: fpclassify.c,v 1.4 2008/12/10 01:15:02 martynas Exp $ */ /* * Copyright (c) 2008 Martynas Venckus <martynas@openbsd.org> * @@ -16,7 +16,7 @@ */ #include <sys/types.h> -#include <machine/cdefs.h> +#include <sys/cdefs.h> #include <machine/ieee.h> #include <float.h> #include <math.h> diff --git a/lib/libc/gen/frexp.c b/lib/libc/gen/frexp.c index 230edd8e20a..e52c1b85d30 100644 --- a/lib/libc/gen/frexp.c +++ b/lib/libc/gen/frexp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: frexp.c,v 1.3 2008/12/09 20:32:06 martynas Exp $ */ +/* $OpenBSD: frexp.c,v 1.4 2008/12/10 01:15:02 martynas Exp $ */ /*- * Copyright (c) 2004 David Schultz <das@FreeBSD.ORG> @@ -29,7 +29,7 @@ */ #include <sys/types.h> -#include <machine/cdefs.h> +#include <sys/cdefs.h> #include <machine/ieee.h> #include <float.h> #include <math.h> diff --git a/lib/libc/gen/isfinite.c b/lib/libc/gen/isfinite.c index 537eed7716a..c7e68a1d825 100644 --- a/lib/libc/gen/isfinite.c +++ b/lib/libc/gen/isfinite.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isfinite.c,v 1.3 2008/12/09 19:52:34 martynas Exp $ */ +/* $OpenBSD: isfinite.c,v 1.4 2008/12/10 01:15:02 martynas Exp $ */ /* * Copyright (c) 2008 Martynas Venckus <martynas@openbsd.org> * @@ -16,7 +16,7 @@ */ #include <sys/types.h> -#include <machine/cdefs.h> +#include <sys/cdefs.h> #include <machine/ieee.h> #include <float.h> #include <math.h> diff --git a/lib/libc/gen/isinf.c b/lib/libc/gen/isinf.c index a7b991b1c7f..67287fd50b7 100644 --- a/lib/libc/gen/isinf.c +++ b/lib/libc/gen/isinf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isinf.c,v 1.3 2008/12/09 19:52:34 martynas Exp $ */ +/* $OpenBSD: isinf.c,v 1.4 2008/12/10 01:15:02 martynas Exp $ */ /* * Copyright (c) 2008 Martynas Venckus <martynas@openbsd.org> * @@ -16,7 +16,7 @@ */ #include <sys/types.h> -#include <machine/cdefs.h> +#include <sys/cdefs.h> #include <machine/ieee.h> #include <float.h> diff --git a/lib/libc/gen/isnan.c b/lib/libc/gen/isnan.c index eadb1f18a5e..6faefac3236 100644 --- a/lib/libc/gen/isnan.c +++ b/lib/libc/gen/isnan.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isnan.c,v 1.3 2008/12/09 19:52:34 martynas Exp $ */ +/* $OpenBSD: isnan.c,v 1.4 2008/12/10 01:15:02 martynas Exp $ */ /* * Copyright (c) 2008 Martynas Venckus <martynas@openbsd.org> * @@ -16,7 +16,7 @@ */ #include <sys/types.h> -#include <machine/cdefs.h> +#include <sys/cdefs.h> #include <machine/ieee.h> #include <float.h> diff --git a/lib/libc/gen/isnormal.c b/lib/libc/gen/isnormal.c index 40e59913a02..8ca65aa7091 100644 --- a/lib/libc/gen/isnormal.c +++ b/lib/libc/gen/isnormal.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isnormal.c,v 1.3 2008/12/09 19:52:34 martynas Exp $ */ +/* $OpenBSD: isnormal.c,v 1.4 2008/12/10 01:15:02 martynas Exp $ */ /* * Copyright (c) 2008 Martynas Venckus <martynas@openbsd.org> * @@ -16,7 +16,7 @@ */ #include <sys/types.h> -#include <machine/cdefs.h> +#include <sys/cdefs.h> #include <machine/ieee.h> #include <float.h> #include <math.h> diff --git a/lib/libc/gen/signbit.c b/lib/libc/gen/signbit.c index b4a3f3617e1..d2caa82dd19 100644 --- a/lib/libc/gen/signbit.c +++ b/lib/libc/gen/signbit.c @@ -1,4 +1,4 @@ -/* $OpenBSD: signbit.c,v 1.2 2008/12/09 19:52:34 martynas Exp $ */ +/* $OpenBSD: signbit.c,v 1.3 2008/12/10 01:15:02 martynas Exp $ */ /* * Copyright (c) 2008 Martynas Venckus <martynas@openbsd.org> * @@ -16,7 +16,7 @@ */ #include <sys/types.h> -#include <machine/cdefs.h> +#include <sys/cdefs.h> #include <machine/ieee.h> #include <float.h> #include <math.h> |