mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-27 08:39:28 +08:00
11 lines
187 B
C
11 lines
187 B
C
#ifndef MISC_UTILS_H
|
|
#define MISC_UTILS_H
|
|
|
|
int query_limit(int limit);
|
|
int backend_pid(void);
|
|
int unlisten(char *relname);
|
|
int max(int x, int y);
|
|
int min(int x, int y);
|
|
|
|
#endif
|