ClickHouse/base/common/errnoToString.h
2020-06-07 20:29:34 +03:00

7 lines
111 B
C++

#pragma once
#include <cerrno>
#include <string>
std::string errnoToString(int code, int the_errno = errno);