Fix compilation errors on OpenIndiana caused by missing limit macros.

This commit is contained in:
Erik Larsson 2016-02-16 20:43:00 +01:00
parent 9d1360b282
commit 038a45a8a1
2 changed files with 6 additions and 0 deletions

View File

@ -36,6 +36,9 @@
#ifdef HAVE_STRING_H #ifdef HAVE_STRING_H
#include <string.h> #include <string.h>
#endif #endif
#ifdef HAVE_LIMITS_H
#include <limits.h>
#endif
#include "types.h" #include "types.h"
#include "attrib.h" #include "attrib.h"

View File

@ -53,6 +53,9 @@
#ifdef HAVE_TIME_H #ifdef HAVE_TIME_H
#include <time.h> #include <time.h>
#endif #endif
#ifdef HAVE_LIMITS_H
#include <limits.h>
#endif
#include "ntfswipe.h" #include "ntfswipe.h"
#include "types.h" #include "types.h"