blob: d63eb5061939c3356a0e79aaafd0c0b221d6ab83 [file] [log] [blame]
Brad Bishop0f291cc2019-09-01 15:16:57 -04001From e90101128dfe75b9b1a0575a0179d211f677e6ad Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Fri, 30 Aug 2019 13:19:50 -0700
4Subject: [PATCH] include limits.h
5
6Fixes
7error: use of undeclared identifier 'PATH_MAX'
8
9Signed-off-by: Khem Raj <raj.khem@gmail.com>
10---
11 tools/ssieventmonitor.cpp | 1 +
12 1 file changed, 1 insertion(+)
13
14diff --git a/tools/ssieventmonitor.cpp b/tools/ssieventmonitor.cpp
15index 3eed877..0d11975 100644
16--- a/tools/ssieventmonitor.cpp
17+++ b/tools/ssieventmonitor.cpp
18@@ -34,6 +34,7 @@
19 #include <unistd.h>
20 #include <dirent.h>
21 #include <errno.h>
22+#include <limits.h>
23 #include <sys/fcntl.h>
24 #include <sys/select.h>
25 #include <sys/wait.h>