From 4cb9231f1a98421f7162036362a63b6fe4a2f335 Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Mon, 1 Dec 2014 11:10:41 +0000 Subject: [PATCH] Removed some uses of sys/types.h It's useful to be able to compile openlibm in environments where this doesn't exist (e.g. OS kernels). --- include/types-compat.h | 2 +- src/s_modfl.c | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/include/types-compat.h b/include/types-compat.h index c1d0d6b..5a6712b 100644 --- a/include/types-compat.h +++ b/include/types-compat.h @@ -1,7 +1,7 @@ #ifndef _TYPES_COMPAT_H_ #define _TYPES_COMPAT_H_ -#include +#include #include #include diff --git a/src/s_modfl.c b/src/s_modfl.c index d6d9ab6..08214fb 100644 --- a/src/s_modfl.c +++ b/src/s_modfl.c @@ -39,7 +39,6 @@ #include #include #include "math_private.h" -#include #include "fpmath.h"