<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">From a2e39b1243bc013827d76ccce5c631b04442458e Mon Sep 17 00:00:00 2001
From: Enno Boland &lt;gottox@voidlinux.org&gt;
Date: Wed, 19 Aug 2015 10:41:04 +0200
Subject: [PATCH 2/3] Add missing include

The limits.h header must be included for PATH_MAX.

Fixes build against musl libc.

Origin: Void Linux
Upstream-Status: Unknown
[ismael@sourcemage.org: Edited description]
Signed-off-by: Ismael Luceno &lt;ismael@sourcemage.org&gt;
---
 src/utils.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/utils.c b/src/utils.c
index 2497cf575045..d78a38fd5b8e 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -22,6 +22,7 @@
 #include &lt;fcntl.h&gt;
 #include &lt;signal.h&gt;
 #include &lt;libintl.h&gt;
+#include &lt;limits.h&gt;
 
 /* File name used to tag directories created by pmount */
 #define CREATED_DIR_STAMP ".created_by_pmount"
-- 
2.40.1

</pre></body></html>