From 99306efca992b22c627f0a2bd93641a01e32183f Mon Sep 17 00:00:00 2001 From: Mikhail Kashkarov Date: Fri, 13 Dec 2019 10:04:53 +0300 Subject: [PATCH] [Tizen 6.0] Enable build with updated glibc Since glibc 2.27 this header is required. file-user.cpp:60:12: error: 'major' was not declared in this scope 60 | devMaj = major(dev); | ^~~~~ Change-Id: I11a8b84c94ea20fef2060df2681f80407730c2bb Signed-off-by: Mikhail Kashkarov Signed-off-by: Sangwan Kwon --- src/file-user.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/file-user.cpp b/src/file-user.cpp index a2a9393..283ffce 100644 --- a/src/file-user.cpp +++ b/src/file-user.cpp @@ -15,6 +15,7 @@ */ #include +#include #include #include -- 2.34.1