From 066fac61e017824f7dccbd1ef3d7dc455cf4b95b Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Wed, 5 Mar 2025 19:53:47 +0100 Subject: Consistently use (locally defined) WINDOWS macro over mixing __WIN32__ and _WIN32 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/redshift.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/redshift.c') diff --git a/src/redshift.c b/src/redshift.c index b60236c..ca8e66b 100644 --- a/src/redshift.c +++ b/src/redshift.c @@ -22,7 +22,7 @@ /* poll.h is not available on Windows but there is no Windows location provider using polling. On Windows, we just define some stubs to make things compile. */ -#ifndef _WIN32 +#ifndef WINDOWS # include #else #define POLLIN 0 @@ -36,7 +36,7 @@ int poll(struct pollfd *fds, int nfds, int timeout) { abort(); return -1; } /* pause() is not defined on windows platform but is not needed either. Use a noop macro instead. */ -#ifdef __WIN32__ +#ifdef WINDOWS # define pause() #endif @@ -144,7 +144,7 @@ get_seconds_since_midnight(double timestamp) { time_t t = (time_t)timestamp; struct tm tm; -#ifdef _WIN32 +#ifdef WINDOWS localtime_s(&tm, &t); #else localtime_r(&t, &tm); -- cgit v1.2.3-70-g09d2