From 4534f0fbcf6b83d29baf4af78f9027ff76fe0a7a Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Fri, 14 Aug 2015 11:32:36 +0100 Subject: [PATCH] libdm: do not in include internal bits/time.h header Do not include bits/time.h as it is an internal libc header file. A comment at the top of the glibc specific bits/time.h says: "Never include this file directly; use instead." This fixes the following build error with musl libc: libdm-timestamp.c:37:23: fatal error: bits/time.h: No such file or directory --- Compile tested with Alpine Linx (musl libc) and ubuntu 15.04 libdm/libdm-timestamp.c | 1 - 1 file changed, 1 deletion(-) --- libdm/libdm-timestamp.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libdm/libdm-timestamp.c b/libdm/libdm-timestamp.c index 3e01442ef..9be93a48a 100644 --- a/libdm/libdm-timestamp.c +++ b/libdm/libdm-timestamp.c @@ -34,7 +34,6 @@ #ifdef HAVE_REALTIME #include -#include struct dm_timestamp { struct timespec t;