1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Make sure contrib C functions are marked strict where needed.

Kris Jurka
This commit is contained in:
Tom Lane
2005-01-29 22:35:53 +00:00
parent 1263d7b8d1
commit 24162978b7
7 changed files with 57 additions and 62 deletions

View File

@ -3,8 +3,8 @@
int backend_pid(void);
int unlisten(char *relname);
int max(int x, int y);
int min(int x, int y);
int int4max(int x, int y);
int int4min(int x, int y);
int active_listeners(text *relname);
#endif