OSDN Git Service

Try this to fix HP/UX port compile
authorMarc G. Fournier <scrappy@hub.org>
Mon, 26 Jan 1998 02:48:36 +0000 (02:48 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Mon, 26 Jan 1998 02:48:36 +0000 (02:48 +0000)
src/backend/port/dynloader/hpux.h [new file with mode: 0644]

diff --git a/src/backend/port/dynloader/hpux.h b/src/backend/port/dynloader/hpux.h
new file mode 100644 (file)
index 0000000..b215725
--- /dev/null
@@ -0,0 +1,22 @@
+/*-------------------------------------------------------------------------
+ *
+ * dynloader.h--
+ *       dynamic loader for HP-UX using the shared library mechanism
+ *
+ * Copyright (c) 1994, Regents of the University of California
+ *
+ *
+ * IDENTIFICATION
+ *       $Header: /cvsroot/pgsql/src/backend/port/dynloader/hpux.h,v 1.1 1998/01/26 02:48:36 scrappy Exp $
+ *
+ *     NOTES
+ *             all functions are defined here -- it's impossible to trace the
+ *             shl_* routines from the bundled HP-UX debugger.
+ *
+ *-------------------------------------------------------------------------
+ */
+/* System includes */
+void      *pg_dlopen(char *filename);
+func_ptr       pg_dlsym(void *handle, char *funcname);
+void           pg_dlclose(void *handle);
+char      *pg_dlerror();