mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
7 lines
142 B
C++
7 lines
142 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
/** Returns a number suitable as seed for PRNG. Use clock_gettime, pid and so on. */
|
|
uint64_t randomSeed();
|