wpp: Fix path separator on Windows platforms.
This commit is contained in:
parent
cf9dbcc3c8
commit
9dbd1969fc
|
@ -447,7 +447,7 @@ pp_entry_t *pp_add_macro(char *id, marg_t *args[], int nargs, mtext_t *exp)
|
||||||
* Include management
|
* Include management
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
#if defined(_Windows) || defined(__MSDOS__)
|
#if defined(_WIN32) || defined(__MSDOS__)
|
||||||
#define INCLUDESEPARATOR ";"
|
#define INCLUDESEPARATOR ";"
|
||||||
#else
|
#else
|
||||||
#define INCLUDESEPARATOR ":"
|
#define INCLUDESEPARATOR ":"
|
||||||
|
|
Loading…
Reference in New Issue