From ebf8c71d742fa6f11749316c502f1c220696047e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Sun, 13 Apr 2008 17:52:41 +0000 Subject: [PATCH] Fix warnings about missing protos. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24961 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/libroot/posix/dlfcn.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/system/libroot/posix/dlfcn.c b/src/system/libroot/posix/dlfcn.c index 4acb5e5805..3c9c69d21f 100644 --- a/src/system/libroot/posix/dlfcn.c +++ b/src/system/libroot/posix/dlfcn.c @@ -74,6 +74,10 @@ dlerror(void) // __libc_dl*** wrappers // We use a mixed glibc / bsd libc, and glibc wants these +void *__libc_dlopen(const char *name); +void *__libc_dlsym(void *handle, const char *name); +void __libc_dlclose(void *handle); + void * __libc_dlopen(const char *name) {