diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-05 19:53:47 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-05 19:53:47 +0100 |
commit | 066fac61e017824f7dccbd1ef3d7dc455cf4b95b (patch) | |
tree | b240eee9ec49ab3b83fe4978d3a0472def7251ce /src/common.h | |
parent | Merge config-ini.h and options.h into common.h (diff) | |
download | redshift-ng-066fac61e017824f7dccbd1ef3d7dc455cf4b95b.tar.gz redshift-ng-066fac61e017824f7dccbd1ef3d7dc455cf4b95b.tar.bz2 redshift-ng-066fac61e017824f7dccbd1ef3d7dc455cf4b95b.tar.xz |
Consistently use (locally defined) WINDOWS macro over mixing __WIN32__ and _WIN32
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common.h b/src/common.h index 746238d..e63e15b 100644 --- a/src/common.h +++ b/src/common.h @@ -249,12 +249,12 @@ void pipeutils_signal(int write_fd); void pipeutils_handle_signal(int read_fd); -#if !defined(__WIN32__) -extern volatile sig_atomic_t exiting; -extern volatile sig_atomic_t disable; -#else +#ifdef WINDOWS extern int exiting; extern int disable; +#else +extern volatile sig_atomic_t exiting; +extern volatile sig_atomic_t disable; #endif int signals_install_handlers(void); |