1From 08b17ec505e09e8f5a4d73ffc3aa61561ec2e0da Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Thu, 30 Mar 2017 00:27:54 -0700
4Subject: [PATCH] include sys/stat.h for fixing build issue on musl
5
6error: field has incomplete
7      type 'struct stat'
8        struct stat fs;
9
10Signed-off-by: Khem Raj <raj.khem@gmail.com>
11---
12Upstream-Status: Pending
13
14 tools/utouch-frame-test-mtdev.c | 1 +
15 1 file changed, 1 insertion(+)
16
17diff --git a/tools/utouch-frame-test-mtdev.c b/tools/utouch-frame-test-mtdev.c
18index 5253320..2032af4 100644
19--- a/tools/utouch-frame-test-mtdev.c
20+++ b/tools/utouch-frame-test-mtdev.c
21@@ -30,6 +30,7 @@
22 #include <stdio.h>
23 #include <unistd.h>
24 #include <fcntl.h>
25+#include <sys/stat.h>
26 #include "common-defs.h"
27
28 struct frame_test {
29--
302.12.1
31
32