From 79738d2ca4786eef178a82eec62249d976c3b86b Mon Sep 17 00:00:00 2001 From: Ross Wheeler Date: Fri, 24 May 2024 17:05:59 -0700 Subject: [PATCH] fixed mkdir change --- dev/unistd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/unistd.h b/dev/unistd.h index 348bbae..861041d 100644 --- a/dev/unistd.h +++ b/dev/unistd.h @@ -25,7 +25,7 @@ static inline int clock_gettime(int ignore_variable, struct timespec* tv) #define TURN_OFF_FP_FAST __pragma(float_control( precise, on, push )) // Save current setting and turn on /fp:precise #define TURN_ON_FP_FAST __pragma(float_control(pop)) // Restore file's default settings -#define _mkdir mkdir // add mkdir into namespace for windows +#define mkdir _mkdir // add mkdir into namespace for windows typedef struct glob_t { size_t gl_pathc; // Count of matched pathnames