ClickHouse/base/glibc-compatibility/musl/musl_features.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
158 B
C++
Raw Normal View History

2019-09-28 14:36:56 +00:00
#pragma once
#define weak __attribute__((__weak__))
#define hidden __attribute__((__visibility__("hidden")))
#define predict_false(x) __builtin_expect(x, 0)