1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-25 06:04:04 +03:00

r19440: merged from samba3

(This used to be commit c22fb040234d0cb808fb36e1b4b7ea7bfd45c8cb)
This commit is contained in:
Andrew Tridgell 2006-10-21 09:42:46 +00:00 committed by Gerald (Jerry) Carter
parent ab037664d8
commit 9044f4aa90

View File

@ -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;
}