mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
9 lines
124 B
C++
9 lines
124 B
C++
|
#pragma once
|
||
|
|
||
|
#ifdef _MSC_VER
|
||
|
#include <basetsd.h>
|
||
|
typedef SSIZE_T ssize_t;
|
||
|
#else
|
||
|
#include <sys/types.h>
|
||
|
#endif
|