1 | #pragma once |
---|---|
2 | |
3 | // https://stackoverflow.com/questions/341817/is-there-a-replacement-for-unistd-h-for-windows-visual-c |
4 | |
5 | #ifdef _MSC_VER |
6 | #include <io.h> |
7 | #else |
8 | #include <unistd.h> |
9 | #endif |
10 | |
11 | #include "ssize_t.h" |
12 |
1 | #pragma once |
---|---|
2 | |
3 | // https://stackoverflow.com/questions/341817/is-there-a-replacement-for-unistd-h-for-windows-visual-c |
4 | |
5 | #ifdef _MSC_VER |
6 | #include <io.h> |
7 | #else |
8 | #include <unistd.h> |
9 | #endif |
10 | |
11 | #include "ssize_t.h" |
12 |