diff -r ed9a5ffd1f13 -r ba4bc497c6a7 src/stdinc.h --- a/src/stdinc.h Tue Oct 10 20:34:51 2023 +0200 +++ b/src/stdinc.h Sun Nov 10 13:09:54 2024 +0100 @@ -32,5 +32,11 @@ #include #include #include +#ifdef _MSC_VER +#define strcasecmp _stricmp +#if __STDC_VERSION__ < 202300L +#define strdup _strdup +#endif +#endif #endif /* STDINC_H_ */