mirror of
https://github.com/postgres/postgres.git
synced 2025-06-26 12:21:12 +03:00
9 lines
220 B
C
9 lines
220 B
C
/* src/backend/port/dynloader/darwin.h */
|
|
|
|
#include "fmgr.h"
|
|
|
|
void *pg_dlopen(const char *filename);
|
|
PGFunction pg_dlsym(void *handle, const char *funcname);
|
|
void pg_dlclose(void *handle);
|
|
char *pg_dlerror(void);
|