diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2021-09-17 15:11:58 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2021-09-17 15:11:58 +0000 |
commit | 09da002bad7ef585681390312270b32d3271285b (patch) | |
tree | 3a49f9d10287baeb0cf9f89b51a673c1ece43fe5 /lib | |
parent | 802ce3b4d5d2814edfd4266a88c36247eeca0427 (diff) |
sys/param.h is not needed in this file
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libm/arch/i387/fenv.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libm/arch/i387/fenv.c b/lib/libm/arch/i387/fenv.c index eac830d5117..58922fde92e 100644 --- a/lib/libm/arch/i387/fenv.c +++ b/lib/libm/arch/i387/fenv.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fenv.c,v 1.5 2016/09/12 19:47:02 guenther Exp $ */ +/* $OpenBSD: fenv.c,v 1.6 2021/09/17 15:11:57 deraadt Exp $ */ /* $NetBSD: fenv.c,v 1.3 2010/08/01 06:34:38 taca Exp $ */ /*- @@ -27,7 +27,8 @@ * SUCH DAMAGE. */ -#include <sys/param.h> +#include <sys/types.h> +#include <sys/time.h> #include <sys/sysctl.h> #include <machine/cpu.h> #include <machine/npx.h> |