remove wrong and unnecessary #define

This fixes builds with clang on windows.
This commit is contained in:
Zach Bacon 2019-07-25 18:45:29 -04:00 committed by Rafael Kitover
parent 38561b5713
commit c886b6a16d
1 changed files with 0 additions and 1 deletions

View File

@ -38,7 +38,6 @@ extern "C" {
#else // _WIN32
#include <direct.h>
#define GETCWD _getcwd
#define snprintf sprintf
#define stat _stat
#define mkdir(X,Y) (_mkdir(X))
// from: https://www.linuxquestions.org/questions/programming-9/porting-to-win32-429334/