Query in SQL function still not schema-safe; add a couple
[PostgreSQL.git] / src / backend / port / dynloader / hpux.h
blobe8f540ee7e122b4cd3affa84da42ead8056ef2d8
1 /*-------------------------------------------------------------------------
3 * dynloader.h
4 * dynamic loader for HP-UX using the shared library mechanism
6 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
7 * Portions Copyright (c) 1994, Regents of the University of California
10 * IDENTIFICATION
11 * $PostgreSQL$
13 * NOTES
14 * all functions are defined here -- it's impossible to trace the
15 * shl_* routines from the bundled HP-UX debugger.
17 *-------------------------------------------------------------------------
19 /* System includes */
20 #include "fmgr.h"
22 extern void *pg_dlopen(char *filename);
23 extern PGFunction pg_dlsym(void *handle, char *funcname);
24 extern void pg_dlclose(void *handle);
25 extern char *pg_dlerror(void);