Skip to content
Permalink
master
Go to file
 
 
Cannot retrieve contributors at this time
10 lines (8 sloc) 205 Bytes
#include "ruby/ruby.h"
NORETURN(void *dln_load(const char *));
void*
dln_load(const char *file)
{
rb_loaderror("this executable file can't load extension libraries");
UNREACHABLE_RETURN(NULL);
}
You can’t perform that action at this time.