summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann E. MORIN <yann.morin.1998@free.fr>2017-10-01 14:31:10 +0200
committerPekka Paalanen <pekka.paalanen@collabora.co.uk>2017-10-02 12:19:18 +0300
commitfa41bdfbc0b962fd73b89f01aab1a5370c9c28eb (patch)
treef4e61208d1b0055d3cd9119cfe73b24d9f6adb8a
parentdf0e4b965fc9d0e765416fda28cac3af137bd410 (diff)
shared: struct timespec is in time.h
On the musl C library, tests/timespec-text.c does not build, with the following error: In file included from tests/timespec-test.c:36:0: ./shared/timespec-util.h:41:21: warning: ‘struct timespec’ declared inside parameter list will not be visible outside of this definition or declaration timespec_sub(struct timespec *r, ^~~~~~~~ [...] Indeed, struct timespec is defined in time.h, so we must include it. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Reviewed-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
-rw-r--r--shared/timespec-util.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/shared/timespec-util.h b/shared/timespec-util.h
index 576b3e8f..34a120ae 100644
--- a/shared/timespec-util.h
+++ b/shared/timespec-util.h
@@ -28,6 +28,7 @@
#include <stdint.h>
#include <assert.h>
+#include <time.h>
#define NSEC_PER_SEC 1000000000