diff options
author | 2008-12-10 01:15:01 +0000 | |
---|---|---|
committer | 2008-12-10 01:15:01 +0000 | |
commit | ab185003a6d6849232d35d611944bd62a63c0eb6 (patch) | |
tree | 5ed94bba5f3b367f50d014343bbf58870531959c /lib/libc/gen/isinf.c | |
parent | use sys/cdefs.h; pointed out by theo (diff) | |
download | wireguard-openbsd-ab185003a6d6849232d35d611944bd62a63c0eb6.tar.xz wireguard-openbsd-ab185003a6d6849232d35d611944bd62a63c0eb6.zip |
use sys/cdefs.h; pointed out by theo
Diffstat (limited to 'lib/libc/gen/isinf.c')
-rw-r--r-- | lib/libc/gen/isinf.c | 4 |
1 files changed, 2 insertions, 2 deletions
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> |