From 9dbd1969fca9c31155c6d85ea8129d249467926b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Thu, 27 Dec 2012 00:40:23 +0100 Subject: [PATCH] wpp: Fix path separator on Windows platforms. --- libs/wpp/preproc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/wpp/preproc.c b/libs/wpp/preproc.c index 233d2609743..fd99167d9e6 100644 --- a/libs/wpp/preproc.c +++ b/libs/wpp/preproc.c @@ -447,7 +447,7 @@ pp_entry_t *pp_add_macro(char *id, marg_t *args[], int nargs, mtext_t *exp) * Include management *------------------------------------------------------------------------- */ -#if defined(_Windows) || defined(__MSDOS__) +#if defined(_WIN32) || defined(__MSDOS__) #define INCLUDESEPARATOR ";" #else #define INCLUDESEPARATOR ":"