From: Florian Weimer Date: Fri, 16 Aug 2024 14:05:19 +0000 (+0200) Subject: support: Remove #include X-Git-Tag: glibc-2.41~732 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=91ae020f5a9c43ab319edce64355ca95a5f8dfad;p=thirdparty%2Fglibc.git 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 --- 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"