win32: make #include <unistd.h> work

We already have sys/unistd.h, but the standard place for it is at
the include root, so make that work too, but keep sys/unistd.h for
backward compatibility.
This commit is contained in:
Avi Halachmi (:avih) 2024-10-23 14:58:27 +03:00
parent e1c8d3a1e6
commit 45788e91ca

1
win32/include/unistd.h Normal file
View file

@ -0,0 +1 @@
#include <sys/unistd.h>