From: Florian Weimer Date: Thu, 28 Jun 2018 11:12:16 +0000 (+0200) Subject: Use _STRUCT_TIMESPEC as guard in [BZ #23349] X-Git-Tag: upstream/2.30~1153 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c1c2848b572ea7f92b7fa81dd5b1b9ef7c69b83b;p=platform%2Fupstream%2Fglibc.git Use _STRUCT_TIMESPEC as guard in [BZ #23349] After commit d76d3703551a362b472c866b5b6089f66f8daa8e ("Fix missing timespec definition for sys/stat.h (BZ #21371)") in combination with kernel UAPI changes, GCC sanitizer builds start to fail due to a conflicting definition of struct timespec in . Use _STRUCT_TIMESPEC as the header file inclusion guard, which is already checked in the kernel header, to support including and in the same translation unit. --- diff --git a/ChangeLog b/ChangeLog index 7a585e1..25e824f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2018-06-28 Florian Weimer + + [BZ #23349] + * time/bits/types/struct_timespec.h: Change header inclusion guard to + _STRUCT_TIMESPEC. + 2018-06-28 Rajalakshmi Srinivasaraghavan * sysdeps/ieee754/ldbl-128ibm-compat/Versions: Add __strfromieee128, diff --git a/time/bits/types/struct_timespec.h b/time/bits/types/struct_timespec.h index 644db9f..5b77c52 100644 --- a/time/bits/types/struct_timespec.h +++ b/time/bits/types/struct_timespec.h @@ -1,5 +1,6 @@ -#ifndef __timespec_defined -#define __timespec_defined 1 +/* NB: Include guard matches what uses. */ +#ifndef _STRUCT_TIMESPEC +#define _STRUCT_TIMESPEC 1 #include