Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | From aa66afecd8ba9cc4139f25ab15ec315173413a7d Mon Sep 17 00:00:00 2001 |
| 2 | From: Paul Barker <paul@paulbarker.me.uk> |
| 3 | Date: Wed, 20 Aug 2014 10:31:37 +0000 |
| 4 | Subject: [PATCH] Include <limits.h> for PATH_MAX |
| 5 | |
| 6 | When building against musl libc, PATH_MAX is defined in <limits.h>. |
| 7 | |
| 8 | Signed-off-by: Paul Barker <paul@paulbarker.me.uk> |
| 9 | |
| 10 | Upstream-Status: Accepted (Should be in next release after 22.21) |
| 11 | --- |
| 12 | src/pstree.c | 1 + |
| 13 | 1 file changed, 1 insertion(+) |
| 14 | |
| 15 | diff --git a/src/pstree.c b/src/pstree.c |
| 16 | index 071e6c4..0d28260 100644 |
| 17 | --- a/src/pstree.c |
| 18 | +++ b/src/pstree.c |
| 19 | @@ -41,6 +41,7 @@ |
| 20 | #include <sys/types.h> |
| 21 | #include <sys/stat.h> |
| 22 | #include <sys/ioctl.h> |
| 23 | +#include <limits.h> |
| 24 | |
| 25 | #include "i18n.h" |
| 26 | #include "comm.h" |
| 27 | -- |
| 28 | 2.0.4 |
| 29 | |