From 782146257187e306c66aaa5c51c7c02472cbddc0 Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Thu, 22 Dec 2022 22:07:07 +0900 Subject: [PATCH] mruby-dir/dirtest.c: need to include for mktemp() on Windows --- mrbgems/mruby-dir/test/dirtest.c | 1 + 1 file changed, 1 insertion(+) diff --git a/mrbgems/mruby-dir/test/dirtest.c b/mrbgems/mruby-dir/test/dirtest.c index a83295e45..34ef34763 100644 --- a/mrbgems/mruby-dir/test/dirtest.c +++ b/mrbgems/mruby-dir/test/dirtest.c @@ -20,6 +20,7 @@ int closedir(DIR *dir); #ifdef __cplusplus } #endif +#include #include #define rmdir(path) _rmdir(path) #define getcwd(path,len) _getcwd(path,len)