Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion repl_mon.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ PG_MODULE_MAGIC;
/* Entry point of library loading */
void _PG_init(void);

#if PG_VERSION_NUM >= 100000
#if PG_VERSION_NUM >= 180000
PGDLLEXPORT pg_noreturn void repl_mon_main(Datum);
#elif PG_VERSION_NUM >= 100000
PGDLLEXPORT void repl_mon_main(Datum) pg_attribute_noreturn();
#endif
/* Signal handling */
Expand Down