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

r19385: These replaced symbols should have a rep_ prefix.

(This used to be commit decdb46a3f7445d589c23e0ad554453ae79cd292)
This commit is contained in:
James Peach 2006-10-18 03:26:58 +00:00 committed by Gerald (Jerry) Carter
parent 74bb9cb3bd
commit 322863b392
2 changed files with 5 additions and 5 deletions

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

View File

@ -44,7 +44,7 @@ static int is_leap(unsigned y)
return (y % 4) == 0 && ((y % 100) != 0 || (y % 400) == 0);
}
time_t timegm(struct tm *tm)
time_t rep_timegm(struct tm *tm)
{
static const unsigned ndays[2][12] ={
{31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},