summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libdl/dlopen.c
blob: 1693d889ff440c677229947dc02b50480da8ce56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <fcntl.h>
#include <dlfcn.h>
#include <limits.h>

int _dl_search(char*buf, int bufsize, const char*filename);
void *_dl_open(const char*pathname, int fd, int flag);

void *dlopen (const char *filename, int flag)
{
  int fd;
  char buf[PATH_MAX];
  const char *p;
  if (*filename=='/')
    fd=open(p=filename,O_RDONLY);
  else {
    p=buf;
    fd=_dl_search(buf,sizeof(buf),filename);
  }

  return _dl_open(p,fd,flag);
}