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