Include <sys/param.h> to get PATH_MAX definition

* pathtrace.c: Include <sys/param.h> instead of <limits.h> to get
PATH_MAX definition.

Reported-by: Steve Bennett <steveb@workware.net.au>
This commit is contained in:
Дмитрий Левин 2011-08-30 16:05:26 +00:00
parent 77770bbf6b
commit b038a43d75

View File

@ -29,7 +29,7 @@
#include "defs.h"
#include <ctype.h>
#include <limits.h>
#include <sys/param.h>
#ifdef HAVE_POLL_H
#include <poll.h>