mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 03:53:41 +00:00
12 lines
213 B
C++
12 lines
213 B
C++
|
#pragma once
|
||
|
|
||
|
// https://stackoverflow.com/questions/341817/is-there-a-replacement-for-unistd-h-for-windows-visual-c
|
||
|
|
||
|
#ifdef _MSC_VER
|
||
|
#include <io.h>
|
||
|
#else
|
||
|
#include <unistd.h>
|
||
|
#endif
|
||
|
|
||
|
#include "ssize_t.h"
|