rename strdup to _strdup for MSVC

This commit is contained in:
Krasimir Angelov
2023-01-26 08:42:42 +01:00
parent 7c13168bff
commit 14d8b14827

View File

@@ -24,6 +24,7 @@
#ifdef _MSC_VER
#include <malloc.h>
#define alloca _alloca
#define strdup _strdup
#endif