mirror of
https://github.com/postgres/postgres.git
synced 2026-02-10 22:33:50 -05:00
19 lines
574 B
C
19 lines
574 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* backend_random.h
|
|
* Declarations for backend random number generation
|
|
*
|
|
* Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
|
|
*
|
|
* src/include/utils/backend_random.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef BACKEND_RANDOM_H
|
|
#define BACKEND_RANDOM_H
|
|
|
|
extern Size BackendRandomShmemSize(void);
|
|
extern void BackendRandomShmemInit(void);
|
|
extern bool pg_backend_random(char *dst, int len);
|
|
|
|
#endif /* BACKEND_RANDOM_H */
|