Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 0e91367

Browse files
committed
Try this to fix HP/UX port compile
1 parent 90fb23e commit 0e91367

File tree

1 file changed

+22
-0
lines changed
  • src/backend/port/dynloader

1 file changed

+22
-0
lines changed

src/backend/port/dynloader/hpux.h

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/*-------------------------------------------------------------------------
2+
*
3+
* dynloader.h--
4+
* dynamic loader for HP-UX using the shared library mechanism
5+
*
6+
* Copyright (c) 1994, Regents of the University of California
7+
*
8+
*
9+
* IDENTIFICATION
10+
* $Header: /cvsroot/pgsql/src/backend/port/dynloader/hpux.h,v 1.1 1998/01/26 02:48:36 scrappy Exp $
11+
*
12+
* NOTES
13+
* all functions are defined here -- it's impossible to trace the
14+
* shl_* routines from the bundled HP-UX debugger.
15+
*
16+
*-------------------------------------------------------------------------
17+
*/
18+
/* System includes */
19+
void *pg_dlopen(char *filename);
20+
func_ptr pg_dlsym(void *handle, char *funcname);
21+
void pg_dlclose(void *handle);
22+
char *pg_dlerror();

0 commit comments

Comments
 (0)