realpath.c: include limits.h on all platforms except WIN32

This commit is contained in:
Thomas BERNARD 2018-05-22 17:29:59 +02:00
parent f459b83cee
commit e4fc1f8e62

View File

@ -11,7 +11,7 @@
#ifndef _MSC_VER
#include <unistd.h>
#endif
#if defined(__AROS__) || defined(__linux__) || defined(__GLIBC__)|| defined(__MINT__) || defined(__FreeBSD__)
#if !defined(WIN32)
#include <limits.h>
#endif