mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
Style: Change #if !defined() to #ifndef in mythread.h.
This commit is contained in:
parent
e834e1e934
commit
78e0561dfe
1 changed files with 1 additions and 1 deletions
|
@ -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>
|
// 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
|
// as a fallback. gettimeofday() is in SUSv2 and thus is supported on all
|
||||||
// relevant POSIX systems.
|
// relevant POSIX systems.
|
||||||
#if !defined(HAVE_CLOCK_GETTIME)
|
#ifndef HAVE_CLOCK_GETTIME
|
||||||
# include <sys/time.h>
|
# include <sys/time.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue