mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
namespace on read
This commit is contained in:
parent
49742414f6
commit
382645d440
86 changed files with 5850 additions and 702 deletions
9
dmydln.c
9
dmydln.c
|
@ -12,6 +12,15 @@ dln_load(const char *file)
|
|||
UNREACHABLE_RETURN(NULL);
|
||||
}
|
||||
|
||||
NORETURN(void *dln_load_feature(const char*,const char*));
|
||||
void*
|
||||
dln_load_feature(const char *file, const char *fname)
|
||||
{
|
||||
rb_loaderror("this executable file can't load extension libraries");
|
||||
|
||||
UNREACHABLE_RETURN(NULL);
|
||||
}
|
||||
|
||||
NORETURN(void *dln_symbol(void*,const char*));
|
||||
void*
|
||||
dln_symbol(void *handle, const char *symbol)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue