From 2d249af381a664fd5a139ee4de6bfdf2f7c2e8cf Mon Sep 17 00:00:00 2001 From: Jory Pratt Date: Mon, 30 Sep 2019 18:35:56 -0500 Subject: [PATCH] Include limits.h for PATH_MAX --- mesh/keyring.c | 1 + mesh/mesh-config-json.c | 1 + mesh/node.c | 1 + mesh/util.c | 1 + 4 files changed, 4 insertions(+) diff --git a/mesh/keyring.c b/mesh/keyring.c index 3a7f92f9f..9fa7d6bd0 100644 --- a/mesh/keyring.c +++ b/mesh/keyring.c @@ -24,6 +24,7 @@ #define _GNU_SOURCE #include #include +#include #include #include #include diff --git a/mesh/mesh-config-json.c b/mesh/mesh-config-json.c index df58cbd7d..a8c94fcdd 100644 --- a/mesh/mesh-config-json.c +++ b/mesh/mesh-config-json.c @@ -27,6 +27,7 @@ #include #include #include +#include #include #include #include diff --git a/mesh/node.c b/mesh/node.c index 4e9b80b91..e23f32dd1 100644 --- a/mesh/node.c +++ b/mesh/node.c @@ -23,6 +23,7 @@ #define _GNU_SOURCE #include +#include #include #include diff --git a/mesh/util.c b/mesh/util.c index 1455bdec3..986ba4b28 100644 --- a/mesh/util.c +++ b/mesh/util.c @@ -25,6 +25,7 @@ #include #include #include +#include #include #include -- 2.47.3