Fix 'PATH_MAX undeclared' (cross-)compilation error in some environments

master
szaka 2008-06-10 19:48:35 +00:00
parent 4173b0172c
commit b8228df2a2
2 changed files with 2 additions and 0 deletions

View File

@ -18,6 +18,7 @@
#include <string.h>
#include <limits.h>
#include <errno.h>
#include <sys/param.h>
enum {
KEY_HELP,

View File

@ -19,6 +19,7 @@
#include <sys/stat.h>
#include <sys/wait.h>
#include <sys/mount.h>
#include <sys/param.h>
static int mtab_needs_update(const char *mnt)
{