From 527f011af90270383aeea8008051e7de62a8941e Mon Sep 17 00:00:00 2001 From: Joerg Sonnenberger Date: Sun, 22 Aug 2010 01:15:18 +0000 Subject: [PATCH] From: Joerg Sonnenberger Use portable header to work on all POSIX compliant systems. Doesn't break non-POSIX systems as limits.h is a C90 header. SVN revision: 51505 --- legacy/eina/src/include/eina_file.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/legacy/eina/src/include/eina_file.h b/legacy/eina/src/include/eina_file.h index b7a4ef63a6..4420d1d11f 100644 --- a/legacy/eina/src/include/eina_file.h +++ b/legacy/eina/src/include/eina_file.h @@ -19,10 +19,7 @@ #ifndef EINA_FILE_H_ #define EINA_FILE_H_ -#if defined (__MacOSX__) || defined (__FreeBSD__) || (defined (__MACH__) && \ - defined (__APPLE__)) -# include -#endif +#include #include "eina_types.h" #include "eina_array.h"