mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-15 08:20:16 +08:00
6783b2372e
spacing. Also adds space for one-line comments.
11 lines
196 B
C
11 lines
196 B
C
#ifndef MISC_UTILS_H
|
|
#define MISC_UTILS_H
|
|
|
|
int backend_pid(void);
|
|
int unlisten(char *relname);
|
|
int max(int x, int y);
|
|
int min(int x, int y);
|
|
int active_listeners(text *relname);
|
|
|
|
#endif
|