blob: 236615999cbaa69202742a65796b8d76a11b3f2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
From 94e3cad801856faa63b502b1ad745ec47fde70f7 Mon Sep 17 00:00:00 2001
From: Natanael Copa <ncopa@alpinelinux.org>
Date: Tue, 4 Feb 2014 08:44:30 +0000
Subject: [PATCH] Build fixes for musl libc
Signed-off-by: Natanael Copa <ncopa@alpinelinux.org>
---
src/fsck.fat.h | 1 +
src/io.h | 2 +-
src/mkfs.fat.c | 1 +
3 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/fsck.fat.h b/src/fsck.fat.h
index 9d4bb16..e5ade5b 100644
--- a/src/fsck.fat.h
+++ b/src/fsck.fat.h
@@ -27,6 +27,7 @@
#ifndef _DOSFSCK_H
#define _DOSFSCK_H
+#include <fcntl.h>
#include <sys/types.h>
#define _LINUX_STAT_H /* hack to avoid inclusion of <linux/stat.h> */
#define _LINUX_STRING_H_ /* hack to avoid inclusion of <linux/string.h> */
diff --git a/src/io.h b/src/io.h
index ea0e35d..d23d07e 100644
--- a/src/io.h
+++ b/src/io.h
@@ -27,7 +27,7 @@
#ifndef _IO_H
#define _IO_H
-#include <sys/types.h> /* for loff_t */
+#include <fcntl.h> /* for loff_t */
loff_t llseek(int fd, loff_t offset, int whence);
diff --git a/src/mkfs.fat.c b/src/mkfs.fat.c
index 96ba47e..604b7d0 100644
--- a/src/mkfs.fat.c
+++ b/src/mkfs.fat.c
@@ -49,6 +49,7 @@
#include <fcntl.h>
#include <linux/hdreg.h>
#include <sys/mount.h>
+#include <linux/fs.h>
#include <linux/fd.h>
#include <endian.h>
#include <mntent.h>
--
1.8.5.3
|