1
0
зеркало из https://git.tukaani.org/xz.git synced 2025-09-17 16:08:21 +00:00

Style: Change #if !defined() to #ifndef in mythread.h.

Этот коммит содержится в:
Jia Tan 2023-01-06 20:43:31 +08:00
родитель e834e1e934
Коммит 78e0561dfe

Просмотреть файл

@ -108,7 +108,7 @@ mythread_sigmask(int how, const sigset_t *restrict set,
// If clock_gettime() isn't available, use gettimeofday() from <sys/time.h>
// as a fallback. gettimeofday() is in SUSv2 and thus is supported on all
// relevant POSIX systems.
#if !defined(HAVE_CLOCK_GETTIME)
#ifndef HAVE_CLOCK_GETTIME
# include <sys/time.h>
#endif