mirror of
https://github.com/postgres/postgres.git
synced 2026-04-09 19:16:17 -04:00
10 lines
204 B
C
10 lines
204 B
C
#ifndef MISC_UTILS_H
|
|
#define MISC_UTILS_H
|
|
|
|
int backend_pid(void);
|
|
int unlisten(char *relname);
|
|
int int4max(int x, int y);
|
|
int int4min(int x, int y);
|
|
int active_listeners(text *relname);
|
|
|
|
#endif
|