Index: uspace/lib/posix/src/dlfcn.c
===================================================================
--- uspace/lib/posix/src/dlfcn.c	(revision 1433ecda9b732f3f185f902feb26826ec2496e03)
+++ uspace/lib/posix/src/dlfcn.c	(revision 8d58fcaa7e5744b458fcb7645e5a20ddd6eb8092)
@@ -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)
 {
