Guard it under #ifdef _WIN32

This commit is contained in:
MaggotHATE 2024-08-06 11:15:43 +05:00 committed by GitHub
parent 070c67a6f6
commit 6dab6bfd90
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,7 +5,6 @@
#include <sstream>
#include <string>
#include <stdexcept>
#include <algorithm>
#include <array>
#include <vector>
#include <map>
@ -23,6 +22,7 @@
#ifdef _WIN32
#include <windows.h>
#include <direct.h> // For _mkdir on Windows
#include <algorithm> // For std::replace on w64devkit
#else
#include <unistd.h>
#include <sys/wait.h>