summaryrefslogtreecommitdiff
path: root/cups/tls.c
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2018-10-10 00:17:22 -0400
committerMichael R Sweet <michael.r.sweet@gmail.com>2018-10-10 00:17:22 -0400
commit19dc16f764492eb3b1cf7c57b7f645e214cb9b3a (patch)
tree1a40bc2a71ace7f53463f8c7f823b6419e648242 /cups/tls.c
parentd65e20fe7c5b192522ba01865bfcbd3dbc0e448e (diff)
downloadcups-19dc16f764492eb3b1cf7c57b7f645e214cb9b3a.tar.gz
Migrate Windows conditional code to _WIN32 define.
Diffstat (limited to 'cups/tls.c')
-rw-r--r--cups/tls.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cups/tls.c b/cups/tls.c
index 278439db2..916d32917 100644
--- a/cups/tls.c
+++ b/cups/tls.c
@@ -17,13 +17,13 @@
#include "cups-private.h"
#include <fcntl.h>
#include <math.h>
-#ifdef WIN32
+#ifdef _WIN32
# include <tchar.h>
#else
# include <signal.h>
# include <sys/time.h>
# include <sys/resource.h>
-#endif /* WIN32 */
+#endif /* _WIN32 */
#ifdef HAVE_POLL
# include <poll.h>
#endif /* HAVE_POLL */