mirror of
https://github.com/postgres/postgres.git
synced 2025-05-08 07:21:33 +03:00
9 lines
272 B
C
9 lines
272 B
C
/* $Header: /cvsroot/pgsql/src/backend/port/dynloader/darwin.h,v 1.4 2001/03/22 03:59:42 momjian Exp $ */
|
|
|
|
#include "fmgr.h"
|
|
|
|
void *pg_dlopen(char *filename);
|
|
PGFunction pg_dlsym(void *handle, char *funcname);
|
|
void pg_dlclose(void *handle);
|
|
char *pg_dlerror(void);
|