-
Notifications
You must be signed in to change notification settings - Fork 1
Closed
Description
The mkdir function under mingw32 has different parameters than the native mkdir in Linux. This issue has also been mentioned by others.
The following statement can be used to solve the problem
#if (defined(_WIN32) || defined(__WIN32__))
#include <direct.h> /* _mkdir */
#define mkdir(x, y) _mkdir(x)
#endif
Metadata
Metadata
Assignees
Labels
No labels
