diff options
author | Marc G. Fournier <scrappy@hub.org> | 1998-01-26 02:48:36 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1998-01-26 02:48:36 +0000 |
commit | 0e91367109fd52376f6a56412f7b095128686685 (patch) | |
tree | fed8b010ce0717f258b85a1731b223fbc9f88f37 /src/backend/port/dynloader/hpux.h | |
parent | 90fb23e692e8f43b8273914cbc3b6e73e7c7aa73 (diff) | |
download | postgresql-0e91367109fd52376f6a56412f7b095128686685.tar.gz postgresql-0e91367109fd52376f6a56412f7b095128686685.zip |
Try this to fix HP/UX port compile
Diffstat (limited to 'src/backend/port/dynloader/hpux.h')
-rw-r--r-- | src/backend/port/dynloader/hpux.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/backend/port/dynloader/hpux.h b/src/backend/port/dynloader/hpux.h new file mode 100644 index 00000000000..b215725a1c4 --- /dev/null +++ b/src/backend/port/dynloader/hpux.h @@ -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(); |