diff options
author | Bruce Momjian | 1999-12-16 01:25:23 +0000 |
---|---|---|
committer | Bruce Momjian | 1999-12-16 01:25:23 +0000 |
commit | 7585deb0878bca96eee9a3e00fb5726c7725831c (patch) | |
tree | abbc9add268b6fbc32af0871f8d14f804681747b /src/backend/port/dynloader/qnx4.h | |
parent | 9805abb0fb1d2d57834a233d1a34279757d3f068 (diff) |
I have done the QNX4 port with the current source tree. The number of
backend/Makefiles to be patched could significantly be reduced since
they
have been adopted to the QNX4 needs.
Andreas Kardos
Diffstat (limited to 'src/backend/port/dynloader/qnx4.h')
-rw-r--r-- | src/backend/port/dynloader/qnx4.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/backend/port/dynloader/qnx4.h b/src/backend/port/dynloader/qnx4.h new file mode 100644 index 00000000000..6197d09a6fa --- /dev/null +++ b/src/backend/port/dynloader/qnx4.h @@ -0,0 +1,20 @@ +/*------------------------------------------------------------------------- + * + * dynloader.h + * dynamic loader for QNX4 using the shared library mechanism + * + * Copyright (c) 1999, repas AEG Automation GmbH + * + * + * IDENTIFICATION + * $Header: /cvsroot/pgsql/src/backend/port/dynloader/Attic/qnx4.h,v 1.1 1999/12/16 01:25:04 momjian Exp $ + * + * NOTES + * + *------------------------------------------------------------------------- + */ +/* System includes */ +void *pg_dlopen(char *filename); +func_ptr pg_dlsym(void *handle, char *funcname); +void pg_dlclose(void *handle); +char *pg_dlerror(); |