cjson: bump to version 1.4.3
[buildroot-gz.git] / package / quota / 0005-include-fcntl.patch
blobfe7ea98831e74a3fc620adab1ce9fb2a7b3389d1
1 Include <fcntl.h> to get loff_t definition
3 Fixes the following build issue with musl:
5 dqblk_v2.h:32:2: error: unknown type name ‘loff_t’
7 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 Index: b/dqblk_v2.h
10 ===================================================================
11 --- a/dqblk_v2.h
12 +++ b/dqblk_v2.h
13 @@ -8,6 +8,7 @@
14 #define GUARD_DQBLK_V2_H
16 #include <sys/types.h>
17 +#include <fcntl.h>
18 #include "quota_tree.h"
20 #define Q_V2_GETQUOTA 0x0D00 /* Get limits and usage */