mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 17:44:23 +00:00
26 lines
444 B
C++
26 lines
444 B
C++
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#if !defined(__clang__)
|
|
#pragma GCC diagnostic push
|
|
#pragma GCC diagnostic ignored "-Wredundant-decls"
|
|
#endif
|
|
|
|
#include <jemalloc/jemalloc_defs.h>
|
|
#include <jemalloc/jemalloc_rename.h>
|
|
#include <jemalloc/jemalloc_macros.h>
|
|
#include <jemalloc/jemalloc_protos.h>
|
|
#include <jemalloc/jemalloc_typedefs.h>
|
|
|
|
#if !defined(__clang__)
|
|
#pragma GCC diagnostic pop
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|