1 void *dlopen(char *path, int mode); 2 void *dlsym(void *handle, char *symbol); 3 char *dlerror(void); 4 int dlclose(void *handle); 5