Commit 7989e053 authored by Maarten ter Huurne's avatar Maarten ter Huurne Committed by Peter Korsgaard
Browse files

memstat: Add patch to fix compilation with musl libc



PATH_MAX was undefined because of a missing #include.

Signed-off-by: default avatarMaarten ter Huurne <maarten@treewalker.org>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent 5f00e374
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
Add missing #include for PATH_MAX

Signed-off-by: Maarten ter Huurne <maarten@treewalker.org>

--- memstat-0.8.org/memstat.c	2009-06-08 14:38:05.000000000 +0200
+++ memstat-0.8/memstat.c	2014-09-12 03:55:43.096035374 +0200
@@ -19,6 +19,7 @@
 #include <unistd.h>
 #include <getopt.h>
 #include <errno.h>
+#include <limits.h>
 
 /* blacklist devices that just map physical memory */
 char *blacklist[] = { "/dev/mem",