Index: uspace/lib/posix/src/dlfcn.c
===================================================================
--- uspace/lib/posix/src/dlfcn.c	(revision 013e5d32c9af4ea5eff1d29e41946a398895b296)
+++ uspace/lib/posix/src/dlfcn.c	(revision ba3841e2205573d1765f66063c5b9a19768de9b2)
@@ -34,16 +34,4 @@
 #include "posix/dlfcn.h"
 
-_HIDE_LIBC_SYMBOL(dlopen);
-extern void *__helenos_libc_dlopen(const char *filename, int flags);
-
-void *dlopen(const char *filename, int flags)
-{
-	if (flags != 0) {
-		fprintf(stderr, "dlopen() not implemented with non-zero flags (%s:%d), something will NOT work.\n", __FILE__, __LINE__);
-	}
-
-	return __helenos_libc_dlopen(filename, 0);
-}
-
 int dlclose(void *handle)
 {
