Fix xslt_process() to ensure that it inserts a NULL terminator after the
[PostgreSQL.git] / src / include / utils / dynamic_loader.h
blob0134706497106e7477106adc0c5e369ee25c47a9
1 /*-------------------------------------------------------------------------
3 * dynamic_loader.h
7 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * $PostgreSQL$
12 *-------------------------------------------------------------------------
14 #ifndef DYNAMIC_LOADER_H
15 #define DYNAMIC_LOADER_H
17 #include "fmgr.h"
20 extern void *pg_dlopen(char *filename);
21 extern PGFunction pg_dlsym(void *handle, char *funcname);
22 extern void pg_dlclose(void *handle);
23 extern char *pg_dlerror(void);
25 #endif /* DYNAMIC_LOADER_H */