mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-07 16:14:52 +00:00
7 lines
111 B
C++
7 lines
111 B
C++
|
#pragma once
|
||
|
|
||
|
#include <cerrno>
|
||
|
#include <string>
|
||
|
|
||
|
std::string errnoToString(int code, int the_errno = errno);
|