Files
util.nix/package/c/postgreact/postgreact.h
2025-04-17 06:22:21 +03:00

12 lines
173 B
C

#include "postgres.h"
#ifdef PG_MODULE_MAGIC
PG_MODULE_MAGIC;
#endif
void _PG_init(void);
void _PG_fini(void);
Datum hello(PG_FUNCTION_ARGS);
PG_FUNCTION_INFO_V1(hello);