summaryrefslogtreecommitdiff
path: root/src/ata_id/ata_id.c
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2014-03-15 08:16:41 -0400
committerAnthony G. Basile <blueness@gentoo.org>2014-03-15 08:16:41 -0400
commitc5a77c7d10bafac25deca8e3c36946df0dc43071 (patch)
tree9fe075a080296c13ed0fc4d56db1e5d98d89b632 /src/ata_id/ata_id.c
parentac1546da719c57e6e0ae2db1b9bae1dfbe329429 (diff)
Fix issue #87: fails to build on linux headers 3.13
Commit 80b10107cb added #include <linux/fcntl.h> in src/accelerometer and friends for builds on uclibc. This only works with glibc and musl systems with linux headers 3.9 but fails with linux headers 3.13. We keep <linux/fcntl.h> but drop <fcntl.h>. Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/ata_id/ata_id.c')
-rw-r--r--src/ata_id/ata_id.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/ata_id/ata_id.c b/src/ata_id/ata_id.c
index a25c713a6c..500669ce94 100644
--- a/src/ata_id/ata_id.c
+++ b/src/ata_id/ata_id.c
@@ -23,7 +23,6 @@
#include <stdlib.h>
#include <stdint.h>
#include <unistd.h>
-#include <fcntl.h>
#include <ctype.h>
#include <string.h>
#include <errno.h>