source: azure_iot_hub/trunk/musl-1.1.18/src/ldso/dlopen.c@ 389

Last change on this file since 389 was 389, checked in by coas-nagasima, 5 years ago

ビルドが通るよう更新

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 267 bytes
Line 
1#include <dlfcn.h>
2#include "libc.h"
3
4__attribute__((__visibility__("hidden")))
5void __dl_seterr(const char *, ...);
6
7static void *stub_dlopen(const char *file, int mode)
8{
9 __dl_seterr("Dynamic loading not supported");
10 return 0;
11}
12
13weak_alias(stub_dlopen, dlopen);
Note: See TracBrowser for help on using the repository browser.