Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#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);
}
NORETURN(void *dln_symbol(void*,const char*));
dln_symbol(void *handle, const char *symbol)