include glib.h instead of limits.h

This commit is contained in:
merlijn 2010-08-08 16:30:20 +02:00
parent 5dffa316df
commit 4d04ade414

View File

@ -34,7 +34,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// to get PATH_MAX // to get PATH_MAX
#include <stdio.h> #include <stdio.h>
#if defined (__linux__) || defined (__APPLE__) #if defined (__linux__) || defined (__APPLE__)
#include <limits.h> #include <glib.h>
#include <dirent.h> #include <dirent.h>
#include <unistd.h> #include <unistd.h>
#else #else