diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-10-21 09:42:46 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:21:32 -0500 |
commit | 9044f4aa905882485bf2b5c72d9836bdaa14c37a (patch) | |
tree | b3dc59276503ab3235b18411722ed6be3d7287ec /source4/lib/replace | |
parent | ab037664d8fe40695bff38284725b623d388a35c (diff) | |
download | samba-9044f4aa905882485bf2b5c72d9836bdaa14c37a.tar.gz samba-9044f4aa905882485bf2b5c72d9836bdaa14c37a.tar.xz samba-9044f4aa905882485bf2b5c72d9836bdaa14c37a.zip |
r19440: merged from samba3
(This used to be commit c22fb040234d0cb808fb36e1b4b7ea7bfd45c8cb)
Diffstat (limited to 'source4/lib/replace')
-rw-r--r-- | source4/lib/replace/dlfcn.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/lib/replace/dlfcn.c b/source4/lib/replace/dlfcn.c index e25ac9dfe5c..22f9f8bf79b 100644 --- a/source4/lib/replace/dlfcn.c +++ b/source4/lib/replace/dlfcn.c @@ -26,28 +26,28 @@ #include "replace.h" #ifndef HAVE_DLOPEN -void *dlopen(const char *name, int flags) +void *rep_dlopen(const char *name, int flags) { return NULL; } #endif #ifndef HAVE_DLSYM -void *dlsym(void *handle, const char *symbol) +void *rep_dlsym(void *handle, const char *symbol) { return NULL; } #endif #ifndef HAVE_DLERROR -char *dlerror(void) +char *rep_dlerror(void) { return "dynamic loading of objects not supported on this platform"; } #endif #ifndef HAVE_DLCLOSE -int dlclose(void *handle) +int rep_dlclose(void *handle) { return 0; } |