blob: 277f6e21b018ee93471f2c8bf342ca54b545893f [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001From 75539659396b18110d5a52a8a32845254b4d8eca Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sat, 11 Aug 2018 18:25:47 -0700
4Subject: [PATCH] Include sys/sysmacros.h for major/minor
5
6usermount.c:238: undefined reference to `major'
7
8Upstream-Status: Pending
9Signed-off-by: Khem Raj <raj.khem@gmail.com>
10---
11 usermount.c | 1 +
12 1 file changed, 1 insertion(+)
13
14diff --git a/usermount.c b/usermount.c
15index 4107027..21ef77f 100644
16--- a/usermount.c
17+++ b/usermount.c
18@@ -40,6 +40,7 @@
19 #include <sys/stat.h>
20 #include <sys/time.h>
21 #include <sys/types.h>
22+#include <sys/sysmacros.h>
23 #include <errno.h>
24 #include <glob.h>
25 #include <libintl.h>