1From b6bed8d4e9453bc74ba021c8c17e20c3b5964c37 Mon Sep 17 00:00:00 2001
2From: Alex Suykov <alex.suykov@gmail.com>
3Date: Thu, 21 Jan 2016 22:00:34 +0100
4Subject: [PATCH] Add missing header include for ssize_t
5
6The code uses ssize_t which is usually defined in <unistd.h>.
7
8Signed-off-by: Alex Suykov <alex.suykov@gmail.com>
9---
10 host/lib/fmap.c | 1 +
11 1 file changed, 1 insertion(+)
12
13diff --git a/host/lib/fmap.c b/host/lib/fmap.c
14index c95338d..e3db826 100644
15--- a/host/lib/fmap.c
16+++ b/host/lib/fmap.c
17@@ -6,6 +6,7 @@
18
19 #include <stdio.h>
20 #include <string.h>
21+#include <unistd.h>
22
23 #include "fmap.h"
24
25--
262.6.4
27
28