From 91ae020f5a9c43ab319edce64355ca95a5f8dfad Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Fri, 16 Aug 2024 16:05:19 +0200 Subject: [PATCH] support: Remove #include This is not needed: include/intprops.h has its own detection logic. It makes building these files outside of glibc easer. Reviewed-by: Adhemerval Zanella --- support/timespec-add.c | 1 - support/timespec-sub.c | 1 - 2 files changed, 2 deletions(-) diff --git a/support/timespec-add.c b/support/timespec-add.c index 55fd812f31..57b968c316 100644 --- a/support/timespec-add.c +++ b/support/timespec-add.c @@ -20,7 +20,6 @@ /* Return the sum of two timespec values A and B. On overflow, return an extremal value. This assumes 0 <= tv_nsec < TIMESPEC_HZ. */ -#include #include "timespec.h" #include "intprops.h" diff --git a/support/timespec-sub.c b/support/timespec-sub.c index 7d89c1415a..2897343fce 100644 --- a/support/timespec-sub.c +++ b/support/timespec-sub.c @@ -21,7 +21,6 @@ overflow, return an extremal value. This assumes 0 <= tv_nsec < TIMESPEC_HZ. */ -#include #include "timespec.h" #include "intprops.h"