/*------------------------------------------------------------------------- * * dynloader.h * port-specific prototypes for Intel x86/NetWare IA 32 * * * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * dynloader.h,v 1.1 2002/03/03 01:50:00 Ulrich Neumann * *------------------------------------------------------------------------- */ #ifndef PORT_PROTOS_H #define PORT_PROTOS_H #include "utils/dynamic_loader.h" /* * Dynamic Loader on Intel x86/Intel NetWare IA 32. * * this dynamic loader uses the system dynamic loading interface for shared * libraries (ie. dlopen/dlsym/dlclose). The user must specify a shared * library as the file to be dynamically loaded. * */ #define pg_dlopen(f) dlopen(f, RTLD_LAZY) #define pg_dlsym dlsym #define pg_dlclose dlclose #define pg_dlerror dlerror #endif /* PORT_PROTOS_H */